AllowListReference
- class aws_cdk.aws_macie.AllowListReference(*, allow_list_arn, allow_list_id)
Bases:
object
A reference to a AllowList resource.
- Parameters:
allow_list_arn (
str
) – The ARN of the AllowList resource.allow_list_id (
str
) – The Id of the AllowList resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_macie as macie allow_list_reference = macie.AllowListReference( allow_list_arn="allowListArn", allow_list_id="allowListId" )
Attributes
- allow_list_arn
The ARN of the AllowList resource.
- allow_list_id
The Id of the AllowList resource.