Interface CfnDomain.IdentityCenterOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomain.IdentityCenterOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnDomain
@Stability(Stable)
public static interface CfnDomain.IdentityCenterOptionsProperty
extends software.amazon.jsii.JsiiSerializable
Container for IAM Identity Center Options settings.
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.opensearchservice.*; IdentityCenterOptionsProperty identityCenterOptionsProperty = IdentityCenterOptionsProperty.builder() .enabledApiAccess(false) .identityCenterApplicationArn("identityCenterApplicationArn") .identityCenterInstanceArn("identityCenterInstanceArn") .identityStoreId("identityStoreId") .rolesKey("rolesKey") .subjectKey("subjectKey") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDomain.IdentityCenterOptionsProperty
static final class
An implementation forCfnDomain.IdentityCenterOptionsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
True to enable IAM Identity Center for API access in Amazon OpenSearch Service.default String
The ARN for IAM Identity Center Application which will integrate with Amazon OpenSearch Service.default String
The ARN for IAM Identity Center Instance.default String
The ID of IAM Identity Store.default String
Specify the attribute that contains the backend role (groupName, groupID) of IAM Identity Center.default String
Specify the attribute that contains the subject (username, userID, email) of IAM Identity Center.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabledApiAccess
True to enable IAM Identity Center for API access in Amazon OpenSearch Service.- See Also:
-
getIdentityCenterApplicationArn
The ARN for IAM Identity Center Application which will integrate with Amazon OpenSearch Service.- See Also:
-
getIdentityCenterInstanceArn
The ARN for IAM Identity Center Instance.- See Also:
-
getIdentityStoreId
The ID of IAM Identity Store.- See Also:
-
getRolesKey
Specify the attribute that contains the backend role (groupName, groupID) of IAM Identity Center.- See Also:
-
getSubjectKey
Specify the attribute that contains the subject (username, userID, email) of IAM Identity Center.- See Also:
-
builder
-