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

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

Overview

Note:

When making an API call, you may pass DeleteServiceRequest data as a hash:

{
  cluster: "String",
  service: "String", # required
  force: false,
}

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)


2054
2055
2056
2057
2058
2059
# File 'lib/aws-sdk-ecs/types.rb', line 2054

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

#forceBoolean

If ‘true`, allows you to delete a service even if it has not been scaled down to zero tasks. It is only necessary to use this if the service is using the `REPLICA` scheduling strategy.

Returns:

  • (Boolean)


2054
2055
2056
2057
2058
2059
# File 'lib/aws-sdk-ecs/types.rb', line 2054

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

#serviceString

The name of the service to delete.

Returns:

  • (String)


2054
2055
2056
2057
2058
2059
# File 'lib/aws-sdk-ecs/types.rb', line 2054

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