Module Values.CreateApplicationRequestSource

Creates an OpenSearch UI application. For more information, see Using the OpenSearch user interface in Amazon OpenSearch Service.

Sourcetype nonrec t = {
  1. clientToken : ClientToken.t option;
    (*

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

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

    The unique name of the OpenSearch application. Names must be unique within an Amazon Web Services Region for each account.

    *)
  3. dataSources : DataSources.t option;
    (*

    The data sources to link to the OpenSearch application.

    *)
  4. iamIdentityCenterOptions : IamIdentityCenterOptionsInput.t option;
    (*

    Configuration settings for integrating Amazon Web Services IAM Identity Center with the OpenSearch application.

    *)
  5. appConfigs : AppConfigs.t option;
    (*

    Configuration settings for the OpenSearch application, including administrative options.

    *)
  6. tagList : TagList.t option;
  7. kmsKeyArn : KmsKeyArn.t option;
    (*

    The Amazon Resource Name (ARN) of the KMS key used to encrypt the application's data at rest. If provided, the application uses your customer-managed key for encryption. If omitted, the application uses an AWS-managed key. The KMS key must be in the same region as the application.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?dataSources:??? -> ?iamIdentityCenterOptions:??? -> ?appConfigs:??? -> ?tagList:??? -> ?kmsKeyArn:??? -> name:ApplicationName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of ARN.t ]) list ] list | `String of ClientToken.t | `Structure of (string * [> `Boolean of Boolean.t | `String of ARN.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