Proton / Client / list_service_instance_outputs
list_service_instance_outputs¶
- Proton.Client.list_service_instance_outputs(**kwargs)¶
Get a list service of instance Infrastructure as Code (IaC) outputs.
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_instance_outputs( deploymentId='string', nextToken='string', serviceInstanceName='string', serviceName='string' )
- Parameters:
deploymentId (string) – The ID of the deployment whose outputs you want.
nextToken (string) – A token that indicates the location of the next output in the array of outputs, after the list of outputs that was previously requested.
serviceInstanceName (string) –
[REQUIRED]
The name of the service instance whose outputs you want.
serviceName (string) –
[REQUIRED]
The name of the service that
serviceInstanceName
is associated to.
- Return type:
dict
- Returns:
Response Syntax
{ 'nextToken': 'string', 'outputs': [ { 'key': 'string', 'valueString': 'string' }, ] }
Response Structure
(dict) –
nextToken (string) –
A token that indicates the location of the next output in the array of outputs, after the current requested list of outputs.
outputs (list) –
An array of service instance Infrastructure as Code (IaC) outputs.
(dict) –
An infrastructure as code defined resource output.
key (string) –
The output key.
valueString (string) –
The output value.
Exceptions