interface ApplicationAssignmentReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSO.ApplicationAssignmentReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssso#ApplicationAssignmentReference |
Java | software.amazon.awscdk.services.sso.ApplicationAssignmentReference |
Python | aws_cdk.aws_sso.ApplicationAssignmentReference |
TypeScript | aws-cdk-lib » aws_sso » ApplicationAssignmentReference |
A reference to a ApplicationAssignment resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sso as sso } from 'aws-cdk-lib';
const applicationAssignmentReference: sso.ApplicationAssignmentReference = {
applicationArn: 'applicationArn',
principalId: 'principalId',
principalType: 'principalType',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ApplicationArn of the ApplicationAssignment resource. |
| principal | string | The PrincipalId of the ApplicationAssignment resource. |
| principal | string | The PrincipalType of the ApplicationAssignment resource. |
applicationArn
Type:
string
The ApplicationArn of the ApplicationAssignment resource.
principalId
Type:
string
The PrincipalId of the ApplicationAssignment resource.
principalType
Type:
string
The PrincipalType of the ApplicationAssignment resource.

.NET
Go
Java
Python
TypeScript