Skip to main content

service_actions_for_provisioning_artifacts

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

Overview

Nameservice_actions_for_provisioning_artifacts
TypeResource
Idaws.servicecatalog.service_actions_for_provisioning_artifacts

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
definition_typestringThe self-service action definition type. For example, SSM_AUTOMATION. (SSM_AUTOMATION)
descriptionstringThe self-service action description.
idstringThe self-service action identifier. (pattern: <code>^[a-zA-Z0-9_-]*</code>)
namestringThe self-service action name. (pattern: <code>^[a-zA-Z0-9_-.]*</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_service_actions_for_provisioning_artifactselectregionReturns 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;