Class: Aws::ECS::Types::ServiceRegistry
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::ServiceRegistry
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ecs/types.rb
Overview
The details for the service registry.
Each service may be associated with one service registry. Multiple service registries for each service are not supported.
When you add, update, or remove the service registries configuration, Amazon ECS starts a new deployment. New tasks are registered and deregistered to the updated service registry configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#container_name ⇒ String
The container name value to be used for your service discovery service.
-
#container_port ⇒ Integer
The port value to be used for your service discovery service.
-
#port ⇒ Integer
The port value used if your service discovery service specified an SRV record.
-
#registry_arn ⇒ String
The Amazon Resource Name (ARN) of the service registry.
Instance Attribute Details
#container_name ⇒ String
The container name value to be used for your service discovery service. It’s already specified in the task definition. If the task definition that your service task specifies uses the ‘bridge` or `host` network mode, you must specify a `containerName` and `containerPort` combination from the task definition. If the task definition that your service task specifies uses the `awsvpc` network mode and a type SRV DNS record is used, you must specify either a `containerName` and `containerPort` combination or a `port` value. However, you can’t specify both.
9699 9700 9701 9702 9703 9704 9705 9706 |
# File 'lib/aws-sdk-ecs/types.rb', line 9699 class ServiceRegistry < Struct.new( :registry_arn, :port, :container_name, :container_port) SENSITIVE = [] include Aws::Structure end |
#container_port ⇒ Integer
The port value to be used for your service discovery service. It’s already specified in the task definition. If the task definition your service task specifies uses the ‘bridge` or `host` network mode, you must specify a `containerName` and `containerPort` combination from the task definition. If the task definition your service task specifies uses the `awsvpc` network mode and a type SRV DNS record is used, you must specify either a `containerName` and `containerPort` combination or a `port` value. However, you can’t specify both.
9699 9700 9701 9702 9703 9704 9705 9706 |
# File 'lib/aws-sdk-ecs/types.rb', line 9699 class ServiceRegistry < Struct.new( :registry_arn, :port, :container_name, :container_port) SENSITIVE = [] include Aws::Structure end |
#port ⇒ Integer
The port value used if your service discovery service specified an SRV record. This field might be used if both the ‘awsvpc` network mode and SRV records are used.
9699 9700 9701 9702 9703 9704 9705 9706 |
# File 'lib/aws-sdk-ecs/types.rb', line 9699 class ServiceRegistry < Struct.new( :registry_arn, :port, :container_name, :container_port) SENSITIVE = [] include Aws::Structure end |
#registry_arn ⇒ String
The Amazon Resource Name (ARN) of the service registry. The currently supported service registry is Cloud Map. For more information, see [CreateService].
[1]: docs.aws.amazon.com/cloud-map/latest/api/API_CreateService.html
9699 9700 9701 9702 9703 9704 9705 9706 |
# File 'lib/aws-sdk-ecs/types.rb', line 9699 class ServiceRegistry < Struct.new( :registry_arn, :port, :container_name, :container_port) SENSITIVE = [] include Aws::Structure end |