Method: Aws::ECS::Types::Service#launch_type
- Defined in:
- lib/aws-sdk-ecs/types.rb
#launch_type ⇒ String
The launch type the service is using. When using the DescribeServices API, this field is omitted if the service was created using a capacity provider strategy.
10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 |
# File 'lib/aws-sdk-ecs/types.rb', line 10070 class Service < Struct.new( :service_arn, :service_name, :cluster_arn, :load_balancers, :service_registries, :status, :desired_count, :running_count, :pending_count, :launch_type, :capacity_provider_strategy, :platform_version, :platform_family, :task_definition, :deployment_configuration, :task_sets, :deployments, :role_arn, :events, :created_at, :placement_constraints, :placement_strategy, :network_configuration, :health_check_grace_period_seconds, :scheduling_strategy, :deployment_controller, :tags, :created_by, :enable_ecs_managed_tags, :propagate_tags, :enable_execute_command, :availability_zone_rebalancing) SENSITIVE = [] include Aws::Structure end |