interface CfnApplicationAssignmentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSO.Mixins.CfnApplicationAssignmentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssso/mixins#CfnApplicationAssignmentMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.sso.mixins.CfnApplicationAssignmentMixinProps |
Python | aws_cdk.mixins_preview.aws_sso.mixins.CfnApplicationAssignmentMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_sso » mixins » CfnApplicationAssignmentMixinProps |
Properties for CfnApplicationAssignmentPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sso_mixins } from '@aws-cdk/mixins-preview/aws-sso';
const cfnApplicationAssignmentMixinProps: sso_mixins.CfnApplicationAssignmentMixinProps = {
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
(optional)
The ARN of the application that has principals assigned.
principalId?
Type:
string
(optional)
The unique identifier of the principal assigned to the application.
principalType?
Type:
string
(optional)
The type of the principal assigned to the application.

.NET
Go
Java
Python
TypeScript