Module Values_3.CustomerGatewaySource

Describes a customer gateway.

Sourcetype nonrec t = {
  1. certificateArn : Values_0.String_.t option;
    (*

    The Amazon Resource Name (ARN) for the customer gateway certificate.

    *)
  2. deviceName : Values_0.String_.t option;
    (*

    The name of customer gateway device.

    *)
  3. tags : Values_0.TagList.t option;
    (*

    Any tags assigned to the customer gateway.

    *)
  4. bgpAsnExtended : Values_0.String_.t option;
    (*

    The customer gateway device's Border Gateway Protocol (BGP) Autonomous System Number (ASN). Valid values: 2,147,483,648 to 4,294,967,295

    *)
  5. customerGatewayId : Values_0.String_.t option;
    (*

    The ID of the customer gateway.

    *)
  6. state : Values_0.String_.t option;
    (*

    The current state of the customer gateway (pending | available | deleting | deleted).

    *)
  7. type_ : Values_0.String_.t option;
    (*

    The type of VPN connection the customer gateway supports (ipsec.1).

    *)
  8. ipAddress : Values_0.String_.t option;
    (*

    The IP address for the customer gateway device's outside interface. The address must be static. If OutsideIpAddressType in your VPN connection options is set to PrivateIpv4, you can use an RFC6598 or RFC1918 private IPv4 address. If OutsideIpAddressType is set to PublicIpv4, you can use a public IPv4 address. If OutsideIpAddressType is set to Ipv6, you can use a public IPv6 address.

    *)
  9. bgpAsn : Values_0.String_.t option;
    (*

    The customer gateway device's Border Gateway Protocol (BGP) Autonomous System Number (ASN). Valid values: 1 to 2,147,483,647

    *)
}
Sourceval make : ?certificateArn:??? -> ?deviceName:??? -> ?tags:??? -> ?bgpAsnExtended:??? -> ?customerGatewayId:??? -> ?state:??? -> ?type_:??? -> ?ipAddress:??? -> ?bgpAsn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of Values_0.String_.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