Skip to main content

service_instance_provisioned_resources

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

Overview

Nameservice_instance_provisioned_resources
TypeResource
Idaws.proton.service_instance_provisioned_resources

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe provisioned resource name.
identifierstringThe provisioned resource identifier.
provisioning_enginestringThe resource provisioning engine. At this time, CLOUDFORMATION can be used for Amazon Web Services-managed provisioning, and TERRAFORM can be used for self-managed provisioning. For more information, see Self-managed provisioning in the Proton User Guide. (CLOUDFORMATION, TERRAFORM)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_service_instance_provisioned_resourcesselectregionList provisioned resources for a service instance with details.

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

List provisioned resources for a service instance with details.

SELECT
name,
identifier,
provisioning_engine
FROM aws.proton.service_instance_provisioned_resources
WHERE region = '{{ region }}' -- required
;