Class: Aws::CloudFormation::Types::ListImportsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::ListImportsInput
- Defined in:
- gems/aws-sdk-cloudformation/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",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#export_name ⇒ String
The name of the exported output value.
-
#next_token ⇒ String
A string (provided by the ListImports response output) that identifies the next page of stacks that are importing the specified exported output value.
Instance Attribute Details
#export_name ⇒ String
The name of the exported output value. AWS CloudFormation returns the stack names that are importing this value.
3575 3576 3577 3578 3579 3580 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 3575 class ListImportsInput < Struct.new( :export_name, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A string (provided by the ListImports response output) that identifies the next page of stacks that are importing the specified exported output value.
3575 3576 3577 3578 3579 3580 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 3575 class ListImportsInput < Struct.new( :export_name, :next_token) SENSITIVE = [] include Aws::Structure end |