Interface CfnAssignmentMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAssignmentMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:05.770Z")
@Stability(Stable)
public interface CfnAssignmentMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnAssignmentPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.sso.*;
CfnAssignmentMixinProps cfnAssignmentMixinProps = CfnAssignmentMixinProps.builder()
.instanceArn("instanceArn")
.permissionSetArn("permissionSetArn")
.principalId("principalId")
.principalType("principalType")
.targetId("targetId")
.targetType("targetType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAssignmentMixinPropsstatic final classAn implementation forCfnAssignmentMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe ARN of the instance under which the operation will be executed.default StringThe ARN of the permission set.default StringAn identifier for an object in IAM Identity Center, such as a user or group.default StringThe entity type for which the assignment will be created.default StringTargetID is an AWS account identifier, (For example, 123456789012).default StringThe entity type for which the assignment will be created.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInstanceArn
The ARN of the 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 .
- See Also:
-
getPermissionSetArn
The ARN of the permission set.- See Also:
-
getPrincipalId
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 .
- See Also:
-
getPrincipalType
The entity type for which the assignment will be created.- See Also:
-
getTargetId
TargetID is an AWS account identifier, (For example, 123456789012).- See Also:
-
getTargetType
The entity type for which the assignment will be created.- See Also:
-
builder
- Returns:
- a
CfnAssignmentMixinProps.BuilderofCfnAssignmentMixinProps
-