interface CfnApplicationAssignmentProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSO.CfnApplicationAssignmentProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssso#CfnApplicationAssignmentProps |
Java | software.amazon.awscdk.services.sso.CfnApplicationAssignmentProps |
Python | aws_cdk.aws_sso.CfnApplicationAssignmentProps |
TypeScript | aws-cdk-lib » aws_sso » CfnApplicationAssignmentProps |
Properties for defining a CfnApplicationAssignment.
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 cfnApplicationAssignmentProps: sso.CfnApplicationAssignmentProps = {
applicationArn: 'applicationArn',
principalId: 'principalId',
principalType: 'principalType',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ARN of the application that has principals assigned. |
| principal | string | The unique identifier of the principal assigned to the application. |
| principal | string | The type of the principal assigned to the application. |
applicationArn
Type:
string
The ARN of the application that has principals assigned.
principalId
Type:
string
The unique identifier of the principal assigned to the application.
principalType
Type:
string
The type of the principal assigned to the application.

.NET
Go
Java
Python
TypeScript