Show / Hide Table of Contents

Class CfnDeploymentGroupPropsMixin.S3LocationProperty

S3Location is a property of the CodeDeploy DeploymentGroup Revision property that specifies the location of an application revision that is stored in Amazon Simple Storage Service ( Amazon S3 ).

Inheritance
object
CfnDeploymentGroupPropsMixin.S3LocationProperty
Implements
CfnDeploymentGroupPropsMixin.IS3LocationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.CodeDeploy
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDeploymentGroupPropsMixin.S3LocationProperty : CfnDeploymentGroupPropsMixin.IS3LocationProperty
Syntax (vb)
Public Class CfnDeploymentGroupPropsMixin.S3LocationProperty Implements CfnDeploymentGroupPropsMixin.IS3LocationProperty
Remarks

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

             var s3LocationProperty = new S3LocationProperty {
                 Bucket = "bucket",
                 BundleType = "bundleType",
                 ETag = "eTag",
                 Key = "key",
                 Version = "version"
             };

Synopsis

Constructors

S3LocationProperty()

S3Location is a property of the CodeDeploy DeploymentGroup Revision property that specifies the location of an application revision that is stored in Amazon Simple Storage Service ( Amazon S3 ).

Properties

Bucket

The name of the Amazon S3 bucket where the application revision is stored.

BundleType

The file type of the application revision. Must be one of the following:.

ETag

The ETag of the Amazon S3 object that represents the bundled artifacts for the application revision.

Key

The name of the Amazon S3 object that represents the bundled artifacts for the application revision.

Version

A specific version of the Amazon S3 object that represents the bundled artifacts for the application revision.

Constructors

S3LocationProperty()

S3Location is a property of the CodeDeploy DeploymentGroup Revision property that specifies the location of an application revision that is stored in Amazon Simple Storage Service ( Amazon S3 ).

public S3LocationProperty()
Remarks

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

             var s3LocationProperty = new S3LocationProperty {
                 Bucket = "bucket",
                 BundleType = "bundleType",
                 ETag = "eTag",
                 Key = "key",
                 Version = "version"
             };

Properties

Bucket

The name of the Amazon S3 bucket where the application revision is stored.

public string? Bucket { get; set; }
Property Value

string

Remarks

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

BundleType

The file type of the application revision. Must be one of the following:.

public string? BundleType { get; set; }
Property Value

string

Remarks

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

    ETag

    The ETag of the Amazon S3 object that represents the bundled artifacts for the application revision.

    public string? ETag { get; set; }
    Property Value

    string

    Remarks

    If the ETag is not specified as an input parameter, ETag validation of the object is skipped.

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

    Key

    The name of the Amazon S3 object that represents the bundled artifacts for the application revision.

    public string? Key { get; set; }
    Property Value

    string

    Remarks

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

    Version

    A specific version of the Amazon S3 object that represents the bundled artifacts for the application revision.

    public string? Version { get; set; }
    Property Value

    string

    Remarks

    If the version is not specified, the system uses the most recent version by default.

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

    Implements

    CfnDeploymentGroupPropsMixin.IS3LocationProperty
    Back to top Generated by DocFX