@Stability(value=Stable)
public static interface CfnScheduledQuery.S3ConfigurationProperty
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.timestream.*;
S3ConfigurationProperty s3ConfigurationProperty = S3ConfigurationProperty.builder()
.bucketName("bucketName")
// the properties below are optional
.encryptionOption("encryptionOption")
.objectKeyPrefix("objectKeyPrefix")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnScheduledQuery.S3ConfigurationProperty.Builder
A builder for
CfnScheduledQuery.S3ConfigurationProperty |
static class |
CfnScheduledQuery.S3ConfigurationProperty.Jsii$Proxy
An implementation for
CfnScheduledQuery.S3ConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnScheduledQuery.S3ConfigurationProperty.Builder |
builder() |
String |
getBucketName()
Name of the S3 bucket under which error reports will be created.
|
default String |
getEncryptionOption()
Encryption at rest options for the error reports.
|
default String |
getObjectKeyPrefix()
Prefix for the error report key.
|
@Stability(value=Stable) @NotNull String getBucketName()
@Stability(value=Stable) @Nullable default String getEncryptionOption()
If no encryption option is specified, Timestream will choose SSE_S3 as default.
@Stability(value=Stable) @Nullable default String getObjectKeyPrefix()
Timestream by default adds the following prefix to the error report path.
@Stability(value=Stable) static CfnScheduledQuery.S3ConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.