Describe Service Environments
| batch_describe_service_environments | R Documentation |
Describes one or more of your service environments¶
Description¶
Describes one or more of your service environments.
Usage¶
batch_describe_service_environments(serviceEnvironments, maxResults,
nextToken)
Arguments¶
serviceEnvironments |
An array of service environment names or ARN entries. |
maxResults |
The maximum number of results returned by
|
nextToken |
The Treat this token as an opaque identifier that's only used to retrieve the next items in a list and not for other programmatic purposes. |
Value¶
A list with the following syntax:
list(
serviceEnvironments = list(
list(
serviceEnvironmentName = "string",
serviceEnvironmentArn = "string",
serviceEnvironmentType = "SAGEMAKER_TRAINING",
state = "ENABLED"|"DISABLED",
status = "CREATING"|"UPDATING"|"DELETING"|"DELETED"|"VALID"|"INVALID",
capacityLimits = list(
list(
maxCapacity = 123,
capacityUnit = "string"
)
),
tags = list(
"string"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$describe_service_environments(
serviceEnvironments = list(
"string"
),
maxResults = 123,
nextToken = "string"
)