'{username}', 'password' => '{password}', )); // 2. Obtain an Orchestration service object from the client. $orchestrationService = $client->orchestrationService(null, '{region}'); // 3. Get stack. $stack = $orchestrationService->getStack('{stackName}'); // 4. Get resource in stack. $resource = $stack->getResource('{stackResourceName}'); // 5. Get stack resource metadata. /** @var $resourceMetadata \stdClass **/ $resourceMetadata = $resource->getMetadata();