Class: Aws::ApplicationDiscoveryService::Types::ListConfigurationsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationDiscoveryService::Types::ListConfigurationsResponse
- Includes:
- Structure
- Defined in:
- 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.
1678 1679 1680 1681 1682 1683 |
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 1678 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.
1678 1679 1680 1681 1682 1683 |
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 1678 class ListConfigurationsResponse < Struct.new( :configurations, :next_token) SENSITIVE = [] include Aws::Structure end |