AwsIdentityCenterGroupAssignmentArgs
interface AwsIdentityCenterGroupAssignmentArgs {
groupName: Input<string>;
targetId: Input<string>;
targetType?: Input<'AWS_ACCOUNT'>;
userEmail?: undefined;
}Group assignment inputs for Identity Center permission capabilities.
Example
CODE
{
groupName: 'PlatformAdmins',
targetId: '000000000000',
}Properties
groupName: Input<string>
The group's display name in the Identity Store.
targetId: Input<string>
The AWS account ID to provision.
targetType: Input<'AWS_ACCOUNT'>
The type of resource to provision to. Defaults to AWS_ACCOUNT.
userEmail: undefined
User and group selectors are mutually exclusive.