Class CfnExport.DestinationConfigurationsProperty
The destinations used for data exports.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.BCMDataExports
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnExport.DestinationConfigurationsProperty : CfnExport.IDestinationConfigurationsProperty
Syntax (vb)
Public Class CfnExport.DestinationConfigurationsProperty Implements CfnExport.IDestinationConfigurationsProperty
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.AWS.BCMDataExports;
var destinationConfigurationsProperty = new DestinationConfigurationsProperty {
S3Destination = new S3DestinationProperty {
S3Bucket = "s3Bucket",
S3OutputConfigurations = new S3OutputConfigurationsProperty {
Compression = "compression",
Format = "format",
OutputType = "outputType",
Overwrite = "overwrite"
},
S3Prefix = "s3Prefix",
S3Region = "s3Region"
}
};
Synopsis
Constructors
| DestinationConfigurationsProperty() | The destinations used for data exports. |
Properties
| S3Destination | An object that describes the destination of the data exports file. |
Constructors
DestinationConfigurationsProperty()
The destinations used for data exports.
public DestinationConfigurationsProperty()
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.AWS.BCMDataExports;
var destinationConfigurationsProperty = new DestinationConfigurationsProperty {
S3Destination = new S3DestinationProperty {
S3Bucket = "s3Bucket",
S3OutputConfigurations = new S3OutputConfigurationsProperty {
Compression = "compression",
Format = "format",
OutputType = "outputType",
Overwrite = "overwrite"
},
S3Prefix = "s3Prefix",
S3Region = "s3Region"
}
};
Properties
S3Destination
An object that describes the destination of the data exports file.
public object S3Destination { get; set; }