UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

45 lines (44 loc) 2.05 kB
import { CfnResource, Resolvable } from '../../base'; export declare type Connection_Type = 'AWS::CodeStarConnections::Connection'; export declare const Connection_Type = "AWS::CodeStarConnections::Connection"; /** * Schema for AWS::CodeStarConnections::Connection resource which can be * used to connect external source providers with AWS CodePipeline {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html} */ export default function Connection(props: Connection_Properties): CfnResource<Connection_Properties>; /** * Schema for AWS::CodeStarConnections::Connection resource which can be * used to connect external source providers with AWS CodePipeline {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html} */ export declare type Connection_Properties = { ConnectionArn?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-connectionname} */ ConnectionName: Resolvable<string>; ConnectionStatus?: Resolvable<string>; OwnerAccountId?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-providertype} */ ProviderType?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-hostarn} */ HostArn?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html#cfn-codestarconnections-connection-tags} */ Tags?: Tag[]; }; export declare type Tag = { Key: Resolvable<string>; Value: Resolvable<string>; [k: string]: unknown; };