Sha256: 6b481665c8bc11c2f46f57c09b732b9e25da52d7f90572ab995a6526cf3f672e

Contents?: true

Size: 1.78 KB

Versions: 20

Compression:

Stored size: 1.78 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.members.each.with_object({}) do |member, hash|
          value = obj[member]
          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

20 entries across 20 versions & 1 rubygems

Version Path
aws-sdk-core-3.53.0 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.52.1 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.52.0 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.51.0 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.50.0 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.49.0 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.48.6 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.48.5 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.48.4 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.48.3 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.48.2 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.48.1 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.48.0 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.47.0 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.46.2 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.46.1 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.46.0 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.45.0 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.44.2 lib/aws-sdk-core/structure.rb
aws-sdk-core-3.44.1 lib/aws-sdk-core/structure.rb