Module Values.SwapEnvironmentCNAMEsMessageSource

Swaps the CNAMEs of two environments.

Sourcetype nonrec t = {
  1. sourceEnvironmentId : EnvironmentId.t option;
    (*

    The ID of the source environment. Condition: You must specify at least the SourceEnvironmentID or the SourceEnvironmentName. You may also specify both. If you specify the SourceEnvironmentId, you must specify the DestinationEnvironmentId.

    *)
  2. sourceEnvironmentName : EnvironmentName.t option;
    (*

    The name of the source environment. Condition: You must specify at least the SourceEnvironmentID or the SourceEnvironmentName. You may also specify both. If you specify the SourceEnvironmentName, you must specify the DestinationEnvironmentName.

    *)
  3. destinationEnvironmentId : EnvironmentId.t option;
    (*

    The ID of the destination environment. Condition: You must specify at least the DestinationEnvironmentID or the DestinationEnvironmentName. You may also specify both. You must specify the SourceEnvironmentId with the DestinationEnvironmentId.

    *)
  4. destinationEnvironmentName : EnvironmentName.t option;
    (*

    The name of the destination environment. Condition: You must specify at least the DestinationEnvironmentID or the DestinationEnvironmentName. You may also specify both. You must specify the SourceEnvironmentName with the DestinationEnvironmentName.

    *)
}
Sourceval make : ?sourceEnvironmentId:??? -> ?sourceEnvironmentName:??? -> ?destinationEnvironmentId:??? -> ?destinationEnvironmentName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of EnvironmentId.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