AWS v6.77.1 published on Friday, Apr 18, 2025 by Pulumi
aws.apigateway.getSdk
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = aws.apigateway.getSdk({
    restApiId: exampleAwsApiGatewayStage.restApiId,
    stageName: exampleAwsApiGatewayStage.stageName,
    sdkType: "android",
    parameters: {
        groupId: "example",
        artifactId: "example",
        artifactVersion: "example",
        invokerPackage: "example",
    },
});
import pulumi
import pulumi_aws as aws
example = aws.apigateway.get_sdk(rest_api_id=example_aws_api_gateway_stage["restApiId"],
    stage_name=example_aws_api_gateway_stage["stageName"],
    sdk_type="android",
    parameters={
        "groupId": "example",
        "artifactId": "example",
        "artifactVersion": "example",
        "invokerPackage": "example",
    })
package main
import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/apigateway"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := apigateway.GetSdk(ctx, &apigateway.GetSdkArgs{
			RestApiId: exampleAwsApiGatewayStage.RestApiId,
			StageName: exampleAwsApiGatewayStage.StageName,
			SdkType:   "android",
			Parameters: map[string]interface{}{
				"groupId":         "example",
				"artifactId":      "example",
				"artifactVersion": "example",
				"invokerPackage":  "example",
			},
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() => 
{
    var example = Aws.ApiGateway.GetSdk.Invoke(new()
    {
        RestApiId = exampleAwsApiGatewayStage.RestApiId,
        StageName = exampleAwsApiGatewayStage.StageName,
        SdkType = "android",
        Parameters = 
        {
            { "groupId", "example" },
            { "artifactId", "example" },
            { "artifactVersion", "example" },
            { "invokerPackage", "example" },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.apigateway.ApigatewayFunctions;
import com.pulumi.aws.apigateway.inputs.GetSdkArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var example = ApigatewayFunctions.getSdk(GetSdkArgs.builder()
            .restApiId(exampleAwsApiGatewayStage.restApiId())
            .stageName(exampleAwsApiGatewayStage.stageName())
            .sdkType("android")
            .parameters(Map.ofEntries(
                Map.entry("groupId", "example"),
                Map.entry("artifactId", "example"),
                Map.entry("artifactVersion", "example"),
                Map.entry("invokerPackage", "example")
            ))
            .build());
    }
}
variables:
  example:
    fn::invoke:
      function: aws:apigateway:getSdk
      arguments:
        restApiId: ${exampleAwsApiGatewayStage.restApiId}
        stageName: ${exampleAwsApiGatewayStage.stageName}
        sdkType: android
        parameters:
          groupId: example
          artifactId: example
          artifactVersion: example
          invokerPackage: example
Using getSdk
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getSdk(args: GetSdkArgs, opts?: InvokeOptions): Promise<GetSdkResult>
function getSdkOutput(args: GetSdkOutputArgs, opts?: InvokeOptions): Output<GetSdkResult>def get_sdk(parameters: Optional[Mapping[str, str]] = None,
            rest_api_id: Optional[str] = None,
            sdk_type: Optional[str] = None,
            stage_name: Optional[str] = None,
            opts: Optional[InvokeOptions] = None) -> GetSdkResult
def get_sdk_output(parameters: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
            rest_api_id: Optional[pulumi.Input[str]] = None,
            sdk_type: Optional[pulumi.Input[str]] = None,
            stage_name: Optional[pulumi.Input[str]] = None,
            opts: Optional[InvokeOptions] = None) -> Output[GetSdkResult]func GetSdk(ctx *Context, args *GetSdkArgs, opts ...InvokeOption) (*GetSdkResult, error)
func GetSdkOutput(ctx *Context, args *GetSdkOutputArgs, opts ...InvokeOption) GetSdkResultOutput> Note: This function is named GetSdk in the Go SDK.
public static class GetSdk 
{
    public static Task<GetSdkResult> InvokeAsync(GetSdkArgs args, InvokeOptions? opts = null)
    public static Output<GetSdkResult> Invoke(GetSdkInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetSdkResult> getSdk(GetSdkArgs args, InvokeOptions options)
public static Output<GetSdkResult> getSdk(GetSdkArgs args, InvokeOptions options)
fn::invoke:
  function: aws:apigateway/getSdk:getSdk
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Rest
Api stringId  - Identifier of the associated REST API.
 - Sdk
Type string - Language for the generated SDK. Currently 
java,javascript,android,objectivec(for iOS),swift(for iOS), andrubyare supported. - Stage
Name string - Name of the Stage that will be exported.
 - Parameters Dictionary<string, string>
 - Key-value map of query string parameters 
sdk_typeproperties of the SDK. For SDK Type ofobjectivecorswift, a parameter namedclassPrefixis required. For SDK Type ofandroid, parameters namedgroupId,artifactId,artifactVersion, andinvokerPackageare required. For SDK Type ofjava, parameters namedserviceNameandjavaPackageNameare required. 
- Rest
Api stringId  - Identifier of the associated REST API.
 - Sdk
Type string - Language for the generated SDK. Currently 
java,javascript,android,objectivec(for iOS),swift(for iOS), andrubyare supported. - Stage
Name string - Name of the Stage that will be exported.
 - Parameters map[string]string
 - Key-value map of query string parameters 
sdk_typeproperties of the SDK. For SDK Type ofobjectivecorswift, a parameter namedclassPrefixis required. For SDK Type ofandroid, parameters namedgroupId,artifactId,artifactVersion, andinvokerPackageare required. For SDK Type ofjava, parameters namedserviceNameandjavaPackageNameare required. 
- rest
Api StringId  - Identifier of the associated REST API.
 - sdk
Type String - Language for the generated SDK. Currently 
java,javascript,android,objectivec(for iOS),swift(for iOS), andrubyare supported. - stage
Name String - Name of the Stage that will be exported.
 - parameters Map<String,String>
 - Key-value map of query string parameters 
sdk_typeproperties of the SDK. For SDK Type ofobjectivecorswift, a parameter namedclassPrefixis required. For SDK Type ofandroid, parameters namedgroupId,artifactId,artifactVersion, andinvokerPackageare required. For SDK Type ofjava, parameters namedserviceNameandjavaPackageNameare required. 
- rest
Api stringId  - Identifier of the associated REST API.
 - sdk
Type string - Language for the generated SDK. Currently 
java,javascript,android,objectivec(for iOS),swift(for iOS), andrubyare supported. - stage
Name string - Name of the Stage that will be exported.
 - parameters {[key: string]: string}
 - Key-value map of query string parameters 
sdk_typeproperties of the SDK. For SDK Type ofobjectivecorswift, a parameter namedclassPrefixis required. For SDK Type ofandroid, parameters namedgroupId,artifactId,artifactVersion, andinvokerPackageare required. For SDK Type ofjava, parameters namedserviceNameandjavaPackageNameare required. 
- rest_
api_ strid  - Identifier of the associated REST API.
 - sdk_
type str - Language for the generated SDK. Currently 
java,javascript,android,objectivec(for iOS),swift(for iOS), andrubyare supported. - stage_
name str - Name of the Stage that will be exported.
 - parameters Mapping[str, str]
 - Key-value map of query string parameters 
sdk_typeproperties of the SDK. For SDK Type ofobjectivecorswift, a parameter namedclassPrefixis required. For SDK Type ofandroid, parameters namedgroupId,artifactId,artifactVersion, andinvokerPackageare required. For SDK Type ofjava, parameters namedserviceNameandjavaPackageNameare required. 
- rest
Api StringId  - Identifier of the associated REST API.
 - sdk
Type String - Language for the generated SDK. Currently 
java,javascript,android,objectivec(for iOS),swift(for iOS), andrubyare supported. - stage
Name String - Name of the Stage that will be exported.
 - parameters Map<String>
 - Key-value map of query string parameters 
sdk_typeproperties of the SDK. For SDK Type ofobjectivecorswift, a parameter namedclassPrefixis required. For SDK Type ofandroid, parameters namedgroupId,artifactId,artifactVersion, andinvokerPackageare required. For SDK Type ofjava, parameters namedserviceNameandjavaPackageNameare required. 
getSdk Result
The following output properties are available:
- Body string
 - SDK as a string.
 - Content
Disposition string - Content-disposition header value in the HTTP response.
 - Content
Type string - Content-type header value in the HTTP response.
 - Id string
 - The provider-assigned unique ID for this managed resource.
 - Rest
Api stringId  - Sdk
Type string - Stage
Name string - Parameters Dictionary<string, string>
 
- Body string
 - SDK as a string.
 - Content
Disposition string - Content-disposition header value in the HTTP response.
 - Content
Type string - Content-type header value in the HTTP response.
 - Id string
 - The provider-assigned unique ID for this managed resource.
 - Rest
Api stringId  - Sdk
Type string - Stage
Name string - Parameters map[string]string
 
- body String
 - SDK as a string.
 - content
Disposition String - Content-disposition header value in the HTTP response.
 - content
Type String - Content-type header value in the HTTP response.
 - id String
 - The provider-assigned unique ID for this managed resource.
 - rest
Api StringId  - sdk
Type String - stage
Name String - parameters Map<String,String>
 
- body string
 - SDK as a string.
 - content
Disposition string - Content-disposition header value in the HTTP response.
 - content
Type string - Content-type header value in the HTTP response.
 - id string
 - The provider-assigned unique ID for this managed resource.
 - rest
Api stringId  - sdk
Type string - stage
Name string - parameters {[key: string]: string}
 
- body str
 - SDK as a string.
 - content_
disposition str - Content-disposition header value in the HTTP response.
 - content_
type str - Content-type header value in the HTTP response.
 - id str
 - The provider-assigned unique ID for this managed resource.
 - rest_
api_ strid  - sdk_
type str - stage_
name str - parameters Mapping[str, str]
 
- body String
 - SDK as a string.
 - content
Disposition String - Content-disposition header value in the HTTP response.
 - content
Type String - Content-type header value in the HTTP response.
 - id String
 - The provider-assigned unique ID for this managed resource.
 - rest
Api StringId  - sdk
Type String - stage
Name String - parameters Map<String>
 
Package Details
- Repository
 - AWS Classic pulumi/pulumi-aws
 - License
 - Apache-2.0
 - Notes
 - This Pulumi package is based on the 
awsTerraform Provider.