Interface CfnSecurityConfigPropsMixin.IamFederationConfigOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSecurityConfigPropsMixin.IamFederationConfigOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnSecurityConfigPropsMixin
@Stability(Stable)
public static interface CfnSecurityConfigPropsMixin.IamFederationConfigOptionsProperty
extends software.amazon.jsii.JsiiSerializable
Describes IAM federation options for an OpenSearch Serverless security configuration in the form of a key-value map.
These options define how OpenSearch Serverless integrates with external identity providers using federation.
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.opensearchserverless.*;
IamFederationConfigOptionsProperty iamFederationConfigOptionsProperty = IamFederationConfigOptionsProperty.builder()
.groupAttribute("groupAttribute")
.userAttribute("userAttribute")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnSecurityConfigPropsMixin.IamFederationConfigOptionsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGroupAttribute
The group attribute for this IAM federation integration.This attribute is used to map identity provider groups to OpenSearch Serverless permissions.
- See Also:
-
getUserAttribute
The user attribute for this IAM federation integration.This attribute is used to identify users in the federated authentication process.
- See Also:
-
builder
@Stability(Stable) static CfnSecurityConfigPropsMixin.IamFederationConfigOptionsProperty.Builder builder()
-