service_role_from_accounts
Creates, updates, deletes, gets or lists a service_role_from_accounts resource.
Overview
| Name | service_role_from_accounts |
| Type | Resource |
| Id | aws.greengrass.service_role_from_accounts |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
disassociate_service_role_from_account | update | region | Disassociates the service role from your account. Without a service role, deployments will not work. |
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) |
UPDATE examples
- disassociate_service_role_from_account
Disassociates the service role from your account. Without a service role, deployments will not work.
UPDATE aws.greengrass.service_role_from_accounts
SET
-- No updatable properties
WHERE
region = '{{ region }}' --required
RETURNING
disassociated_at;