Class: Aws::B2bi::Types::ListTransformersResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::B2bi::Types::ListTransformersResponse
- Defined in:
- gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
When additional results are obtained from the command, a
NextToken
parameter is returned in the output. -
#transformers ⇒ Array<Types::TransformerSummary>
Returns an array of one or more transformer objects.
Instance Attribute Details
#next_token ⇒ String
When additional results are obtained from the command, a NextToken
parameter is returned in the output. You can then pass the
NextToken
parameter in a subsequent command to continue listing
additional resources.
1530 1531 1532 1533 1534 1535 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1530 class ListTransformersResponse < Struct.new( :transformers, :next_token) SENSITIVE = [] include Aws::Structure end |
#transformers ⇒ Array<Types::TransformerSummary>
Returns an array of one or more transformer objects.
For each transformer, a TransformerSummary
object is returned. The
TransformerSummary
contains all the details for a specific
transformer.
1530 1531 1532 1533 1534 1535 |
# File 'gems/aws-sdk-b2bi/lib/aws-sdk-b2bi/types.rb', line 1530 class ListTransformersResponse < Struct.new( :transformers, :next_token) SENSITIVE = [] include Aws::Structure end |