Show / Hide Table of Contents

Interface CfnDeploymentGroup.IRevisionLocationProperty

RevisionLocation is a property that defines the location of the CodeDeploy application revision to deploy.

Namespace: Amazon.CDK.AWS.CodeDeploy
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDeploymentGroup.IRevisionLocationProperty
Syntax (vb)
Public Interface CfnDeploymentGroup.IRevisionLocationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-revisionlocation.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.CodeDeploy;

             var revisionLocationProperty = new RevisionLocationProperty {
                 GitHubLocation = new GitHubLocationProperty {
                     CommitId = "commitId",
                     Repository = "repository"
                 },
                 RevisionType = "revisionType",
                 S3Location = new S3LocationProperty {
                     Bucket = "bucket",
                     Key = "key",

                     // the properties below are optional
                     BundleType = "bundleType",
                     ETag = "eTag",
                     Version = "version"
                 }
             };

Synopsis

Properties

GitHubLocation

Information about the location of application artifacts stored in GitHub.

RevisionType

The type of application revision:.

S3Location

Information about the location of a revision stored in Amazon S3.

Properties

GitHubLocation

Information about the location of application artifacts stored in GitHub.

object? GitHubLocation { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-revisionlocation.html#cfn-codedeploy-deploymentgroup-revisionlocation-githublocation

Type union: either IResolvable or CfnDeploymentGroup.IGitHubLocationProperty

RevisionType

The type of application revision:.

string? RevisionType { get; }
Property Value

string

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-revisionlocation.html#cfn-codedeploy-deploymentgroup-revisionlocation-revisiontype

    S3Location

    Information about the location of a revision stored in Amazon S3.

    object? S3Location { get; }
    Property Value

    object

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-revisionlocation.html#cfn-codedeploy-deploymentgroup-revisionlocation-s3location

    Type union: either IResolvable or CfnDeploymentGroup.IS3LocationProperty

    Back to top Generated by DocFX