ApprovalPolicyReference

class aws_cdk.interfaces.aws_quicksight.ApprovalPolicyReference(*, policy_arn, policy_id)

Bases: object

A reference to a ApprovalPolicy resource.

Parameters:
  • policy_arn (str) – The ARN of the ApprovalPolicy resource.

  • policy_id (str) – The PolicyId of the ApprovalPolicy 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.interfaces import aws_quicksight as interfaces_quicksight

approval_policy_reference = interfaces_quicksight.ApprovalPolicyReference(
    policy_arn="policyArn",
    policy_id="policyId"
)

Attributes

policy_arn

The ARN of the ApprovalPolicy resource.

policy_id

The PolicyId of the ApprovalPolicy resource.