paws.compute (version 0.1.0)

ecs_describe_container_instances: Describes Amazon Elastic Container Service container instances

Description

Describes Amazon Elastic Container Service container instances. Returns metadata about registered and remaining resources on each container instance requested.

Usage

ecs_describe_container_instances(cluster, containerInstances, include)

Arguments

cluster

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

containerInstances

[required] A list of up to 100 container instance IDs or full Amazon Resource Name (ARN) entries.

include

Specifies whether you want to see the resource tags for the container instance. 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_container_instances(
  cluster = "string",
  containerInstances = list(
    "string"
  ),
  include = list(
    "TAGS"
  )
)

Examples

Run this code
# NOT RUN {
# This example provides a description of the specified container instance
# in your default region, using the container instance UUID as an
# identifier.
# }
# NOT RUN {
svc$describe_container_instances(
  cluster = "default",
  containerInstances = list(
    "f2756532-8f13-4d53-87c9-aed50dc94cd7"
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace