aws.apigateway.get_sdk
Example SQL Queries
SELECT * FROMaws.apigateway.get_sdkWHERE"rest_api_id" = 'VALUE'AND "stage_name" = 'VALUE'AND "sdk_type" = 'VALUE';Description
Generates a client SDK for a RestApi and Stage.
Table Definition
| Column Name | Column Data Type |
|---|---|
| rest_api_id Required Input Column The string identifier of the associated RestApi. | VARCHAR |
| sdk_type Required Input Column The language for the generated SDK. Currently java, javascript, android, objectivec (for iOS), swift (for iOS), and ruby are supported. | VARCHAR |
| stage_name Required Input Column The name of the Stage that the SDK will use. | VARCHAR |
| parameters Input Column A string-to-string key-value map of query parameters sdkType-dependent properties of the SDK. For sdkType of objectivec or swift, a parameter named classPrefix is required. For sdkType of android, parameters named groupId, artifactId, artifactVersion, and invokerPackage are required. For sdkType of java, parameters named serviceName and javaPackageName are required. | MAP(VARCHAR, VARCHAR) |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| body The binary blob response to GetSdk, which contains the generated SDK. | BLOB |
| content_disposition The content-disposition header value in the HTTP response. | VARCHAR |
| content_type The content-type header value in the HTTP response. | VARCHAR |