Class: Aws::OpsWorks::Types::DescribeEcsClustersResult

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#ecs_clustersArray<Types::EcsCluster>

A list of ‘EcsCluster` objects containing the cluster descriptions.

Returns:



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_tokenString

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`.

Returns:

  • (String)


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