Method: Aws::ECS::Types::ServiceConnectConfiguration#services

Defined in:
lib/aws-sdk-ecs/types.rb

#servicesArray<Types::ServiceConnectService>

The list of Service Connect service objects. These are names and aliases (also known as endpoints) that are used by other Amazon ECS services to connect to this service.

This field is not required for a “client” Amazon ECS service that’s a member of a namespace only to connect to other services within the namespace. An example of this would be a frontend application that accepts incoming requests from either a load balancer that’s attached to the service or by other means.

An object selects a port from the task definition, assigns a name for the Cloud Map service, and a list of aliases (endpoints) and ports for client applications to refer to this service.

Returns:



9282
9283
9284
9285
9286
9287
9288
9289
# File 'lib/aws-sdk-ecs/types.rb', line 9282

class ServiceConnectConfiguration < Struct.new(
  :enabled,
  :namespace,
  :services,
  :log_configuration)
  SENSITIVE = []
  include Aws::Structure
end