Proton / Client / list_service_pipeline_provisioned_resources
list_service_pipeline_provisioned_resources¶
- Proton.Client.list_service_pipeline_provisioned_resources(**kwargs)¶
List provisioned resources for a service and pipeline with details.
Danger
This operation is deprecated and may not function as expected. This operation should not be used going forward and is only kept for the purpose of backwards compatiblity.
See also: AWS API Documentation
Request Syntax
response = client.list_service_pipeline_provisioned_resources( nextToken='string', serviceName='string' )
- Parameters:
nextToken (string) – A token that indicates the location of the next provisioned resource in the array of provisioned resources, after the list of provisioned resources that was previously requested.
serviceName (string) –
[REQUIRED]
The name of the service whose pipeline’s provisioned resources you want.
- Return type:
dict
- Returns:
Response Syntax
{ 'nextToken': 'string', 'provisionedResources': [ { 'identifier': 'string', 'name': 'string', 'provisioningEngine': 'CLOUDFORMATION'|'TERRAFORM' }, ] }
Response Structure
(dict) –
nextToken (string) –
A token that indicates the location of the next provisioned resource in the array of provisioned resources, after the current requested list of provisioned resources.
provisionedResources (list) –
An array of provisioned resources for a service and pipeline.
(dict) –
Detail data for a provisioned resource.
identifier (string) –
The provisioned resource identifier.
name (string) –
The provisioned resource name.
provisioningEngine (string) –
The resource provisioning engine. At this time,
CLOUDFORMATIONcan be used for Amazon Web Services-managed provisioning, andTERRAFORMcan be used for self-managed provisioning.For more information, see Self-managed provisioning in the Proton User Guide.
Exceptions
Proton.Client.exceptions.ValidationExceptionProton.Client.exceptions.AccessDeniedExceptionProton.Client.exceptions.ThrottlingExceptionProton.Client.exceptions.ResourceNotFoundExceptionProton.Client.exceptions.InternalServerException