PolicyStatementReference
- class aws_cdk.interfaces.aws_entityresolution.PolicyStatementReference(*, policy_statement_arn, statement_id)
Bases:
objectA reference to a PolicyStatement resource.
- Parameters:
policy_statement_arn (
str) – The Arn of the PolicyStatement resource.statement_id (
str) – The StatementId of the PolicyStatement 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.interfaces import aws_entityresolution as interfaces_aws_entityresolution policy_statement_reference = interfaces_aws_entityresolution.PolicyStatementReference( policy_statement_arn="policyStatementArn", statement_id="statementId" )
Attributes
- policy_statement_arn
The Arn of the PolicyStatement resource.
- statement_id
The StatementId of the PolicyStatement resource.