Module Values.CreateApplicationResponseSource

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

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

    The unique identifier assigned to the OpenSearch application.

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

    The name of the OpenSearch application.

    *)
  3. arn : ARN.t option;
  4. dataSources : DataSources.t option;
    (*

    The data sources linked to the OpenSearch application.

    *)
  5. iamIdentityCenterOptions : IamIdentityCenterOptions.t option;
    (*

    The IAM Identity Center settings configured for the OpenSearch application.

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

    Configuration settings for the OpenSearch application, including administrative options.

    *)
  7. tagList : TagList.t option;
  8. createdAt : Timestamp.t option;
    (*

    The timestamp indicating when the OpenSearch application was created.

    *)
  9. kmsKeyArn : KmsKeyArn.t option;
    (*

    The Amazon Resource Name (ARN) of the KMS key used to encrypt the application's data at rest.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `BaseException of BaseException.t
  3. | `ConflictException of ConflictException.t
  4. | `DisabledOperationException of DisabledOperationException.t
  5. | `InternalException of InternalException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?id:??? -> ?name:??? -> ?arn:??? -> ?dataSources:??? -> ?iamIdentityCenterOptions:??? -> ?appConfigs:??? -> ?tagList:??? -> ?createdAt:??? -> ?kmsKeyArn:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of unit | `BaseException of BaseException.t | `ConflictException of unit | `DisabledOperationException of unit | `InternalException of unit | `Unknown_operation_error of string * string option | `ValidationException of unit ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of unit | `BaseException of BaseException.t | `ConflictException of unit | `DisabledOperationException of unit | `InternalException of unit | `Unknown_operation_error of string * string option | `ValidationException of unit ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of ARN.t ]) list ] list | `String of Id.t | `Structure of (string * [> `Boolean of Boolean.t | `String of ARN.t ]) list | `Timestamp of Timestamp.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