PolicyReference
- class aws_cdk.aws_verifiedpermissions.PolicyReference(*, policy_id, policy_store_id)
Bases:
object
A reference to a Policy resource.
- Parameters:
policy_id (
str
) – The PolicyId of the Policy resource.policy_store_id (
str
) – The PolicyStoreId of the Policy 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_reference = verifiedpermissions.PolicyReference( policy_id="policyId", policy_store_id="policyStoreId" )
Attributes
- policy_id
The PolicyId of the Policy resource.
- policy_store_id
The PolicyStoreId of the Policy resource.