TrustAnchorReference

class aws_cdk.aws_rolesanywhere.TrustAnchorReference(*, trust_anchor_arn, trust_anchor_id)

Bases: object

A reference to a TrustAnchor resource.

Parameters:
  • trust_anchor_arn (str) – The ARN of the TrustAnchor resource.

  • trust_anchor_id (str) – The TrustAnchorId of the TrustAnchor 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_rolesanywhere as rolesanywhere

trust_anchor_reference = rolesanywhere.TrustAnchorReference(
    trust_anchor_arn="trustAnchorArn",
    trust_anchor_id="trustAnchorId"
)

Attributes

trust_anchor_arn

The ARN of the TrustAnchor resource.

trust_anchor_id

The TrustAnchorId of the TrustAnchor resource.