Class: Aws::OpsWorks::Types::DescribeEcsClustersResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpsWorks::Types::DescribeEcsClustersResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-opsworks/types.rb
Overview
Contains the response to a ‘DescribeEcsClusters` request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ecs_clusters ⇒ Array<Types::EcsCluster>
A list of ‘EcsCluster` objects containing the cluster descriptions.
-
#next_token ⇒ String
If a paginated request does not return all of the remaining results, this parameter is set to a token that you can assign to the request object’s ‘NextToken` parameter to retrieve the next set of results.
Instance Attribute Details
#ecs_clusters ⇒ Array<Types::EcsCluster>
A list of ‘EcsCluster` objects containing the cluster descriptions.
2450 2451 2452 2453 2454 2455 |
# File 'lib/aws-sdk-opsworks/types.rb', line 2450 class DescribeEcsClustersResult < Struct.new( :ecs_clusters, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If a paginated request does not return all of the remaining results, this parameter is set to a token that you can assign to the request object’s ‘NextToken` parameter to retrieve the next set of results. If the previous paginated request returned all of the remaining results, this parameter is set to `null`.
2450 2451 2452 2453 2454 2455 |
# File 'lib/aws-sdk-opsworks/types.rb', line 2450 class DescribeEcsClustersResult < Struct.new( :ecs_clusters, :next_token) SENSITIVE = [] include Aws::Structure end |