Class: Aws::ECS::Types::ListServiceDeploymentsResponse

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

The ‘nextToken` value to include in a future `ListServiceDeployments` request. When the results of a `ListServiceDeployments` 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)


6190
6191
6192
6193
6194
6195
# File 'lib/aws-sdk-ecs/types.rb', line 6190

class ListServiceDeploymentsResponse < Struct.new(
  :service_deployments,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#service_deploymentsArray<Types::ServiceDeploymentBrief>

An overview of the service deployment, including the following properties:

  • The ARN of the service deployment.

  • The ARN of the service being deployed.

  • The ARN of the cluster that hosts the service in the service deployment.

  • The time that the service deployment started.

  • The time that the service deployment completed.

  • The service deployment status.

  • Information about why the service deployment is in the current state.

  • The ARN of the service revision that is being deployed.

Returns:



6190
6191
6192
6193
6194
6195
# File 'lib/aws-sdk-ecs/types.rb', line 6190

class ListServiceDeploymentsResponse < Struct.new(
  :service_deployments,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end