interface PolicyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.VerifiedPermissions.PolicyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsverifiedpermissions#PolicyReference |
Java | software.amazon.awscdk.interfaces.verifiedpermissions.PolicyReference |
Python | aws_cdk.interfaces.aws_verifiedpermissions.PolicyReference |
TypeScript | aws-cdk-lib » interfaces » aws_verifiedpermissions » PolicyReference |
A reference to a Policy resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_verifiedpermissions as interfaces_aws_verifiedpermissions } from 'aws-cdk-lib/interfaces';
const policyReference: interfaces_aws_verifiedpermissions.PolicyReference = {
policyId: 'policyId',
policyStoreId: 'policyStoreId',
};
Properties
| Name | Type | Description |
|---|---|---|
| policy | string | The PolicyId of the Policy resource. |
| policy | string | The PolicyStoreId of the Policy resource. |
policyId
Type:
string
The PolicyId of the Policy resource.
policyStoreId
Type:
string
The PolicyStoreId of the Policy resource.

.NET
Go
Java
Python
TypeScript