Module Values.GetRequesterGatewayResponseSource

Retrieves information about a requester gateway.

Sourcetype nonrec t = {
  1. status : RequesterGatewayStatus.t option;
    (*

    The status of the request.

    *)
  2. domainName : DomainName.t option;
    (*

    The domain name of the requester gateway.

    *)
  3. description : GetRequesterGatewayResponseDescriptionString.t option;
    (*

    The description of the requester gateway.

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

    The timestamp of when the requester gateway was created.

    *)
  5. updatedAt : Timestamp.t option;
    (*

    The timestamp of when the requester gateway was updated.

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

    The unique identifier of the Virtual Private Cloud (VPC).

    *)
  7. subnetIds : GetRequesterGatewayResponseSubnetIdsList.t option;
    (*

    The unique identifiers of the subnets.

    *)
  8. securityGroupIds : GetRequesterGatewayResponseSecurityGroupIdsList.t option;
    (*

    The unique identifiers of the security groups.

    *)
  9. gatewayId : GatewayId.t option;
    (*

    The unique identifier of the gateway.

    *)
  10. tags : TagsMap.t option;
    (*

    A map of the key-value pairs for the tag or tags assigned to the specified resource.

    *)
  11. activeLinksCount : Integer.t option;
    (*

    The count of active links for the requester gateway.

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

    The total count of links for the requester gateway.

    *)
}
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 : ?status:??? -> ?domainName:??? -> ?description:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?vpcId:??? -> ?subnetIds:??? -> ?securityGroupIds:??? -> ?gatewayId:??? -> ?tags:??? -> ?activeLinksCount:??? -> ?totalLinksCount:??? -> 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 * [> `Enum of string | `Integer of Integer.t | `List of [> `String of SubnetId.t ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of DomainName.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