Module Values.SourceCloudPropertiesSource

Properties of the cloud environment where this Source Server originated from.

Sourcetype nonrec t = {
  1. originAccountID : AccountID.t option;
    (*

    AWS Account ID for an EC2-originated Source Server.

    *)
  2. originRegion : AwsRegion.t option;
    (*

    AWS Region for an EC2-originated Source Server.

    *)
  3. originAvailabilityZone : AwsAvailabilityZone.t option;
    (*

    AWS Availability Zone for an EC2-originated Source Server.

    *)
  4. sourceOutpostArn : OutpostARN.t option;
    (*

    The ARN of the source Outpost

    *)
}
Sourceval make : ?originAccountID:??? -> ?originRegion:??? -> ?originAvailabilityZone:??? -> ?sourceOutpostArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AccountID.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