public static interface CfnEndpointConfig.CaptureContentTypeHeaderProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnEndpointConfig.CaptureContentTypeHeaderProperty.Builder
A builder for
CfnEndpointConfig.CaptureContentTypeHeaderProperty |
static class |
CfnEndpointConfig.CaptureContentTypeHeaderProperty.Jsii$Proxy
An implementation for
CfnEndpointConfig.CaptureContentTypeHeaderProperty |
Modifier and Type | Method and Description |
---|---|
static CfnEndpointConfig.CaptureContentTypeHeaderProperty.Builder |
builder() |
default java.util.List<java.lang.String> |
getCsvContentTypes()
A list of the CSV content types of the data that the endpoint captures.
|
default java.util.List<java.lang.String> |
getJsonContentTypes()
A list of the JSON content types of the data that the endpoint captures.
|
default java.util.List<java.lang.String> getCsvContentTypes()
For the endpoint to capture the data, you must also specify the content type when you invoke the endpoint.
default java.util.List<java.lang.String> getJsonContentTypes()
For the endpoint to capture the data, you must also specify the content type when you invoke the endpoint.