typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
31 lines (30 loc) • 1.34 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type Resource_Type = 'AWS::ApiGateway::Resource';
export declare const Resource_Type = "AWS::ApiGateway::Resource";
/**
* Resource Type definition for AWS::ApiGateway::Resource {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html}
*/
export default function Resource(props: Resource_Properties): CfnResource<Resource_Properties>;
/**
* Resource Type definition for AWS::ApiGateway::Resource {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html}
*/
export declare type Resource_Properties = {
ResourceId?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid}
*/
RestApiId: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid}
*/
ParentId: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart}
*/
PathPart: Resolvable<string>;
};