Module Values.CreateGatewayInputSource

Creates a backup gateway. After you create a gateway, you can associate it with a server using the AssociateGatewayToServer operation.

Sourcetype nonrec t = {
  1. activationKey : ActivationKey.t;
    (*

    The activation key of the created gateway.

    *)
  2. gatewayDisplayName : Name.t;
    (*

    The display name of the created gateway.

    *)
  3. gatewayType : GatewayType.t;
    (*

    The type of created gateway.

    *)
  4. tags : Tags.t option;
    (*

    A list of up to 50 tags to assign to the gateway. Each tag is a key-value pair.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> activationKey:ActivationKey.t -> gatewayDisplayName:Name.t -> gatewayType:GatewayType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of ActivationKey.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