PermissionSetReference
- class aws_cdk.aws_sso.PermissionSetReference(*, instance_arn, permission_set_arn)
- Bases: - object- A reference to a PermissionSet resource. - Parameters:
- instance_arn ( - str) – The InstanceArn of the PermissionSet resource.
- permission_set_arn ( - str) – The PermissionSetArn of the PermissionSet 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 permission_set_reference = sso.PermissionSetReference( instance_arn="instanceArn", permission_set_arn="permissionSetArn" ) - Attributes - instance_arn
- The InstanceArn of the PermissionSet resource. 
 - permission_set_arn
- The PermissionSetArn of the PermissionSet resource.