Class: Aws::CloudFormation::Types::DescribeStackEventsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::DescribeStackEventsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
Overview
The input for DescribeStackEvents action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
The token for the next set of items to return.
-
#stack_name ⇒ String
The name or the unique stack ID that’s associated with the stack, which aren’t always interchangeable:.
Instance Attribute Details
#next_token ⇒ String
The token for the next set of items to return. (You received this token from a previous call.)
3214 3215 3216 3217 3218 3219 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 3214 class DescribeStackEventsInput < Struct.new( :stack_name, :next_token) SENSITIVE = [] include Aws::Structure end |
#stack_name ⇒ String
The name or the unique stack ID that’s associated with the stack, which aren’t always interchangeable:
-
Running stacks: You can specify either the stack’s name or its unique stack ID.
-
Deleted stacks: You must specify the unique stack ID.
3214 3215 3216 3217 3218 3219 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 3214 class DescribeStackEventsInput < Struct.new( :stack_name, :next_token) SENSITIVE = [] include Aws::Structure end |