CfnPolicyTemplateMixinProps
- class aws_cdk.mixins_preview.aws_verifiedpermissions.mixins.CfnPolicyTemplateMixinProps(*, description=None, policy_store_id=None, statement=None)
Bases:
objectProperties for CfnPolicyTemplatePropsMixin.
- Parameters:
description (
Optional[str]) – The description to attach to the new or updated policy template.policy_store_id (
Optional[str]) – The unique identifier of the policy store that contains the template.statement (
Optional[str]) – Specifies the content that you want to use for the new policy template, written in the Cedar policy language.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_verifiedpermissions import mixins as verifiedpermissions_mixins cfn_policy_template_mixin_props = verifiedpermissions_mixins.CfnPolicyTemplateMixinProps( description="description", policy_store_id="policyStoreId", statement="statement" )
Attributes
- description
The description to attach to the new or updated policy template.
- policy_store_id
The unique identifier of the policy store that contains the template.
- statement
Specifies the content that you want to use for the new policy template, written in the Cedar policy language.