1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/models/support/flagged_resource.rb

14 lines
328 B
Ruby

module Fog
module AWS
class Support
class FlaggedResource < Fog::Model
identity :resource_id, :aliases => "resourceId"
attribute :is_suppressed, :aliases => "isSuppressed", :type => :boolean
attribute :metadata
attribute :region
attribute :status
end
end
end
end