Interface CfnInferenceExperimentPropsMixin.DataStorageConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInferenceExperimentPropsMixin.DataStorageConfigProperty.Jsii$Proxy
- Enclosing class:
CfnInferenceExperimentPropsMixin
@Stability(Stable)
public static interface CfnInferenceExperimentPropsMixin.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.cfnpropertymixins.services.sagemaker.*;
DataStorageConfigProperty dataStorageConfigProperty = DataStorageConfigProperty.builder()
.contentType(CaptureContentTypeHeaderProperty.builder()
.csvContentTypes(List.of("csvContentTypes"))
.jsonContentTypes(List.of("jsonContentTypes"))
.build())
.destination("destination")
.kmsKey("kmsKey")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnInferenceExperimentPropsMixin.DataStorageConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectConfiguration specifying how to treat different headers.default StringThe Amazon S3 bucket where the inference request and response data is stored.default StringThe 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
-
getContentType
Configuration specifying how to treat different headers.If no headers are specified SageMaker will by default base64 encode when capturing the data.
Returns union: either
IResolvableorCfnInferenceExperimentPropsMixin.CaptureContentTypeHeaderProperty- See Also:
-
getDestination
The Amazon S3 bucket where the inference request and response data is stored.- 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
@Stability(Stable) static CfnInferenceExperimentPropsMixin.DataStorageConfigProperty.Builder builder()
-