Module Values.GetResourceGatewayResponseSource

Retrieves information about the specified 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 status for the resource gateway.

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

    The ID of the VPC for the resource gateway.

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

    The IDs of the VPC subnets for resource gateway.

    *)
  7. serviceManaged : Boolean.t option;
    (*

    Indicates whether the resource gateway is managed by an AWS service.

    *)
  8. managedBy : String_.t option;
    (*

    The AWS service that manages the resource gateway.

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

    The security group IDs associated with the resource gateway.

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

    The type of IP address for the resource gateway.

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

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

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

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

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

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

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

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

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?name:??? -> ?id:??? -> ?arn:??? -> ?status:??? -> ?vpcId:??? -> ?subnetIds:??? -> ?serviceManaged:??? -> ?managedBy:??? -> ?securityGroupIds:??? -> ?ipAddressType:??? -> ?ipv4AddressesPerEni:??? -> ?resourceConfigDnsResolution:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `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