This Terraform template retrieves an SDK for an AWS API Gateway stage configured for an Android application.

Terraform Template

data "aws_api_gateway_sdk" "example" {

  parameters = {
    artifactId = "example"
    artifactVersion = "example"
    groupId = "example"
    invokerPackage = "example"
  }
  rest_api_id = "aws_api_gateway_stage.example.rest_api_id"
  sdk_type = "android"
  stage_name = "aws_api_gateway_stage.example.stage_name"
}