interface PolicyStatementReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_entityresolution.PolicyStatementReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsentityresolution#PolicyStatementReference |
Java | software.amazon.awscdk.services.entityresolution.PolicyStatementReference |
Python | aws_cdk.aws_entityresolution.PolicyStatementReference |
TypeScript | aws-cdk-lib » aws_entityresolution » PolicyStatementReference |
A reference to a PolicyStatement resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_entityresolution as entityresolution } from 'aws-cdk-lib';
const policyStatementReference: entityresolution.PolicyStatementReference = {
policyStatementArn: 'policyStatementArn',
statementId: 'statementId',
};
Properties
| Name | Type | Description |
|---|---|---|
| policy | string | The Arn of the PolicyStatement resource. |
| statement | string | The StatementId of the PolicyStatement resource. |
policyStatementArn
Type:
string
The Arn of the PolicyStatement resource.
statementId
Type:
string
The StatementId of the PolicyStatement resource.

.NET
Go
Java
Python
TypeScript