Module Values.CreateSecurityConfigRequestSource

Specifies a security configuration for OpenSearch Serverless. For more information, see SAML authentication for Amazon OpenSearch Serverless.

Sourcetype nonrec t = {
  1. type_ : SecurityConfigType.t;
    (*

    The type of security configuration.

    *)
  2. name : ConfigName.t;
    (*

    The name of the security configuration.

    *)
  3. description : ConfigDescription.t option;
    (*

    A description of the security configuration.

    *)
  4. samlOptions : SamlConfigOptions.t option;
    (*

    Describes SAML options in the form of a key-value map. This field is required if you specify SAML for the type parameter.

    *)
  5. iamIdentityCenterOptions : CreateIamIdentityCenterConfigOptions.t option;
    (*

    Describes IAM Identity Center options in the form of a key-value map. This field is required if you specify iamidentitycenter for the type parameter.

    *)
  6. iamFederationOptions : IamFederationConfigOptions.t option;
    (*

    Describes IAM federation options in the form of a key-value map. This field is required if you specify iamFederation for the type parameter.

    *)
  7. clientToken : ClientToken.t option;
    (*

    Unique, case-sensitive identifier to ensure idempotency of the request.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?samlOptions:??? -> ?iamIdentityCenterOptions:??? -> ?iamFederationOptions:??? -> ?clientToken:??? -> type_:SecurityConfigType.t -> name:ConfigName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ConfigName.t | `Structure of (string * [> `Enum of string | `Integer of SamlConfigOptionsSessionTimeoutInteger.t | `String of SamlMetadata.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t