service_action_execution_parameters
Creates, updates, deletes, gets or lists a service_action_execution_parameters resource.
Overview
| Name | service_action_execution_parameters |
| Type | Resource |
| Id | aws.servicecatalog.service_action_execution_parameters |
Fields
The following fields are returned by SELECT queries:
- describe_service_action_execution_parameters
| Name | Datatype | Description |
|---|---|---|
service_action_parameters | array | The parameters of the self-service action. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_service_action_execution_parameters | select | region | Finds the default parameters for a specific self-service action on a specific provisioned product and returns a map of the results to the user. |
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
- describe_service_action_execution_parameters
Finds the default parameters for a specific self-service action on a specific provisioned product and returns a map of the results to the user.
SELECT
service_action_parameters
FROM aws.servicecatalog.service_action_execution_parameters
WHERE region = '{{ region }}' -- required
;