Class: Aws::ECS::Types::ListServicesByNamespaceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::ListServicesByNamespaceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ecs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of service results that
ListServicesByNamespacereturns in paginated output. -
#namespace ⇒ String
The namespace name or full Amazon Resource Name (ARN) of the Cloud Map namespace to list the services in.
-
#next_token ⇒ String
The
nextTokenvalue that’s returned from aListServicesByNamespacerequest.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of service results that ListServicesByNamespace returns in paginated output. When this parameter is used, ListServicesByNamespace only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListServicesByNamespace request with the returned nextToken value. This value can be between 1 and 100. If this parameter isn’t used, then ListServicesByNamespace returns up to 10 results and a nextToken value if applicable.
7907 7908 7909 7910 7911 7912 7913 |
# File 'lib/aws-sdk-ecs/types.rb', line 7907 class ListServicesByNamespaceRequest < Struct.new( :namespace, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#namespace ⇒ String
The namespace name or full Amazon Resource Name (ARN) of the Cloud Map namespace to list the services in.
Tasks that run in a namespace can use short names to connect to services in the namespace. Tasks can connect to services across all of the clusters in the namespace. Tasks connect through a managed proxy container that collects logs and metrics for increased visibility. Only the tasks that Amazon ECS services create are supported with Service Connect. For more information, see [Service Connect] in the *Amazon Elastic Container Service Developer Guide*.
[1]: docs.aws.amazon.com/AmazonECS/latest/developerguide/service-connect.html
7907 7908 7909 7910 7911 7912 7913 |
# File 'lib/aws-sdk-ecs/types.rb', line 7907 class ListServicesByNamespaceRequest < Struct.new( :namespace, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The nextToken value that’s returned from a ListServicesByNamespace request. It indicates that more results are available to fulfill the request and further calls are needed. If maxResults is returned, it is possible the number of results is less than maxResults.
7907 7908 7909 7910 7911 7912 7913 |
# File 'lib/aws-sdk-ecs/types.rb', line 7907 class ListServicesByNamespaceRequest < Struct.new( :namespace, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |