Module Values.IamIdentityCenterOptionsSource

Configuration settings for IAM Identity Center in an OpenSearch application.

Sourcetype nonrec t = {
  1. enabled : Boolean.t option;
    (*

    Indicates whether IAM Identity Center is enabled for the OpenSearch application.

    *)
  2. iamIdentityCenterInstanceArn : ARN.t option;
  3. iamRoleForIdentityCenterApplicationArn : RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role assigned to the IAM Identity Center application for the OpenSearch application.

    *)
  4. iamIdentityCenterApplicationArn : ARN.t option;
}
Sourceval make : ?enabled:??? -> ?iamIdentityCenterInstanceArn:??? -> ?iamRoleForIdentityCenterApplicationArn:??? -> ?iamIdentityCenterApplicationArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of ARN.t ]) 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