component_provisioned_resources
Creates, updates, deletes, gets or lists a component_provisioned_resources resource.
Overview
| Name | component_provisioned_resources |
| Type | Resource |
| Id | aws.proton.component_provisioned_resources |
Fields
The following fields are returned by SELECT queries:
- list_component_provisioned_resources
| Name | Datatype | Description |
|---|---|---|
name | string | The provisioned resource name. |
identifier | string | The provisioned resource identifier. |
provisioning_engine | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_component_provisioned_resources | select | region | List provisioned resources for a component with details. 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_component_provisioned_resources
List provisioned resources for a component with details. For more information about components, see Proton components in the Proton User Guide.
SELECT
name,
identifier,
provisioning_engine
FROM aws.proton.component_provisioned_resources
WHERE region = '{{ region }}' -- required
;