Interface CfnAssignmentProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAssignmentProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:25:07.843Z")
@Stability(Stable)
public interface CfnAssignmentProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnAssignment
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.sso.*; CfnAssignmentProps cfnAssignmentProps = CfnAssignmentProps.builder() .instanceArn("instanceArn") .permissionSetArn("permissionSetArn") .principalId("principalId") .principalType("principalType") .targetId("targetId") .targetType("targetType") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAssignmentProps
static final class
An implementation forCfnAssignmentProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnAssignmentProps.Builder
builder()
The ARN of the IAM Identity Center instance under which the operation will be executed.The ARN of the permission set.An identifier for an object in IAM Identity Center, such as a user or group.The entity type for which the assignment will be created.TargetID is an AWS account identifier, (For example, 123456789012).The 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 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 .
- 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
CfnAssignmentProps.Builder
ofCfnAssignmentProps
-