AccessPolicyReference

class aws_cdk.aws_iotsitewise.AccessPolicyReference(*, access_policy_arn, access_policy_id)

Bases: object

A reference to a AccessPolicy resource.

Parameters:
  • access_policy_arn (str) – The ARN of the AccessPolicy resource.

  • access_policy_id (str) – The AccessPolicyId of the AccessPolicy 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_iotsitewise as iotsitewise

access_policy_reference = iotsitewise.AccessPolicyReference(
    access_policy_arn="accessPolicyArn",
    access_policy_id="accessPolicyId"
)

Attributes

access_policy_arn

The ARN of the AccessPolicy resource.

access_policy_id

The AccessPolicyId of the AccessPolicy resource.