Skip to content

Describe Code Binding

schemas_describe_code_binding R Documentation

Describe the code binding URI

Description

Describe the code binding URI.

Usage

schemas_describe_code_binding(Language, RegistryName, SchemaName,
  SchemaVersion)

Arguments

Language

[required] The language of the code binding.

RegistryName

[required] The name of the registry.

SchemaName

[required] The name of the schema.

SchemaVersion

Specifying this limits the results to only this schema version.

Value

A list with the following syntax:

list(
  CreationDate = as.POSIXct(
    "2015-01-01"
  ),
  LastModified = as.POSIXct(
    "2015-01-01"
  ),
  SchemaVersion = "string",
  Status = "CREATE_IN_PROGRESS"|"CREATE_COMPLETE"|"CREATE_FAILED"
)

Request syntax

svc$describe_code_binding(
  Language = "string",
  RegistryName = "string",
  SchemaName = "string",
  SchemaVersion = "string"
)