Interface CfnInferenceExperiment.DataStorageConfigProperty

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

@Stability(Stable) public static interface CfnInferenceExperiment.DataStorageConfigProperty extends software.amazon.jsii.JsiiSerializable
The Amazon S3 location and configuration for storing inference request and response data.

This is an optional parameter that you can use for data capture. For more information, see Capture data .

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.*;
 DataStorageConfigProperty dataStorageConfigProperty = DataStorageConfigProperty.builder()
         .destination("destination")
         // the properties below are optional
         .contentType(CaptureContentTypeHeaderProperty.builder()
                 .csvContentTypes(List.of("csvContentTypes"))
                 .jsonContentTypes(List.of("jsonContentTypes"))
                 .build())
         .kmsKey("kmsKey")
         .build();
 

See Also: