Module: LogStash::PluginMixins::AwsConfig
- Defined in:
- lib/logstash/plugin_mixins/aws_config.rb
Overview
This module provides helper for the ‘AWS-SDK` v1, and it will be deprecated in the near future, please use the V2 module for any new development.
Constant Summary collapse
- US_EAST_1 =
"us-east-1"- REGIONS_ENDPOINT =
[US_EAST_1, "us-east-2", "us-west-1", "us-west-2", "eu-central-1", "eu-west-1", "eu-west-2", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "sa-east-1", "us-gov-west-1", "cn-north-1", "ap-south-1", "ca-central-1"]
Class Method Summary collapse
Class Method Details
.included(base) ⇒ Object
18 19 20 21 |
# File 'lib/logstash/plugin_mixins/aws_config.rb', line 18 def self.included(base) # Add these methods to the 'base' given. base.send(:include, V1) end |