Proton / Client / list_environment_outputs
list_environment_outputs¶
- Proton.Client.list_environment_outputs(**kwargs)¶
List the infrastructure as code outputs for your environment.
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_environment_outputs( deploymentId='string', environmentName='string', nextToken='string' )
- Parameters:
deploymentId (string) – The ID of the deployment whose outputs you want.
environmentName (string) –
[REQUIRED]
The environment name.
nextToken (string) – A token that indicates the location of the next environment output in the array of environment outputs, after the list of environment outputs that was previously requested.
- 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 environment output in the array of environment outputs, after the current requested list of environment outputs.
outputs (list) –
An array of environment outputs with detail data.
(dict) –
An infrastructure as code defined resource output.
key (string) –
The output key.
valueString (string) –
The output value.
Exceptions