service_actions_for_provisioning_artifacts
Creates, updates, deletes, gets or lists a service_actions_for_provisioning_artifacts resource.
Overview
| Name | service_actions_for_provisioning_artifacts |
| Type | Resource |
| Id | aws.servicecatalog.service_actions_for_provisioning_artifacts |
Fields
The following fields are returned by SELECT queries:
- list_service_actions_for_provisioning_artifact
| Name | Datatype | Description |
|---|---|---|
definition_type | string | The self-service action definition type. For example, SSM_AUTOMATION. (SSM_AUTOMATION) |
description | string | The self-service action description. |
id | string | The self-service action identifier. (pattern: <code>^[a-zA-Z0-9_-]*</code>) |
name | string | The self-service action name. (pattern: <code>^[a-zA-Z0-9_-.]*</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_service_actions_for_provisioning_artifact | select | region | Returns a paginated list of self-service actions associated with the specified Product ID and Provisioning Artifact ID. |
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_service_actions_for_provisioning_artifact
Returns a paginated list of self-service actions associated with the specified Product ID and Provisioning Artifact ID.
SELECT
definition_type,
description,
id,
name
FROM aws.servicecatalog.service_actions_for_provisioning_artifacts
WHERE region = '{{ region }}' -- required
;