@Stability(value=Stable)
public static interface CfnBucket.DataExportProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.s3.*;
DataExportProperty dataExportProperty = DataExportProperty.builder()
.destination(DestinationProperty.builder()
.bucketArn("bucketArn")
.format("format")
// the properties below are optional
.bucketAccountId("bucketAccountId")
.prefix("prefix")
.build())
.outputSchemaVersion("outputSchemaVersion")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnBucket.DataExportProperty.Builder
A builder for
CfnBucket.DataExportProperty |
static class |
CfnBucket.DataExportProperty.Jsii$Proxy
An implementation for
CfnBucket.DataExportProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnBucket.DataExportProperty.Builder |
builder() |
Object |
getDestination()
The place to store the data for an analysis.
|
String |
getOutputSchemaVersion()
The version of the output schema to use when exporting data.
|
@Stability(value=Stable) @NotNull Object getDestination()
@Stability(value=Stable) @NotNull String getOutputSchemaVersion()
Must be V_1 .
@Stability(value=Stable) static CfnBucket.DataExportProperty.Builder builder()
Copyright © 2022. All rights reserved.