Interface CfnScheduledQueryPropsMixin.ErrorReportConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnScheduledQueryPropsMixin.ErrorReportConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnScheduledQueryPropsMixin
@Stability(Stable)
public static interface CfnScheduledQueryPropsMixin.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.cfnpropertymixins.services.timestream.*;
ErrorReportConfigurationProperty errorReportConfigurationProperty = ErrorReportConfigurationProperty.builder()
.s3Configuration(S3ConfigurationProperty.builder()
.bucketName("bucketName")
.encryptionOption("encryptionOption")
.objectKeyPrefix("objectKeyPrefix")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnScheduledQueryPropsMixin.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
IResolvableorCfnScheduledQueryPropsMixin.S3ConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnScheduledQueryPropsMixin.ErrorReportConfigurationProperty.Builder builder()
-