Class: Aws::AutoScaling::Types::ActivitiesType
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScaling::Types::ActivitiesType
- Defined in:
- gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#activities ⇒ Array<Types::Activity>
The scaling activities.
-
#next_token ⇒ String
A string that indicates that the response contains more items than can be returned in a single response.
Instance Attribute Details
#activities ⇒ Array<Types::Activity>
The scaling activities. Activities are sorted by start time. Activities still in progress are described first.
91 92 93 94 95 96 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 91 class ActivitiesType < Struct.new( :activities, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A string that indicates that the response contains more items than
can be returned in a single response. To receive additional items,
specify this string for the NextToken
value when requesting the
next set of items. This value is null when there are no more items
to return.
91 92 93 94 95 96 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 91 class ActivitiesType < Struct.new( :activities, :next_token) SENSITIVE = [] include Aws::Structure end |