Interface CfnScheduledQuery.ErrorReportConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnScheduledQuery.ErrorReportConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnScheduledQuery
@Stability(Stable)
public static interface CfnScheduledQuery.ErrorReportConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration required for error reporting.
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.*;
ErrorReportConfigurationProperty errorReportConfigurationProperty = ErrorReportConfigurationProperty.builder()
.s3Configuration(S3ConfigurationProperty.builder()
.bucketName("bucketName")
// the properties below are optional
.encryptionOption("encryptionOption")
.objectKeyPrefix("objectKeyPrefix")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnScheduledQuery.ErrorReportConfigurationPropertystatic final classAn implementation forCfnScheduledQuery.ErrorReportConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Configuration
The S3 configuration for the error reports.Returns union: either
IResolvableorCfnScheduledQuery.S3ConfigurationProperty- See Also:
-
builder
-