Skip to content

List Cluster Scheduler Configs

sagemaker_list_cluster_scheduler_configs R Documentation

List the cluster policy configurations

Description

List the cluster policy configurations.

Usage

sagemaker_list_cluster_scheduler_configs(CreatedAfter, CreatedBefore,
  NameContains, ClusterArn, Status, SortBy, SortOrder, NextToken,
  MaxResults)

Arguments

CreatedAfter

Filter for after this creation time. The input for this parameter is a Unix timestamp. To convert a date and time into a Unix timestamp, see EpochConverter.

CreatedBefore

Filter for before this creation time. The input for this parameter is a Unix timestamp. To convert a date and time into a Unix timestamp, see EpochConverter.

NameContains

Filter for name containing this string.

ClusterArn

Filter for ARN of the cluster.

Status

Filter for status.

SortBy

Filter for sorting the list by a given value. For example, sort by name, creation time, or status.

SortOrder

The order of the list. By default, listed in Descending order according to by SortBy. To change the list order, you can specify SortOrder to be Ascending.

NextToken

If the previous response was truncated, you will receive this token. Use it in your next request to receive the next set of results.

MaxResults

The maximum number of cluster policies to list.

Value

A list with the following syntax:

list(
  ClusterSchedulerConfigSummaries = list(
    list(
      ClusterSchedulerConfigArn = "string",
      ClusterSchedulerConfigId = "string",
      ClusterSchedulerConfigVersion = 123,
      Name = "string",
      CreationTime = as.POSIXct(
        "2015-01-01"
      ),
      LastModifiedTime = as.POSIXct(
        "2015-01-01"
      ),
      Status = "Creating"|"CreateFailed"|"CreateRollbackFailed"|"Created"|"Updating"|"UpdateFailed"|"UpdateRollbackFailed"|"Updated"|"Deleting"|"DeleteFailed"|"DeleteRollbackFailed"|"Deleted",
      ClusterArn = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_cluster_scheduler_configs(
  CreatedAfter = as.POSIXct(
    "2015-01-01"
  ),
  CreatedBefore = as.POSIXct(
    "2015-01-01"
  ),
  NameContains = "string",
  ClusterArn = "string",
  Status = "Creating"|"CreateFailed"|"CreateRollbackFailed"|"Created"|"Updating"|"UpdateFailed"|"UpdateRollbackFailed"|"Updated"|"Deleting"|"DeleteFailed"|"DeleteRollbackFailed"|"Deleted",
  SortBy = "Name"|"CreationTime"|"Status",
  SortOrder = "Ascending"|"Descending",
  NextToken = "string",
  MaxResults = 123
)