Class: Aws::CloudFormation::Types::ListStackResourcesInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudformation/types.rb

Overview

Note:

When making an API call, you may pass ListStackResourcesInput data as a hash:

{
  stack_name: "StackName", # required
  next_token: "NextToken",
}

The input for the ListStackResource action.

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

A string that identifies the next page of stack resources that you want to retrieve.

Returns:

  • (String)


2471
2472
2473
2474
2475
# File 'lib/aws-sdk-cloudformation/types.rb', line 2471

class ListStackResourcesInput < Struct.new(
  :stack_name,
  :next_token)
  include Aws::Structure
end

#stack_nameString

The name or the unique stack ID that is associated with the stack, which are not 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.

Returns:

  • (String)


2471
2472
2473
2474
2475
# File 'lib/aws-sdk-cloudformation/types.rb', line 2471

class ListStackResourcesInput < Struct.new(
  :stack_name,
  :next_token)
  include Aws::Structure
end