Class: Aws::CloudFormation::Types::ListImportsInput

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 ListImportsInput data as a hash:

{
  export_name: "ExportName", # required
  next_token: "NextToken",
}

Instance Attribute Summary collapse

Instance Attribute Details

#export_nameString

The name of the exported output value. AWS CloudFormation returns the stack names that are importing this value.

Returns:

  • (String)


3253
3254
3255
3256
3257
# File 'lib/aws-sdk-cloudformation/types.rb', line 3253

class ListImportsInput < Struct.new(
  :export_name,
  :next_token)
  include Aws::Structure
end

#next_tokenString

A string (provided by the ListImports response output) that identifies the next page of stacks that are importing the specified exported output value.

Returns:

  • (String)


3253
3254
3255
3256
3257
# File 'lib/aws-sdk-cloudformation/types.rb', line 3253

class ListImportsInput < Struct.new(
  :export_name,
  :next_token)
  include Aws::Structure
end