UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

47 lines (46 loc) 1.94 kB
import { CfnResource, Resolvable } from '../../base'; export declare type Application_Type = 'AWS::AppConfig::Application'; export declare const Application_Type = "AWS::AppConfig::Application"; /** * Resource Type definition for AWS::AppConfig::Application {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html} */ export default function Application(props: Application_Properties): CfnResource<Application_Properties>; /** * Resource Type definition for AWS::AppConfig::Application {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html} */ export declare type Application_Properties = { /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html#cfn-appconfig-application-description} */ Description?: Resolvable<string>; Id?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html#cfn-appconfig-application-tags} */ Tags?: Tags[]; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html#cfn-appconfig-application-name} */ Name: Resolvable<string>; }; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-application-tags.html} */ export declare type Tags = { /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-application-tags.html#cfn-appconfig-application-tags-value} */ Value?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-application-tags.html#cfn-appconfig-application-tags-key} */ Key?: Resolvable<string>; };