Show / Hide Table of Contents

Class CfnExportPropsMixin.S3DestinationProperty

Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object keys of a data exports file.

Inheritance
object
CfnExportPropsMixin.S3DestinationProperty
Implements
CfnExportPropsMixin.IS3DestinationProperty
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.BCMDataExports
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnExportPropsMixin.S3DestinationProperty : CfnExportPropsMixin.IS3DestinationProperty
Syntax (vb)
Public Class CfnExportPropsMixin.S3DestinationProperty Implements CfnExportPropsMixin.IS3DestinationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bcmdataexports-export-s3destination.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.BCMDataExports;

             var s3DestinationProperty = new S3DestinationProperty {
                 S3Bucket = "s3Bucket",
                 S3OutputConfigurations = new S3OutputConfigurationsProperty {
                     Compression = "compression",
                     Format = "format",
                     OutputType = "outputType",
                     Overwrite = "overwrite"
                 },
                 S3Prefix = "s3Prefix",
                 S3Region = "s3Region"
             };

Synopsis

Constructors

S3DestinationProperty()

Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object keys of a data exports file.

Properties

S3Bucket

The name of the Amazon S3 bucket used as the destination of a data export file.

S3OutputConfigurations

The output configuration for the data export.

S3Prefix

The S3 path prefix you want prepended to the name of your data export.

S3Region

The S3 bucket Region.

Constructors

S3DestinationProperty()

Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object keys of a data exports file.

public S3DestinationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bcmdataexports-export-s3destination.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.BCMDataExports;

             var s3DestinationProperty = new S3DestinationProperty {
                 S3Bucket = "s3Bucket",
                 S3OutputConfigurations = new S3OutputConfigurationsProperty {
                     Compression = "compression",
                     Format = "format",
                     OutputType = "outputType",
                     Overwrite = "overwrite"
                 },
                 S3Prefix = "s3Prefix",
                 S3Region = "s3Region"
             };

Properties

S3Bucket

The name of the Amazon S3 bucket used as the destination of a data export file.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bcmdataexports-export-s3destination.html#cfn-bcmdataexports-export-s3destination-s3bucket

S3OutputConfigurations

The output configuration for the data export.

public object? S3OutputConfigurations { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bcmdataexports-export-s3destination.html#cfn-bcmdataexports-export-s3destination-s3outputconfigurations

Type union: either IResolvable or CfnExportPropsMixin.IS3OutputConfigurationsProperty

S3Prefix

The S3 path prefix you want prepended to the name of your data export.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bcmdataexports-export-s3destination.html#cfn-bcmdataexports-export-s3destination-s3prefix

S3Region

The S3 bucket Region.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bcmdataexports-export-s3destination.html#cfn-bcmdataexports-export-s3destination-s3region

Implements

CfnExportPropsMixin.IS3DestinationProperty
Back to top Generated by DocFX