interface CfnPolicyTemplateMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.VerifiedPermissions.Mixins.CfnPolicyTemplateMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsverifiedpermissions/mixins#CfnPolicyTemplateMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.verifiedpermissions.mixins.CfnPolicyTemplateMixinProps |
Python | aws_cdk.mixins_preview.aws_verifiedpermissions.mixins.CfnPolicyTemplateMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_verifiedpermissions » mixins » CfnPolicyTemplateMixinProps |
Properties for CfnPolicyTemplatePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as verifiedpermissions_mixins } from '@aws-cdk/mixins-preview/aws-verifiedpermissions';
const cfnPolicyTemplateMixinProps: verifiedpermissions_mixins.CfnPolicyTemplateMixinProps = {
description: 'description',
policyStoreId: 'policyStoreId',
statement: 'statement',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description to attach to the new or updated policy template. |
| policy | string | The unique identifier of the policy store that contains the template. |
| statement? | string | Specifies the content that you want to use for the new policy template, written in the Cedar policy language. |
description?
Type:
string
(optional)
The description to attach to the new or updated policy template.
policyStoreId?
Type:
string
(optional)
The unique identifier of the policy store that contains the template.
statement?
Type:
string
(optional)
Specifies the content that you want to use for the new policy template, written in the Cedar policy language.

.NET
Go
Java
Python
TypeScript