typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
42 lines (41 loc) • 1.69 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type Model_Type = 'AWS::ApiGateway::Model';
export declare const Model_Type = "AWS::ApiGateway::Model";
/**
* Resource Type definition for AWS::ApiGateway::Model {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html}
*/
export default function Model(props: Model_Properties): CfnResource<Model_Properties>;
/**
* Resource Type definition for AWS::ApiGateway::Model {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html}
*/
export declare type Model_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype}
*/
ContentType?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description}
*/
Description?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name}
*/
Name?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid}
*/
RestApiId: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema}
*/
Schema?: {
[k: string]: unknown;
} | Resolvable<string>;
};