interface CfnPolicyTemplateMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.VerifiedPermissions.CfnPolicyTemplateMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsverifiedpermissions#CfnPolicyTemplateMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.verifiedpermissions.CfnPolicyTemplateMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_verifiedpermissions.CfnPolicyTemplateMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_verifiedpermissions » 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 { aws_verifiedpermissions as verifiedpermissions } from '@aws-cdk/cfn-property-mixins';
const cfnPolicyTemplateMixinProps: verifiedpermissions.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