Interface CfnMonitor.S3ConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMonitor.S3ConfigProperty.Jsii$Proxy
- Enclosing class:
CfnMonitor
@Stability(Stable)
public static interface CfnMonitor.S3ConfigProperty
extends software.amazon.jsii.JsiiSerializable
The configuration for publishing Amazon CloudWatch Internet Monitor internet measurements to Amazon S3.
The configuration includes the bucket name and (optionally) bucket prefix for the S3 bucket to store the measurements, and the delivery status. The delivery status is ENABLED if you choose to deliver internet measurements to S3 logs, and DISABLED otherwise.
The measurements are also published to Amazon CloudWatch Logs.
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.internetmonitor.*;
S3ConfigProperty s3ConfigProperty = S3ConfigProperty.builder()
.bucketName("bucketName")
.bucketPrefix("bucketPrefix")
.logDeliveryStatus("logDeliveryStatus")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMonitor.S3ConfigPropertystatic final classAn implementation forCfnMonitor.S3ConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe Amazon S3 bucket name for internet measurements publishing.default StringAn optional Amazon S3 bucket prefix for internet measurements publishing.default StringThe status of publishing Internet Monitor internet measurements to an Amazon S3 bucket.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketName
The Amazon S3 bucket name for internet measurements publishing.- See Also:
-
getBucketPrefix
An optional Amazon S3 bucket prefix for internet measurements publishing.- See Also:
-
getLogDeliveryStatus
The status of publishing Internet Monitor internet measurements to an Amazon S3 bucket.The delivery status is
ENABLEDif you choose to deliver internet measurements to an S3 bucket, andDISABLEDotherwise.- See Also:
-
builder
-