Module Values.AwsEc2TransitGatewayDetailsSource

Information about an Amazon Web Services Amazon EC2 Transit Gateway that interconnects virtual private clouds (VPCs) and on-premises networks.

Sourcetype nonrec t = {
  1. id : NonEmptyString.t option;
    (*

    The ID of the transit gateway.

    *)
  2. description : NonEmptyString.t option;
    (*

    The description of the transit gateway.

    *)
  3. defaultRouteTablePropagation : NonEmptyString.t option;
    (*

    Turn on or turn off automatic propagation of routes to the default propagation route table.

    *)
  4. autoAcceptSharedAttachments : NonEmptyString.t option;
    (*

    Turn on or turn off automatic acceptance of attachment requests.

    *)
  5. defaultRouteTableAssociation : NonEmptyString.t option;
    (*

    Turn on or turn off automatic association with the default association route table.

    *)
  6. transitGatewayCidrBlocks : NonEmptyStringList.t option;
    (*

    The transit gateway Classless Inter-Domain Routing (CIDR) blocks.

    *)
  7. associationDefaultRouteTableId : NonEmptyString.t option;
    (*

    The ID of the default association route table.

    *)
  8. propagationDefaultRouteTableId : NonEmptyString.t option;
    (*

    The ID of the default propagation route table.

    *)
  9. vpnEcmpSupport : NonEmptyString.t option;
    (*

    Turn on or turn off Equal Cost Multipath Protocol (ECMP) support.

    *)
  10. dnsSupport : NonEmptyString.t option;
    (*

    Turn on or turn off DNS support.

    *)
  11. multicastSupport : NonEmptyString.t option;
    (*

    Indicates whether multicast is supported on the transit gateway.

    *)
  12. amazonSideAsn : Integer.t option;
    (*

    A private Autonomous System Number (ASN) for the Amazon side of a BGP session.

    *)
}
Sourceval make : ?id:??? -> ?description:??? -> ?defaultRouteTablePropagation:??? -> ?autoAcceptSharedAttachments:??? -> ?defaultRouteTableAssociation:??? -> ?transitGatewayCidrBlocks:??? -> ?associationDefaultRouteTableId:??? -> ?propagationDefaultRouteTableId:??? -> ?vpnEcmpSupport:??? -> ?dnsSupport:??? -> ?multicastSupport:??? -> ?amazonSideAsn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `String of NonEmptyString.t ] list | `String of NonEmptyString.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