interface CfnApplicationAssignmentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSO.CfnApplicationAssignmentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssso#CfnApplicationAssignmentMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.sso.CfnApplicationAssignmentMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_sso.CfnApplicationAssignmentMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sso » 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 { aws_sso as sso } from '@aws-cdk/cfn-property-mixins';
const cfnApplicationAssignmentMixinProps: sso.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