Skip to main content

sdk_types

Creates, updates, deletes, gets or lists a sdk_types resource.

Overview

Namesdk_types
TypeResource
Idaws.apigateway.sdk_types

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe identifier of an SdkType instance.
configuration_propertiesarrayA list of configuration properties of an SdkType.
descriptionstringThe description of an SdkType.
friendly_namestringThe user-friendly name of an SdkType instance.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_sdk_typeselectsdktype_id, regionGets an SDK type.
get_sdk_typesselectregionposition, limitGets SDK types

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
sdktype_idstringThe identifier of the queried SdkType instance.
limitintegerThe maximum number of returned results per page. The default value is 25 and the maximum value is 500.
positionstringThe current pagination position in the paged result set.

SELECT examples

Gets an SDK type.

SELECT
id,
configuration_properties,
description,
friendly_name
FROM aws.apigateway.sdk_types
WHERE sdktype_id = '{{ sdktype_id }}' -- required
AND region = '{{ region }}' -- required
;