@Stability(value=Stable)
public static interface CfnEndpointConfig.CaptureContentTypeHeaderProperty
extends software.amazon.jsii.JsiiSerializable
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 List<String> |
getCsvContentTypes()
A list of the CSV content types of the data that the endpoint captures.
|
default List<String> |
getJsonContentTypes()
A list of the JSON content types of the data that the endpoint captures.
|
@Stability(value=Stable) @Nullable default List<String> getCsvContentTypes()
For the endpoint to capture the data, you must also specify the content type when you invoke the endpoint.
@Stability(value=Stable) @Nullable default List<String> getJsonContentTypes()
For the endpoint to capture the data, you must also specify the content type when you invoke the endpoint.
@Stability(value=Stable) static CfnEndpointConfig.CaptureContentTypeHeaderProperty.Builder builder()
Copyright © 2022. All rights reserved.