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
Note:
When making an API call, you may pass ECSService data as a hash:
{
service_name: "ECSServiceName",
cluster_name: "ECSClusterName",
}
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.
2457 2458 2459 2460 2461 2462 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 2457 class ECSService < Struct.new( :service_name, :cluster_name) SENSITIVE = [] include Aws::Structure end |
#service_name ⇒ String
The name of the target Amazon ECS service.
2457 2458 2459 2460 2461 2462 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 2457 class ECSService < Struct.new( :service_name, :cluster_name) SENSITIVE = [] include Aws::Structure end |