AssignmentReference
- class aws_cdk.aws_sso.AssignmentReference(*, instance_arn, permission_set_arn, principal_id, principal_type, target_id, target_type)
Bases:
object
A reference to a Assignment resource.
- Parameters:
instance_arn (
str
) – The InstanceArn of the Assignment resource.permission_set_arn (
str
) – The PermissionSetArn of the Assignment resource.principal_id (
str
) – The PrincipalId of the Assignment resource.principal_type (
str
) – The PrincipalType of the Assignment resource.target_id (
str
) – The TargetId of the Assignment resource.target_type (
str
) – The TargetType of the Assignment 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 assignment_reference = sso.AssignmentReference( instance_arn="instanceArn", permission_set_arn="permissionSetArn", principal_id="principalId", principal_type="principalType", target_id="targetId", target_type="targetType" )
Attributes
- instance_arn
The InstanceArn of the Assignment resource.
- permission_set_arn
The PermissionSetArn of the Assignment resource.
- principal_id
The PrincipalId of the Assignment resource.
- principal_type
The PrincipalType of the Assignment resource.
- target_id
The TargetId of the Assignment resource.
- target_type
The TargetType of the Assignment resource.