Interface CfnEndpointConfig.CaptureContentTypeHeaderProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEndpointConfig.CaptureContentTypeHeaderProperty.Jsii$Proxy
- Enclosing class:
CfnEndpointConfig
@Stability(Stable)
public static interface CfnEndpointConfig.CaptureContentTypeHeaderProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the JSON and CSV content types of the data that the endpoint captures.
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.*;
CaptureContentTypeHeaderProperty captureContentTypeHeaderProperty = CaptureContentTypeHeaderProperty.builder()
.csvContentTypes(List.of("csvContentTypes"))
.jsonContentTypes(List.of("jsonContentTypes"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEndpointConfig.CaptureContentTypeHeaderPropertystatic final classAn implementation forCfnEndpointConfig.CaptureContentTypeHeaderProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()A list of the CSV content types of the data that the endpoint captures.A list of the JSON content types of the data that the endpoint captures.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCsvContentTypes
A list of the CSV content types of the data that the endpoint captures.For the endpoint to capture the data, you must also specify the content type when you invoke the endpoint.
- See Also:
-
getJsonContentTypes
A list of the JSON content types of the data that the endpoint captures.For the endpoint to capture the data, you must also specify the content type when you invoke the endpoint.
- See Also:
-
builder
-