Skip to main content

service_pipeline_outputs

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

Overview

Nameservice_pipeline_outputs
TypeResource
Idaws.proton.service_pipeline_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_service_pipeline_outputsselectregionGet a list of service pipeline Infrastructure as Code (IaC) outputs.

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 service pipeline Infrastructure as Code (IaC) outputs.

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