Show / Hide Table of Contents

Interface CfnDeploymentGroup.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.AWS.CodeDeploy
Assembly: Amazon.CDK.AWS.CodeDeploy.dll
Syntax (csharp)
public interface IS3LocationProperty
Syntax (vb)
Public Interface IS3LocationProperty
Remarks

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

var s3LocationProperty = new S3LocationProperty {
    Bucket = "bucket",
    Key = "key",

    // the properties below are optional
    BundleType = "bundleType",
    ETag = "eTag",
    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

System.String

Remarks

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

BundleType

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

virtual string BundleType { get; }
Property Value

System.String

Remarks

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

    ETag

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

    virtual string ETag { get; }
    Property Value

    System.String

    Remarks

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

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

    Key

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

    string Key { get; }
    Property Value

    System.String

    Remarks

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

    Version

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

    virtual string Version { get; }
    Property Value

    System.String

    Remarks

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

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value

    Back to top Generated by DocFX