Skip to main content

drt_access

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

Overview

Namedrt_access
TypeResource
Idaws.shield.drt_access

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
log_bucket_listarrayThe list of Amazon S3 buckets accessed by the SRT.
role_arnstringThe 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:

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

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

SELECT examples

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
;