Show / Hide Table of Contents

Interface CfnPipeline.IArtifactStoreMapProperty

A mapping of artifactStore objects and their corresponding AWS Regions.

Namespace: Amazon.CDK.AWS.CodePipeline
Assembly: Amazon.CDK.AWS.CodePipeline.dll
Syntax (csharp)
public interface IArtifactStoreMapProperty
Syntax (vb)
Public Interface IArtifactStoreMapProperty
Remarks

There must be an artifact store for the pipeline Region and for each cross-region action in the pipeline.

You must include either artifactStore or artifactStores in your pipeline, but you cannot use both. If you create a cross-region action in your pipeline, you must use artifactStores .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstoremap.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CodePipeline;

ArtifactStoreMapProperty artifactStoreMapProperty = new ArtifactStoreMapProperty {
    ArtifactStore = new ArtifactStoreProperty {
        Location = "location",
        Type = "type",

        // the properties below are optional
        EncryptionKey = new EncryptionKeyProperty {
            Id = "id",
            Type = "type"
        }
    },
    Region = "region"
};

Synopsis

Properties

ArtifactStore

Represents information about the S3 bucket where artifacts are stored for the pipeline.

Region

The action declaration's AWS Region, such as us-east-1.

Properties

ArtifactStore

Represents information about the S3 bucket where artifacts are stored for the pipeline.

object ArtifactStore { get; }
Property Value

System.Object

Remarks

You must include either artifactStore or artifactStores in your pipeline, but you cannot use both. If you create a cross-region action in your pipeline, you must use artifactStores .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstoremap.html#cfn-codepipeline-pipeline-artifactstoremap-artifactstore

Region

The action declaration's AWS Region, such as us-east-1.

string Region { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstoremap.html#cfn-codepipeline-pipeline-artifactstoremap-region

Back to top Generated by DocFX