@altostra/core
Version:
Core library for shared types and logic
12 lines (11 loc) • 395 B
TypeScript
import type { AwsResourceCommon } from "../common";
import type { CloudFormationString } from "../IntrinsicFunctions";
export declare type ResourceType = 'AWS::ApiGateway::Resource';
export interface Resource extends AwsResourceCommon {
Type: ResourceType;
Properties: {
ParentId: CloudFormationString;
PathPart: string;
RestApiId: CloudFormationString;
};
}