drt_access
Creates, updates, deletes, gets or lists a drt_access resource.
Overview
| Name | drt_access |
| Type | Resource |
| Id | aws.shield.drt_access |
Fields
The following fields are returned by SELECT queries:
- describe_drt_access
| Name | Datatype | Description |
|---|---|---|
log_bucket_list | array | The list of Amazon S3 buckets accessed by the SRT. |
role_arn | string | The Amazon Resource Name (ARN) of the role the SRT used to access your Amazon Web Services account. (pattern: <code>^arn:aws:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@-_/]+</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_drt_access | select | region | Returns the current role and list of Amazon S3 log buckets used by the Shield Response Team (SRT) to access your Amazon Web Services account while assisting with attack mitigation. |
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_drt_access
Returns the current role and list of Amazon S3 log buckets used by the Shield Response Team (SRT) to access your Amazon Web Services account while assisting with attack mitigation.
SELECT
log_bucket_list,
role_arn
FROM aws.shield.drt_access
WHERE region = '{{ region }}' -- required
;