Model Args
data class ModelArgs(val apiId: Output<String>? = null, val contentType: Output<String>? = null, val description: Output<String>? = null, val name: Output<String>? = null, val schema: Output<String>? = null) : ConvertibleToJava<ModelArgs>
Manages an Amazon API Gateway Version 2 model.
Example Usage
Basic
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.apigatewayv2.Model;
import com.pulumi.aws.apigatewayv2.ModelArgs;
import static com.pulumi.codegen.internal.Serialization.*;
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) {
var example = new Model("example", ModelArgs.builder()
.apiId(aws_apigatewayv2_api.example().id())
.contentType("application/json")
.schema(serializeJson(
jsonObject(
jsonProperty("$schema", "http://json-schema.org/draft-04/schema#"),
jsonProperty("title", "ExampleModel"),
jsonProperty("type", "object"),
jsonProperty("properties", jsonObject(
jsonProperty("id", jsonObject(
jsonProperty("type", "string")
))
))
)))
.build());
}
}
Content copied to clipboard
Import
aws_apigatewayv2_model
can be imported by using the API identifier and model identifier, e.g.,
$ pulumi import aws:apigatewayv2/model:Model example aabbccddee/1122334
Content copied to clipboard
Constructors
Properties
Link copied to clipboard
The content-type for the model, for example, application/json
. Must be between 1 and 256 characters in length.
Link copied to clipboard
Description of the model. Must be between 1 and 128 characters in length.
Link copied to clipboard
Schema for the model. This should be a JSON schema draft 4 model. Must be less than or equal to 32768 characters in length.