PolicyTemplateReference
- class aws_cdk.aws_verifiedpermissions.PolicyTemplateReference(*, policy_store_id, policy_template_id)
Bases:
object
A reference to a PolicyTemplate resource.
- Parameters:
policy_store_id (
str
) – The PolicyStoreId of the PolicyTemplate resource.policy_template_id (
str
) – The PolicyTemplateId of the PolicyTemplate resource.
- 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 import aws_verifiedpermissions as verifiedpermissions policy_template_reference = verifiedpermissions.PolicyTemplateReference( policy_store_id="policyStoreId", policy_template_id="policyTemplateId" )
Attributes
- policy_store_id
The PolicyStoreId of the PolicyTemplate resource.
- policy_template_id
The PolicyTemplateId of the PolicyTemplate resource.