paws.compute (version 0.1.0)

ecs_describe_services: Describes the specified services running in your cluster

Description

Describes the specified services running in your cluster.

Usage

ecs_describe_services(cluster, services, include)

Arguments

cluster

The short name or full Amazon Resource Name (ARN)the cluster that hosts the service to describe. If you do not specify a cluster, the default cluster is assumed.

services

[required] A list of services to describe. You may specify up to 10 services to describe in a single operation.

include

Specifies whether you want to see the resource tags for the service. If TAGS is specified, the tags are included in the response. If this field is omitted, tags are not included in the response.

Request syntax

svc$describe_services(
  cluster = "string",
  services = list(
    "string"
  ),
  include = list(
    "TAGS"
  )
)

Examples

Run this code
# NOT RUN {
# This example provides descriptive information about the service named
# ``ecs-simple-service``.
# }
# NOT RUN {
svc$describe_services(
  services = list(
    "ecs-simple-service"
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace