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