Skip to content

Get Sdk Type

apigateway_get_sdk_type R Documentation

Gets an SDK type

Description

Gets an SDK type.

Usage

apigateway_get_sdk_type(id)

Arguments

id

[required] The identifier of the queried SdkType instance.

Value

A list with the following syntax:

list(
  id = "string",
  friendlyName = "string",
  description = "string",
  configurationProperties = list(
    list(
      name = "string",
      friendlyName = "string",
      description = "string",
      required = TRUE|FALSE,
      defaultValue = "string"
    )
  )
)

Request syntax

svc$get_sdk_type(
  id = "string"
)