UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

38 lines (37 loc) 1.85 kB
import { CfnResource, Resolvable } from '../../base'; export declare type ModuleDefaultVersion_Type = 'AWS::CloudFormation::ModuleDefaultVersion'; export declare const ModuleDefaultVersion_Type = "AWS::CloudFormation::ModuleDefaultVersion"; export default function ModuleDefaultVersion(props: ModuleDefaultVersion_Properties): CfnResource<ModuleDefaultVersion_Properties>; export declare type ModuleDefaultVersion_Properties = { /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-moduledefaultversion.html#cfn-cloudformation-moduledefaultversion-arn} */ Arn: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-moduledefaultversion.html#cfn-cloudformation-moduledefaultversion-modulename} */ ModuleName?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-moduledefaultversion.html#cfn-cloudformation-moduledefaultversion-versionid} */ VersionId?: Resolvable<string>; } | { /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-moduledefaultversion.html#cfn-cloudformation-moduledefaultversion-arn} */ Arn?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-moduledefaultversion.html#cfn-cloudformation-moduledefaultversion-modulename} */ ModuleName: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-moduledefaultversion.html#cfn-cloudformation-moduledefaultversion-versionid} */ VersionId: Resolvable<string>; };