Proton / Client / list_component_outputs

list_component_outputs#

Proton.Client.list_component_outputs(**kwargs)#

Get a list of component Infrastructure as Code (IaC) outputs.

For more information about components, see Proton components in the Proton User Guide.

See also: AWS API Documentation

Request Syntax

response = client.list_component_outputs(
    componentName='string',
    deploymentId='string',
    nextToken='string'
)
Parameters:
  • componentName (string) –

    [REQUIRED]

    The name of the component whose outputs you want.

  • 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.

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 list of outputs that was previously requested.

    • outputs (list) –

      An array of component Infrastructure as Code (IaC) outputs.

      • (dict) –

        An infrastructure as code defined resource output.

        • key (string) –

          The output key.

        • valueString (string) –

          The output value.

Exceptions

  • Proton.Client.exceptions.ValidationException

  • Proton.Client.exceptions.AccessDeniedException

  • Proton.Client.exceptions.ThrottlingException

  • Proton.Client.exceptions.ResourceNotFoundException

  • Proton.Client.exceptions.InternalServerException