Module Values.UpdateDomainRequestSource

Updates the specified domain. This API has clobber behavior, and clears and replaces all attributes. If an optional field, such as 'Description' is not provided, it is removed from the domain.

Sourcetype nonrec t = {
  1. description : Description.t option;
    (*

    A brief description about this domain.

    *)
  2. domainId : DomainId.t;
    (*

    The identifier of the domain to be updated.

    *)
  3. name : DomainName.t;
    (*

    The name of the domain.

    *)
  4. serverSideEncryptionConfiguration : ServerSideEncryptionConfiguration.t;
    (*

    The configuration, containing the KMS key identifier, to be used by Voice ID for the server-side encryption of your data. Changing the domain's associated KMS key immediately triggers an asynchronous process to remove dependency on the old KMS key, such that the domain's data can only be accessed using the new KMS key. The domain's ServerSideEncryptionUpdateDetails contains the details for this process.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> domainId:DomainId.t -> name:DomainName.t -> serverSideEncryptionConfiguration:ServerSideEncryptionConfiguration.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Description.t | `Structure of (string * [> `String of KmsKeyId.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