Module Values.CreateDomainOutputSource

Creates a new Domain for managing HealthAgent resources.

Sourcetype nonrec t = {
  1. domainId : DomainId.t option;
  2. arn : DomainArn.t option;
  3. name : DomainName.t option;
  4. kmsKeyArn : KmsKeyArn.t option;
  5. encryptionContext : EncryptionContext.t option;
  6. status : DomainStatus.t option;
  7. webAppUrl : WebAppUrl.t option;
  8. webAppConfiguration : WebAppConfiguration.t option;
  9. createdAt : Timestamp.t option;
}
Sourcetype nonrec error = [
  1. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?domainId:??? -> ?arn:??? -> ?name:??? -> ?kmsKeyArn:??? -> ?encryptionContext:??? -> ?status:??? -> ?webAppUrl:??? -> ?webAppConfiguration:??? -> ?createdAt:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DomainId.t | `Structure of (string * [> `Enum of string | `String of KmsKeyArn.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