CfnApplicationAssignmentMixinProps
- class aws_cdk.mixins_preview.aws_sso.mixins.CfnApplicationAssignmentMixinProps(*, application_arn=None, principal_id=None, principal_type=None)
Bases:
objectProperties for CfnApplicationAssignmentPropsMixin.
- Parameters:
application_arn (
Optional[str]) – The ARN of the application that has principals assigned.principal_id (
Optional[str]) – The unique identifier of the principal assigned to the application.principal_type (
Optional[str]) – The type of the principal assigned to the application.
- See:
- 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.mixins_preview.aws_sso import mixins as sso_mixins cfn_application_assignment_mixin_props = sso_mixins.CfnApplicationAssignmentMixinProps( application_arn="applicationArn", principal_id="principalId", principal_type="principalType" )
Attributes
- application_arn
The ARN of the application that has principals assigned.
- principal_id
The unique identifier of the principal assigned to the application.
- principal_type
The type of the principal assigned to the application.