Class: Aws::ECS::Types::ListServicesResponse

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ecs/types.rb

Overview

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

The ‘nextToken` value to include in a future `ListServices` request. When the results of a `ListServices` request exceed `maxResults`, this value can be used to retrieve the next page of results. This value is `null` when there are no more results to return.

Returns:

  • (String)


3608
3609
3610
3611
3612
# File 'lib/aws-sdk-ecs/types.rb', line 3608

class ListServicesResponse < Struct.new(
  :service_arns,
  :next_token)
  include Aws::Structure
end

#service_arnsArray<String>

The list of full ARN entries for each service associated with the specified cluster.

Returns:

  • (Array<String>)


3608
3609
3610
3611
3612
# File 'lib/aws-sdk-ecs/types.rb', line 3608

class ListServicesResponse < Struct.new(
  :service_arns,
  :next_token)
  include Aws::Structure
end