interface PolicyStatementReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.EntityResolution.PolicyStatementReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsentityresolution#PolicyStatementReference |
Java | software.amazon.awscdk.interfaces.entityresolution.PolicyStatementReference |
Python | aws_cdk.interfaces.aws_entityresolution.PolicyStatementReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_entityresolution } from 'aws-cdk-lib/interfaces';
const policyStatementReference: interfaces_aws_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