Interface CfnMonitor.InternetMeasurementsLogDeliveryProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMonitor.InternetMeasurementsLogDeliveryProperty.Jsii$Proxy
- Enclosing class:
- CfnMonitor
@Stability(Stable)
public static interface CfnMonitor.InternetMeasurementsLogDeliveryProperty
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.internetmonitor.*;
InternetMeasurementsLogDeliveryProperty internetMeasurementsLogDeliveryProperty = InternetMeasurementsLogDeliveryProperty.builder()
.s3Config(S3ConfigProperty.builder()
.bucketName("bucketName")
.bucketPrefix("bucketPrefix")
.logDeliveryStatus("logDeliveryStatus")
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMonitor.InternetMeasurementsLogDeliveryPropertystatic final classAn implementation forCfnMonitor.InternetMeasurementsLogDeliveryProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Config
The configuration information 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
ENABLEDif you choose to deliver internet measurements to an S3 bucket, andDISABLEDotherwise. -
builder
-