Skip to main content

component_outputs

Creates, updates, deletes, gets or lists a component_outputs resource.

Overview

Namecomponent_outputs
TypeResource
Idaws.proton.component_outputs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
keystringThe output key.
value_stringstringThe output value.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_component_outputsselectregionGet a list of component Infrastructure as Code (IaC) outputs. For more information about components, see Proton components in the Proton User Guide.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Get a list of component Infrastructure as Code (IaC) outputs. For more information about components, see Proton components in the Proton User Guide.

SELECT
key,
value_string
FROM aws.proton.component_outputs
WHERE region = '{{ region }}' -- required
;