CfnApplicationAssignmentProps

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

Bases: object

Properties for defining a CfnApplicationAssignment.

Parameters:
  • application_arn (str) – The ARN of the application that has principals assigned.

  • principal_id (str) – The unique identifier of the principal assigned to the application.

  • principal_type (str) – The type of the principal assigned to the application.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-applicationassignment.html

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

cfn_application_assignment_props = sso.CfnApplicationAssignmentProps(
    application_arn="applicationArn",
    principal_id="principalId",
    principal_type="principalType"
)

Attributes

application_arn

The ARN of the application that has principals assigned.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-applicationassignment.html#cfn-sso-applicationassignment-applicationarn

principal_id

The unique identifier of the principal assigned to the application.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-applicationassignment.html#cfn-sso-applicationassignment-principalid

principal_type

The type of the principal assigned to the application.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-applicationassignment.html#cfn-sso-applicationassignment-principaltype