PolicyStoreReference

class aws_cdk.aws_verifiedpermissions.PolicyStoreReference(*, policy_store_arn, policy_store_id)

Bases: object

A reference to a PolicyStore resource.

Parameters:
  • policy_store_arn (str) – The ARN of the PolicyStore resource.

  • policy_store_id (str) – The PolicyStoreId of the PolicyStore 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_store_reference = verifiedpermissions.PolicyStoreReference(
    policy_store_arn="policyStoreArn",
    policy_store_id="policyStoreId"
)

Attributes

policy_store_arn

The ARN of the PolicyStore resource.

policy_store_id

The PolicyStoreId of the PolicyStore resource.