Class: Aws::ECS::Types::CreateServiceResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::CreateServiceResponse
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#service ⇒ Types::Service
The full description of your service following the create call.
Instance Attribute Details
#service ⇒ Types::Service
The full description of your service following the create call.
A service will return either a capacityProviderStrategy
or
launchType
parameter, but not both, depending where one was
specified when it was created.
If a service is using the ECS
deployment controller, the
deploymentController
and taskSets
parameters will not be
returned.
if the service uses the CODE_DEPLOY
deployment controller, the
deploymentController
, taskSets
and deployments
parameters will
be returned, however the deployments
parameter will be an empty
list.
2986 2987 2988 2989 2990 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 2986 class CreateServiceResponse < Struct.new( :service) SENSITIVE = [] include Aws::Structure end |