Interface CfnEndpointConfig.DataCaptureConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEndpointConfig.DataCaptureConfigProperty.Jsii$Proxy
Enclosing class:
CfnEndpointConfig

@Stability(Stable) public static interface CfnEndpointConfig.DataCaptureConfigProperty extends software.amazon.jsii.JsiiSerializable
Specifies the configuration of your endpoint for model monitor data capture.

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.sagemaker.*;
 DataCaptureConfigProperty dataCaptureConfigProperty = DataCaptureConfigProperty.builder()
         .captureOptions(List.of(CaptureOptionProperty.builder()
                 .captureMode("captureMode")
                 .build()))
         .destinationS3Uri("destinationS3Uri")
         .initialSamplingPercentage(123)
         // the properties below are optional
         .captureContentTypeHeader(CaptureContentTypeHeaderProperty.builder()
                 .csvContentTypes(List.of("csvContentTypes"))
                 .jsonContentTypes(List.of("jsonContentTypes"))
                 .build())
         .enableCapture(false)
         .kmsKeyId("kmsKeyId")
         .build();
 

See Also: