You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Module: Aws::ApiGatewayV2

Defined in:
(unknown)

Overview

This module provides a client for making API requests to AmazonApiGatewayV2.

Aws::ApiGatewayV2::Client

The Client class provides one-to-one mapping for each API operation.

apigatewayv2 = Aws::ApiGatewayV2::Client.new(region: 'us-east-1')
apigatewayv2.operation_names
#=> [:create_api, :create_api_mapping, :create_authorizer, :create_deployment, ...]

Each API operation method accepts a hash of request parameters and returns a response object.

resp = apigatewayv2.create_api(params)

See Client for more information.

Aws::ApiGatewayV2::Errors

Errors returned from AmazonApiGatewayV2 are defined in the Errors module and extend Errors::ServiceError.

begin
  # do stuff
rescue Aws::ApiGatewayV2::Errors::ServiceError
  # rescues all errors returned by AmazonApiGatewayV2
end

See Errors for more information.

Defined Under Namespace

Modules: Errors, Types Classes: Client