Class: Aws::OpsWorks::Types::DescribeEcsClustersResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpsWorks::Types::DescribeEcsClustersResult
- Defined in:
- gems/aws-sdk-opsworks/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.
2944 2945 2946 2947 2948 2949 |
# File 'gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb', line 2944 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
.
2944 2945 2946 2947 2948 2949 |
# File 'gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb', line 2944 class DescribeEcsClustersResult < Struct.new( :ecs_clusters, :next_token) SENSITIVE = [] include Aws::Structure end |