Class CfnExportPropsMixin.S3DestinationProperty
Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object keys of a data exports file.
Implements
Inherited Members
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
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
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
Remarks
S3OutputConfigurations
The output configuration for the data export.
public object? S3OutputConfigurations { get; set; }
Property Value
Remarks
S3Prefix
The S3 path prefix you want prepended to the name of your data export.
public string? S3Prefix { get; set; }
Property Value
Remarks
S3Region
The S3 bucket Region.
public string? S3Region { get; set; }