Module Values.UpdateSecurityConfigRequestSource

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

Sourcetype nonrec t = {
  1. id : SecurityConfigId.t;
    (*

    The security configuration identifier. For SAML the ID will be saml/<accountId>/<idpProviderName>. For example, saml/123456789123/OKTADev.

    *)
  2. configVersion : PolicyVersion.t;
    (*

    The version of the security configuration to be updated. You can find the most recent version of a security configuration using the GetSecurityPolicy command.

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

    A description of the security configuration.

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

    SAML options in in the form of a key-value map.

    *)
  5. iamIdentityCenterOptionsUpdates : UpdateIamIdentityCenterConfigOptions.t option;
    (*

    Describes IAM Identity Center options in the form of a key-value map.

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

    Describes IAM federation options in the form of a key-value map for updating an existing security configuration. Use this field to modify IAM federation settings for the security configuration.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?samlOptions:??? -> ?iamIdentityCenterOptionsUpdates:??? -> ?iamFederationOptions:??? -> ?clientToken:??? -> id:SecurityConfigId.t -> configVersion:PolicyVersion.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SecurityConfigId.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