import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * The AWS::CodePipeline::Pipeline resource creates a CodePipeline pipeline that describes how software changes go through a release process. */ export declare class Pipeline extends pulumi.CustomResource { /** * Get an existing Pipeline resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): Pipeline; /** * Returns true if the given object is an instance of Pipeline. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Pipeline; /** * The S3 bucket where artifacts for the pipeline are stored. */ readonly artifactStore: pulumi.Output; /** * A mapping of artifactStore objects and their corresponding AWS Regions. There must be an artifact store for the pipeline Region and for each cross-region action in the pipeline. */ readonly artifactStores: pulumi.Output; /** * Represents the input of a DisableStageTransition action. */ readonly disableInboundStageTransitions: pulumi.Output; /** * The method that the pipeline will use to handle multiple executions. The default mode is SUPERSEDED. */ readonly executionMode: pulumi.Output; /** * The name of the pipeline. */ readonly name: pulumi.Output; /** * CodePipeline provides the following pipeline types, which differ in characteristics and price, so that you can tailor your pipeline features and cost to the needs of your applications. */ readonly pipelineType: pulumi.Output; /** * Indicates whether to rerun the CodePipeline pipeline after you update it. */ readonly restartExecutionOnUpdate: pulumi.Output; /** * The Amazon Resource Name (ARN) for CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn */ readonly roleArn: pulumi.Output; /** * Represents information about a stage and its definition. */ readonly stages: pulumi.Output; /** * Specifies the tags applied to the pipeline. */ readonly tags: pulumi.Output; /** * The trigger configuration specifying a type of event, such as Git tags, that starts the pipeline. */ readonly triggers: pulumi.Output; /** * A list that defines the pipeline variables for a pipeline resource. Variable names can have alphanumeric and underscore characters, and the values must match [A-Za-z0-9@\-_]+. */ readonly variables: pulumi.Output; /** * The version of the pipeline. */ readonly version: pulumi.Output; /** * Create a Pipeline resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: PipelineArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Pipeline resource. */ export interface PipelineArgs { /** * The S3 bucket where artifacts for the pipeline are stored. */ artifactStore?: pulumi.Input; /** * A mapping of artifactStore objects and their corresponding AWS Regions. There must be an artifact store for the pipeline Region and for each cross-region action in the pipeline. */ artifactStores?: pulumi.Input[]>; /** * Represents the input of a DisableStageTransition action. */ disableInboundStageTransitions?: pulumi.Input[]>; /** * The method that the pipeline will use to handle multiple executions. The default mode is SUPERSEDED. */ executionMode?: pulumi.Input; /** * The name of the pipeline. */ name?: pulumi.Input; /** * CodePipeline provides the following pipeline types, which differ in characteristics and price, so that you can tailor your pipeline features and cost to the needs of your applications. */ pipelineType?: pulumi.Input; /** * Indicates whether to rerun the CodePipeline pipeline after you update it. */ restartExecutionOnUpdate?: pulumi.Input; /** * The Amazon Resource Name (ARN) for CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn */ roleArn: pulumi.Input; /** * Represents information about a stage and its definition. */ stages: pulumi.Input[]>; /** * Specifies the tags applied to the pipeline. */ tags?: pulumi.Input[]>; /** * The trigger configuration specifying a type of event, such as Git tags, that starts the pipeline. */ triggers?: pulumi.Input[]>; /** * A list that defines the pipeline variables for a pipeline resource. Variable names can have alphanumeric and underscore characters, and the values must match [A-Za-z0-9@\-_]+. */ variables?: pulumi.Input[]>; }