Sha256: 58f4fdcaa49a19e4e8d9e1f902c0341bdee772d089208d954a35a052682e27f1

Contents?: true

Size: 1.75 KB

Versions: 65

Compression:

Stored size: 1.75 KB

Contents

module Aws
  # @api private
  module Structure

    def initialize(values = {})
      values.each do |k, v|
        self[k] = v
      end
    end

    # @return [Boolean] Returns `true` if this structure has a value
    #   set for the given member.
    def key?(member_name)
      !self[member_name].nil?
    end

    # @return [Boolean] Returns `true` if all of the member values are `nil`.
    def empty?
      values.compact == []
    end

    # Deeply converts the Structure into a hash.  Structure members that
    # are `nil` are omitted from the resultant hash.
    #
    # You can call #orig_to_h to get vanilla #to_h behavior as defined
    # in stdlib Struct.
    #
    # @return [Hash]
    def to_h(obj = self)
      case obj
      when Struct
        obj.each_pair.with_object({}) do |(member, value), hash|
          hash[member] = to_hash(value) unless value.nil?
        end
      when Hash
        obj.each.with_object({}) do |(key, value), hash|
          hash[key] = to_hash(value)
        end
      when Array
        obj.collect { |value| to_hash(value) }
      else
        obj
      end
    end
    alias to_hash to_h

    # Wraps the default #to_s logic with filtering of sensitive parameters.
    def to_s(obj = self)
      Aws::Log::ParamFilter.new.filter(obj).to_s
    end

    class << self

      # @api private
      def new(*args)
        if args.empty?
          Aws::EmptyStructure
        else
          struct = Struct.new(*args)
          struct.send(:include, Aws::Structure)
          struct
        end
      end

      # @api private
      def self.included(base_class)
        base_class.send(:undef_method, :each)
      end

    end
  end

  # @api private
  class EmptyStructure < Struct.new('AwsEmptyStructure')
    include(Aws::Structure)
  end

end

Version data entries

65 entries across 65 versions & 1 rubygems

Version Path
aws-sdk-core-3.100.0 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.99.2 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.99.1 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.99.0 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.98.0 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.97.1 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.97.0 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.96.1 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.96.0 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.95.0 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.94.1 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.94.0 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.93.0 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.92.0 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.91.1 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.91.0 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.90.1 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.90.0 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.89.1 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.89.0 lib/aws-sdk-core/structure.rb