Try AWS Native preview for resources not in the classic version.
aws.apigateway.Model
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Provides a Model for a REST API Gateway.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const myDemoAPI = new aws.apigateway.RestApi("MyDemoAPI", {
name: "MyDemoAPI",
description: "This is my API for demonstration purposes",
});
const myDemoModel = new aws.apigateway.Model("MyDemoModel", {
restApi: myDemoAPI.id,
name: "user",
description: "a JSON schema",
contentType: "application/json",
schema: JSON.stringify({
type: "object",
}),
});
import pulumi
import json
import pulumi_aws as aws
my_demo_api = aws.apigateway.RestApi("MyDemoAPI",
name="MyDemoAPI",
description="This is my API for demonstration purposes")
my_demo_model = aws.apigateway.Model("MyDemoModel",
rest_api=my_demo_api.id,
name="user",
description="a JSON schema",
content_type="application/json",
schema=json.dumps({
"type": "object",
}))
package main
import (
"encoding/json"
"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 {
myDemoAPI, err := apigateway.NewRestApi(ctx, "MyDemoAPI", &apigateway.RestApiArgs{
Name: pulumi.String("MyDemoAPI"),
Description: pulumi.String("This is my API for demonstration purposes"),
})
if err != nil {
return err
}
tmpJSON0, err := json.Marshal(map[string]interface{}{
"type": "object",
})
if err != nil {
return err
}
json0 := string(tmpJSON0)
_, err = apigateway.NewModel(ctx, "MyDemoModel", &apigateway.ModelArgs{
RestApi: myDemoAPI.ID(),
Name: pulumi.String("user"),
Description: pulumi.String("a JSON schema"),
ContentType: pulumi.String("application/json"),
Schema: pulumi.String(json0),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var myDemoAPI = new Aws.ApiGateway.RestApi("MyDemoAPI", new()
{
Name = "MyDemoAPI",
Description = "This is my API for demonstration purposes",
});
var myDemoModel = new Aws.ApiGateway.Model("MyDemoModel", new()
{
RestApi = myDemoAPI.Id,
Name = "user",
Description = "a JSON schema",
ContentType = "application/json",
Schema = JsonSerializer.Serialize(new Dictionary<string, object?>
{
["type"] = "object",
}),
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.apigateway.RestApi;
import com.pulumi.aws.apigateway.RestApiArgs;
import com.pulumi.aws.apigateway.Model;
import com.pulumi.aws.apigateway.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 myDemoAPI = new RestApi("myDemoAPI", RestApiArgs.builder()
.name("MyDemoAPI")
.description("This is my API for demonstration purposes")
.build());
var myDemoModel = new Model("myDemoModel", ModelArgs.builder()
.restApi(myDemoAPI.id())
.name("user")
.description("a JSON schema")
.contentType("application/json")
.schema(serializeJson(
jsonObject(
jsonProperty("type", "object")
)))
.build());
}
}
resources:
myDemoAPI:
type: aws:apigateway:RestApi
name: MyDemoAPI
properties:
name: MyDemoAPI
description: This is my API for demonstration purposes
myDemoModel:
type: aws:apigateway:Model
name: MyDemoModel
properties:
restApi: ${myDemoAPI.id}
name: user
description: a JSON schema
contentType: application/json
schema:
fn::toJSON:
type: object
Create Model Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Model(name: string, args: ModelArgs, opts?: CustomResourceOptions);
@overload
def Model(resource_name: str,
args: ModelArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Model(resource_name: str,
opts: Optional[ResourceOptions] = None,
content_type: Optional[str] = None,
rest_api: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
schema: Optional[str] = None)
func NewModel(ctx *Context, name string, args ModelArgs, opts ...ResourceOption) (*Model, error)
public Model(string name, ModelArgs args, CustomResourceOptions? opts = null)
type: aws:apigateway:Model
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ModelArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ModelArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ModelArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ModelArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ModelArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var modelResource = new Aws.ApiGateway.Model("modelResource", new()
{
ContentType = "string",
RestApi = "string",
Description = "string",
Name = "string",
Schema = "string",
});
example, err := apigateway.NewModel(ctx, "modelResource", &apigateway.ModelArgs{
ContentType: pulumi.String("string"),
RestApi: pulumi.Any("string"),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
Schema: pulumi.String("string"),
})
var modelResource = new Model("modelResource", ModelArgs.builder()
.contentType("string")
.restApi("string")
.description("string")
.name("string")
.schema("string")
.build());
model_resource = aws.apigateway.Model("modelResource",
content_type="string",
rest_api="string",
description="string",
name="string",
schema="string")
const modelResource = new aws.apigateway.Model("modelResource", {
contentType: "string",
restApi: "string",
description: "string",
name: "string",
schema: "string",
});
type: aws:apigateway:Model
properties:
contentType: string
description: string
name: string
restApi: string
schema: string
Model Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Model resource accepts the following input properties:
- Content
Type string - Content type of the model
- Rest
Api string | string - ID of the associated REST API
- Description string
- Description of the model
- Name string
- Name of the model
- Schema string
- Schema of the model in a JSON form
- Content
Type string - Content type of the model
- Rest
Api string | string - ID of the associated REST API
- Description string
- Description of the model
- Name string
- Name of the model
- Schema string
- Schema of the model in a JSON form
- content
Type String - Content type of the model
- rest
Api String | String - ID of the associated REST API
- description String
- Description of the model
- name String
- Name of the model
- schema String
- Schema of the model in a JSON form
- content
Type string - Content type of the model
- rest
Api string | RestApi - ID of the associated REST API
- description string
- Description of the model
- name string
- Name of the model
- schema string
- Schema of the model in a JSON form
- content_
type str - Content type of the model
- rest_
api str | str - ID of the associated REST API
- description str
- Description of the model
- name str
- Name of the model
- schema str
- Schema of the model in a JSON form
- content
Type String - Content type of the model
- rest
Api String | - ID of the associated REST API
- description String
- Description of the model
- name String
- Name of the model
- schema String
- Schema of the model in a JSON form
Outputs
All input properties are implicitly available as output properties. Additionally, the Model resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Model Resource
Get an existing Model resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ModelState, opts?: CustomResourceOptions): Model
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
content_type: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
rest_api: Optional[str] = None,
schema: Optional[str] = None) -> Model
func GetModel(ctx *Context, name string, id IDInput, state *ModelState, opts ...ResourceOption) (*Model, error)
public static Model Get(string name, Input<string> id, ModelState? state, CustomResourceOptions? opts = null)
public static Model get(String name, Output<String> id, ModelState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Content
Type string - Content type of the model
- Description string
- Description of the model
- Name string
- Name of the model
- Rest
Api string | string - ID of the associated REST API
- Schema string
- Schema of the model in a JSON form
- Content
Type string - Content type of the model
- Description string
- Description of the model
- Name string
- Name of the model
- Rest
Api string | string - ID of the associated REST API
- Schema string
- Schema of the model in a JSON form
- content
Type String - Content type of the model
- description String
- Description of the model
- name String
- Name of the model
- rest
Api String | String - ID of the associated REST API
- schema String
- Schema of the model in a JSON form
- content
Type string - Content type of the model
- description string
- Description of the model
- name string
- Name of the model
- rest
Api string | RestApi - ID of the associated REST API
- schema string
- Schema of the model in a JSON form
- content_
type str - Content type of the model
- description str
- Description of the model
- name str
- Name of the model
- rest_
api str | str - ID of the associated REST API
- schema str
- Schema of the model in a JSON form
- content
Type String - Content type of the model
- description String
- Description of the model
- name String
- Name of the model
- rest
Api String | - ID of the associated REST API
- schema String
- Schema of the model in a JSON form
Import
Using pulumi import
, import aws_api_gateway_model
using REST-API-ID/NAME
. For example:
$ pulumi import aws:apigateway/model:Model example 12345abcde/example
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.