Module Values.ResourceGatewaySummarySource

Summary information about a resource gateway.

Sourcetype nonrec t = {
  1. name : ResourceGatewayName.t option;
    (*

    The name of the resource gateway.

    *)
  2. id : ResourceGatewayId.t option;
    (*

    The ID of the resource gateway.

    *)
  3. arn : ResourceGatewayArn.t option;
    (*

    The Amazon Resource Name (ARN) of the resource gateway.

    *)
  4. status : ResourceGatewayStatus.t option;
    (*

    The name of the resource gateway.

    *)
  5. vpcIdentifier : VpcId.t option;
    (*

    The ID of the VPC for the resource gateway.

    *)
  6. subnetIds : SubnetList.t option;
    (*

    The IDs of the VPC subnets for the resource gateway.

    *)
  7. securityGroupIds : SecurityGroupList.t option;
    (*

    The IDs of the security groups applied to the resource gateway.

    *)
  8. ipAddressType : ResourceGatewayIpAddressType.t option;
    (*

    The type of IP address used by the resource gateway.

    *)
  9. ipv4AddressesPerEni : Ipv4AddressesPerEni.t option;
    (*

    The number of IPv4 addresses in each ENI for the resource gateway.

    *)
  10. resourceConfigDnsResolution : ResourceConfigDnsResolution.t option;
    (*

    The DNS resolution type for resource configurations that are associated with this resource gateway.

    *)
  11. createdAt : Timestamp.t option;
    (*

    The date and time that the VPC endpoint association was created, in ISO-8601 format.

    *)
  12. lastUpdatedAt : Timestamp.t option;
    (*

    The most recent date and time that the resource gateway was updated, in ISO-8601 format.

    *)
}
Sourceval make : ?name:??? -> ?id:??? -> ?arn:??? -> ?status:??? -> ?vpcIdentifier:??? -> ?subnetIds:??? -> ?securityGroupIds:??? -> ?ipAddressType:??? -> ?ipv4AddressesPerEni:??? -> ?resourceConfigDnsResolution:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Ipv4AddressesPerEni.t | `List of [> `String of SubnetId.t ] list | `String of ResourceGatewayName.t | `Timestamp of Timestamp.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