Show / Hide Table of Contents

Interface CfnDeploymentGroupPropsMixin.IS3LocationProperty

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 ).

Namespace: Amazon.CDK.Mixins.Preview.AWS.CodeDeploy.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnDeploymentGroupPropsMixin.IS3LocationProperty
Syntax (vb)
Public Interface 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.Mixins.Preview.AWS.CodeDeploy.Mixins;

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

Synopsis

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.

Properties

Bucket

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

string? Bucket { get; }
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:.

string? BundleType { get; }
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.

    string? ETag { get; }
    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.

    string? Key { get; }
    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.

    string? Version { get; }
    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

    Back to top Generated by DocFX