Sha256: add04b687212c8ebc318848713ac911ea13b3efee50d61817e909a2a0a4ee75c
Contents?: true
Size: 658 Bytes
Versions: 56
Compression:
Stored size: 658 Bytes
Contents
# frozen_string_literal: true # # Collect ApplicationAutoScaling resources # class ApplicationAutoScaling < Mapper # # Returns an array of resources. # def collect resources = [] # # DynamoDB auto-scaling policies # @client.describe_scaling_policies({ service_namespace: 'dynamodb' }).each_with_index do |response, page| log(response.context.operation_name, page) response.scaling_policies.each do |policy| struct = OpenStruct.new(policy.to_h) struct.type = 'auto_scaling_policy' struct.arn = policy.policy_arn resources.push(struct.to_h) end end resources end end
Version data entries
56 entries across 56 versions & 1 rubygems