ApplicationAssignmentReference

class aws_cdk.aws_sso.ApplicationAssignmentReference(*, application_arn, principal_id, principal_type)

Bases: object

A reference to a ApplicationAssignment resource.

Parameters:
  • application_arn (str) – The ApplicationArn of the ApplicationAssignment resource.

  • principal_id (str) – The PrincipalId of the ApplicationAssignment resource.

  • principal_type (str) – The PrincipalType of the ApplicationAssignment 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_sso as sso

application_assignment_reference = sso.ApplicationAssignmentReference(
    application_arn="applicationArn",
    principal_id="principalId",
    principal_type="principalType"
)

Attributes

application_arn

The ApplicationArn of the ApplicationAssignment resource.

principal_id

The PrincipalId of the ApplicationAssignment resource.

principal_type

The PrincipalType of the ApplicationAssignment resource.