Interface CfnSecurityConfig.IamFederationConfigOptionsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSecurityConfig.IamFederationConfigOptionsProperty.Jsii$Proxy
Enclosing class:
CfnSecurityConfig

@Stability(Stable) public static interface CfnSecurityConfig.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.services.opensearchserverless.*;
 IamFederationConfigOptionsProperty iamFederationConfigOptionsProperty = IamFederationConfigOptionsProperty.builder()
         .groupAttribute("groupAttribute")
         .userAttribute("userAttribute")
         .build();
 

See Also: