Module Values.SecurityConfigDetailSource

Details about a security configuration for OpenSearch Serverless.

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

    The unique identifier of the security configuration.

    *)
  2. type_ : SecurityConfigType.t option;
    (*

    The type of security configuration.

    *)
  3. configVersion : PolicyVersion.t option;
    (*

    The version of the security configuration.

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

    The description of the security configuration.

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

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

    *)
  6. iamIdentityCenterOptions : IamIdentityCenterConfigOptions.t option;
    (*

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

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

    Describes IAM federation options in the form of a key-value map. Contains configuration details about how OpenSearch Serverless integrates with external identity providers through federation.

    *)
  8. createdDate : Long.t option;
    (*

    The date the configuration was created.

    *)
  9. lastModifiedDate : Long.t option;
    (*

    The timestamp of when the configuration was last modified.

    *)
}
Sourceval make : ?id:??? -> ?type_:??? -> ?configVersion:??? -> ?description:??? -> ?samlOptions:??? -> ?iamIdentityCenterOptions:??? -> ?iamFederationOptions:??? -> ?createdDate:??? -> ?lastModifiedDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Long.t | `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