Show / Hide Table of Contents

Class CfnDeploymentGroup.RevisionLocationProperty

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

Inheritance
object
CfnDeploymentGroup.RevisionLocationProperty
Implements
CfnDeploymentGroup.IRevisionLocationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.CodeDeploy
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDeploymentGroup.RevisionLocationProperty : CfnDeploymentGroup.IRevisionLocationProperty
Syntax (vb)
Public Class CfnDeploymentGroup.RevisionLocationProperty Implements 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

Constructors

RevisionLocationProperty()

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

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.

Constructors

RevisionLocationProperty()

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

public RevisionLocationProperty()
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"
                 }
             };

Properties

GitHubLocation

Information about the location of application artifacts stored in GitHub.

public object? GitHubLocation { get; set; }
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:.

public string? RevisionType { get; set; }
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.

    public object? S3Location { get; set; }
    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

    Implements

    CfnDeploymentGroup.IRevisionLocationProperty
    Back to top Generated by DocFX