Class: Aws::CloudFormation::Types::DescribeStackEventsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::DescribeStackEventsOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
Overview
The output for a DescribeStackEvents action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If the output exceeds 1 MB in size, a string that identifies the next page of events.
-
#stack_events ⇒ Array<Types::StackEvent>
A list of ‘StackEvents` structures.
Instance Attribute Details
#next_token ⇒ String
If the output exceeds 1 MB in size, a string that identifies the next page of events. If no additional page exists, this value is null.
2960 2961 2962 2963 2964 2965 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 2960 class DescribeStackEventsOutput < Struct.new( :stack_events, :next_token) SENSITIVE = [] include Aws::Structure end |
#stack_events ⇒ Array<Types::StackEvent>
A list of ‘StackEvents` structures.
2960 2961 2962 2963 2964 2965 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 2960 class DescribeStackEventsOutput < Struct.new( :stack_events, :next_token) SENSITIVE = [] include Aws::Structure end |