ModelArgs

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());
}
}

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

Constructors

Link copied to clipboard
constructor(apiId: Output<String>? = null, contentType: Output<String>? = null, description: Output<String>? = null, name: Output<String>? = null, schema: Output<String>? = null)

Properties

Link copied to clipboard
val apiId: Output<String>? = null

API identifier.

Link copied to clipboard
val contentType: Output<String>? = null

The content-type for the model, for example, application/json. Must be between 1 and 256 characters in length.

Link copied to clipboard
val description: Output<String>? = null

Description of the model. Must be between 1 and 128 characters in length.

Link copied to clipboard
val name: Output<String>? = null

Name of the model. Must be alphanumeric. Must be between 1 and 128 characters in length.

Link copied to clipboard
val schema: Output<String>? = null

Schema for the model. This should be a JSON schema draft 4 model. Must be less than or equal to 32768 characters in length.

Functions

Link copied to clipboard
open override fun toJava(): ModelArgs