interface CfnAssignmentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSO.Mixins.CfnAssignmentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssso/mixins#CfnAssignmentMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.sso.mixins.CfnAssignmentMixinProps |
Python | aws_cdk.mixins_preview.aws_sso.mixins.CfnAssignmentMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_sso » mixins » CfnAssignmentMixinProps |
Properties for CfnAssignmentPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-assignment.html
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 cfnAssignmentMixinProps: sso_mixins.CfnAssignmentMixinProps = {
instanceArn: 'instanceArn',
permissionSetArn: 'permissionSetArn',
principalId: 'principalId',
principalType: 'principalType',
targetId: 'targetId',
targetType: 'targetType',
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | The ARN of the IAM Identity Center instance under which the operation will be executed. |
| permission | string | The ARN of the permission set. |
| principal | string | An identifier for an object in IAM Identity Center, such as a user or group. |
| principal | string | The entity type for which the assignment will be created. |
| target | string | TargetID is an AWS account identifier, (For example, 123456789012). |
| target | string | The entity type for which the assignment will be created. |
instanceArn?
Type:
string
(optional)
The ARN of the IAM Identity Center instance under which the operation will be executed.
For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference .
permissionSetArn?
Type:
string
(optional)
The ARN of the permission set.
principalId?
Type:
string
(optional)
An identifier for an object in IAM Identity Center, such as a user or group.
PrincipalIds are GUIDs (For example, f81d4fae-7dec-11d0-a765-00a0c91e6bf6). For more information about PrincipalIds in IAM Identity Center, see the IAM Identity Center Identity Store API Reference .
principalType?
Type:
string
(optional)
The entity type for which the assignment will be created.
targetId?
Type:
string
(optional)
TargetID is an AWS account identifier, (For example, 123456789012).
targetType?
Type:
string
(optional)
The entity type for which the assignment will be created.

.NET
Go
Java
Python
TypeScript