You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Module: Aws::ECS
- Defined in:
- (unknown)
Overview
This module provides a client for making API requests to Amazon EC2 Container Service.
Aws::ECS::Client
The Client class provides one-to-one mapping for each API operation.
ecs = Aws::ECS::Client.new(region: 'us-east-1')
ecs.operation_names
#=> [:create_capacity_provider, :create_cluster, :create_service, :create_task_set, ...]
Each API operation method accepts a hash of request parameters and returns a response object.
resp = ecs.create_capacity_provider(params)
See Client for more information.
Aws::ECS::Errors
Errors returned from Amazon EC2 Container Service are defined in the Errors module and extend Errors::ServiceError.
begin
# do stuff
rescue Aws::ECS::Errors::ServiceError
# rescues all errors returned by Amazon EC2 Container Service
end
See Errors for more information.