ApplicationAssignmentReference
- class aws_cdk.interfaces.aws_sso.ApplicationAssignmentReference(*, application_arn, principal_id, principal_type)
Bases:
objectA 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.interfaces import aws_sso as interfaces_aws_sso application_assignment_reference = interfaces_aws_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.