Module Values.CreateDomainInputSource

Creates a new Domain for managing HealthAgent resources.

Sourcetype nonrec t = {
  1. name : DomainName.t;
    (*

    The name for the new Domain.

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

    The ARN of the KMS key to use for encrypting data in this Domain.

    *)
  3. webAppSetupConfiguration : CreateWebAppConfiguration.t option;
    (*

    Configuration for the Domain web application. Optional, but if provided all fields are required.

    *)
  4. tags : TagMap.t option;
    (*

    Tags to associate with the Domain.

    *)
}
Sourceval context_ : string
Sourceval make : ?kmsKeyArn:??? -> ?webAppSetupConfiguration:??? -> ?tags:??? -> name:DomainName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of DomainName.t | `Structure of (string * [> `String of CreateWebAppConfigurationEhrRoleString.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