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: