Skip to content

List Registries

glue_list_registries R Documentation

Returns a list of registries that you have created, with minimal registry information

Description

Returns a list of registries that you have created, with minimal registry information. Registries in the Deleting status will not be included in the results. Empty results will be returned if there are no registries available.

Usage

glue_list_registries(MaxResults, NextToken)

Arguments

MaxResults

Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.

NextToken

A continuation token, if this is a continuation call.

Value

A list with the following syntax:

list(
  Registries = list(
    list(
      RegistryName = "string",
      RegistryArn = "string",
      Description = "string",
      Status = "AVAILABLE"|"DELETING",
      CreatedTime = "string",
      UpdatedTime = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_registries(
  MaxResults = 123,
  NextToken = "string"
)