Module Values.UpdateResourceGatewayResponseSource

Updates 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 of 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 the resource gateway.

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

    The IDs of the security groups associated with the resource gateway.

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

    The type of IP address used by the resource gateway.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?name:??? -> ?id:??? -> ?arn:??? -> ?status:??? -> ?vpcId:??? -> ?subnetIds:??? -> ?securityGroupIds:??? -> ?ipAddressType:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.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 | `ConflictException of ConflictException.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 | `List of [> `String of SubnetId.t ] list | `String of ResourceGatewayName.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