Class: Aws::ApplicationDiscoveryService::Types::ListConfigurationsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationDiscoveryService::Types::ListConfigurationsResponse
- Defined in:
- gems/aws-sdk-applicationdiscoveryservice/lib/aws-sdk-applicationdiscoveryservice/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#configurations ⇒ Array<Hash<String,String>>
Returns configuration details, including the configuration ID, attribute names, and attribute values.
-
#next_token ⇒ String
Token to retrieve the next set of results.
Instance Attribute Details
#configurations ⇒ Array<Hash<String,String>>
Returns configuration details, including the configuration ID, attribute names, and attribute values.
1669 1670 1671 1672 1673 1674 |
# File 'gems/aws-sdk-applicationdiscoveryservice/lib/aws-sdk-applicationdiscoveryservice/types.rb', line 1669 class ListConfigurationsResponse < Struct.new( :configurations, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Token to retrieve the next set of results. For example, if your call
to ListConfigurations returned 100 items, but you set
ListConfigurationsRequest$maxResults
to 10, you received a set of
10 results along with this token. Use this token in the next query
to retrieve the next set of 10.
1669 1670 1671 1672 1673 1674 |
# File 'gems/aws-sdk-applicationdiscoveryservice/lib/aws-sdk-applicationdiscoveryservice/types.rb', line 1669 class ListConfigurationsResponse < Struct.new( :configurations, :next_token) SENSITIVE = [] include Aws::Structure end |