stack_instances_for_provisioned_products
Creates, updates, deletes, gets or lists a stack_instances_for_provisioned_products resource.
Overview
| Name | stack_instances_for_provisioned_products |
| Type | Resource |
| Id | aws.servicecatalog.stack_instances_for_provisioned_products |
Fields
The following fields are returned by SELECT queries:
- list_stack_instances_for_provisioned_product
| Name | Datatype | Description |
|---|---|---|
next_page_token | string | The page token to use to retrieve the next set of results. If there are no additional results, this value is null. (pattern: <code>[\u0009\u000a\u000d\u0020-\uD7FF\uE000-\uFFFD]*</code>) |
stack_instances | array | List of stack instances. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_stack_instances_for_provisioned_product | select | region | Returns summary information about stack instances that are associated with the specified CFN_STACKSET type provisioned product. You can filter for stack instances that are associated with a specific Amazon Web Services account name or Region. |
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_stack_instances_for_provisioned_product
Returns summary information about stack instances that are associated with the specified CFN_STACKSET type provisioned product. You can filter for stack instances that are associated with a specific Amazon Web Services account name or Region.
SELECT
next_page_token,
stack_instances
FROM aws.servicecatalog.stack_instances_for_provisioned_products
WHERE region = '{{ region }}' -- required
;