Method: Aws::CodeDeploy::Types::DeploymentGroupInfo#ecs_services
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
#ecs_services ⇒ Array<Types::ECSService>
The target Amazon ECS services in the deployment group. This applies only to deployment groups that use the Amazon ECS compute platform. A target Amazon ECS service is specified as an Amazon ECS cluster and service name pair using the format ‘<clustername>:<servicename>`.
1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 1520 class DeploymentGroupInfo < Struct.new( :application_name, :deployment_group_id, :deployment_group_name, :deployment_config_name, :ec2_tag_filters, :on_premises_instance_tag_filters, :auto_scaling_groups, :service_role_arn, :target_revision, :trigger_configurations, :alarm_configuration, :auto_rollback_configuration, :deployment_style, :outdated_instances_strategy, :blue_green_deployment_configuration, :load_balancer_info, :last_successful_deployment, :last_attempted_deployment, :ec2_tag_set, :on_premises_tag_set, :compute_platform, :ecs_services, :termination_hook_enabled) SENSITIVE = [] include Aws::Structure end |