Class: Aws::ECS::Types::DeleteServiceRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#clusterString

The short name or full Amazon Resource Name (ARN) of the cluster that hosts the service to delete. If you do not specify a cluster, the default cluster is assumed.

Returns:

  • (String)


3367
3368
3369
3370
3371
3372
3373
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 3367

class DeleteServiceRequest < Struct.new(
  :cluster,
  :service,
  :force)
  SENSITIVE = []
  include Aws::Structure
end

#forceBoolean

If true, allows you to delete a service even if it wasn't scaled down to zero tasks. It's only necessary to use this if the service uses the REPLICA scheduling strategy.

Returns:

  • (Boolean)


3367
3368
3369
3370
3371
3372
3373
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 3367

class DeleteServiceRequest < Struct.new(
  :cluster,
  :service,
  :force)
  SENSITIVE = []
  include Aws::Structure
end

#serviceString

The name of the service to delete.

Returns:

  • (String)


3367
3368
3369
3370
3371
3372
3373
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 3367

class DeleteServiceRequest < Struct.new(
  :cluster,
  :service,
  :force)
  SENSITIVE = []
  include Aws::Structure
end