Class: Aws::CodeDeploy::Types::ECSService
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::ECSService
- Defined in:
- gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb
Overview
Contains the service and cluster names used to identify an Amazon ECS deployment's target.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_name ⇒ String
The name of the cluster that the Amazon ECS service is associated with.
-
#service_name ⇒ String
The name of the target Amazon ECS service.
Instance Attribute Details
#cluster_name ⇒ String
The name of the cluster that the Amazon ECS service is associated with.
2101 2102 2103 2104 2105 2106 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 2101 class ECSService < Struct.new( :service_name, :cluster_name) SENSITIVE = [] include Aws::Structure end |
#service_name ⇒ String
The name of the target Amazon ECS service.
2101 2102 2103 2104 2105 2106 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 2101 class ECSService < Struct.new( :service_name, :cluster_name) SENSITIVE = [] include Aws::Structure end |