PolicyStatementReference
- class aws_cdk.aws_entityresolution.PolicyStatementReference(*, policy_statement_arn, statement_id)
Bases:
object
A 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 import aws_entityresolution as entityresolution policy_statement_reference = 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.