Module Values.IamIdentityCenterConfigOptionsSource

Describes IAM Identity Center options for an OpenSearch Serverless security configuration in the form of a key-value map.

Sourcetype nonrec t = {
  1. instanceArn : IamIdentityCenterInstanceArn.t option;
    (*

    The ARN of the IAM Identity Center instance used to integrate with OpenSearch Serverless.

    *)
  2. applicationArn : IamIdentityCenterApplicationArn.t option;
    (*

    The ARN of the IAM Identity Center application used to integrate with OpenSearch Serverless.

    *)
  3. applicationName : String_.t option;
    (*

    The name of the IAM Identity Center application used to integrate with OpenSearch Serverless.

    *)
  4. applicationDescription : String_.t option;
    (*

    The description of the IAM Identity Center application used to integrate with OpenSearch Serverless.

    *)
  5. userAttribute : IamIdentityCenterUserAttribute.t option;
    (*

    The user attribute for this IAM Identity Center integration. Defaults to UserId

    *)
  6. groupAttribute : IamIdentityCenterGroupAttribute.t option;
    (*

    The group attribute for this IAM Identity Center integration. Defaults to GroupId.

    *)
}
Sourceval make : ?instanceArn:??? -> ?applicationArn:??? -> ?applicationName:??? -> ?applicationDescription:??? -> ?userAttribute:??? -> ?groupAttribute:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of IamIdentityCenterInstanceArn.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