Class: Aws::CloudFormation::Types::ListStackResourcesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::ListStackResourcesInput
- Defined in:
- gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb
Overview
The input for the ListStackResource action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
A string that identifies the next page of stack resources that you want to retrieve.
-
#stack_name ⇒ String
The name or the unique stack ID that is associated with the stack, which aren't always interchangeable:.
Instance Attribute Details
#next_token ⇒ String
A string that identifies the next page of stack resources that you want to retrieve.
5240 5241 5242 5243 5244 5245 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 5240 class ListStackResourcesInput < Struct.new( :stack_name, :next_token) SENSITIVE = [] include Aws::Structure end |
#stack_name ⇒ String
The name or the unique stack ID that is 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.
Default: There is no default value.
5240 5241 5242 5243 5244 5245 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 5240 class ListStackResourcesInput < Struct.new( :stack_name, :next_token) SENSITIVE = [] include Aws::Structure end |