Sha256: 35d7267d13b815d251de414844ed4c61beef7e0650e8abe9aa44ada7b6f9c87c

Contents?: true

Size: 479 Bytes

Versions: 3

Compression:

Stored size: 479 Bytes

Contents

# encoding: utf-8
require "logstash/config/mixin"

# 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.
module LogStash::PluginMixins::AwsConfig
  require "logstash/plugin_mixins/aws_config/v1"
  require "logstash/plugin_mixins/aws_config/v2"

  US_EAST_1 = "us-east-1"

  def self.included(base)
    # Add these methods to the 'base' given.
    base.send(:include, V1)
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
logstash-mixin-aws-4.4.1 lib/logstash/plugin_mixins/aws_config.rb
logstash-mixin-aws-4.4.0 lib/logstash/plugin_mixins/aws_config.rb
logstash-mixin-aws-4.3.0 lib/logstash/plugin_mixins/aws_config.rb