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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnInferenceExperiment.DataStorageConfigProperty
static final class
An implementation forCfnInferenceExperiment.DataStorageConfigProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Configuration specifying how to treat different headers.The Amazon S3 bucket where the inference request and response data is stored.default String
The AWS Key Management Service key that Amazon SageMaker uses to encrypt captured data at rest using Amazon S3 server-side encryption.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestination
The Amazon S3 bucket where the inference request and response data is stored.- See Also:
-
getContentType
Configuration specifying how to treat different headers.If no headers are specified SageMaker will by default base64 encode when capturing the data.
- See Also:
-
getKmsKey
The AWS Key Management Service key that Amazon SageMaker uses to encrypt captured data at rest using Amazon S3 server-side encryption.- See Also:
-
builder
-