Module Values.CreateOutpostInputSource

Creates an Outpost. You can specify either an Availability one or an AZ ID.

Sourcetype nonrec t = {
  1. name : OutpostName.t;
  2. description : OutpostDescription.t option;
  3. siteId : SiteId.t;
    (*

    The ID or the Amazon Resource Name (ARN) of the site.

    *)
  4. availabilityZone : AvailabilityZone.t option;
  5. availabilityZoneId : AvailabilityZoneId.t option;
  6. tags : TagMap.t option;
    (*

    The tags to apply to the Outpost.

    *)
  7. supportedHardwareType : SupportedHardwareType.t option;
    (*

    The type of hardware for this Outpost.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?availabilityZone:??? -> ?availabilityZoneId:??? -> ?tags:??? -> ?supportedHardwareType:??? -> name:OutpostName.t -> siteId:SiteId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of OutpostName.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