@Stability(value=Stable)
public static interface CfnDeliveryStream.InputFormatConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
This parameter is required if Enabled is set to true.
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.kinesisfirehose.*;
InputFormatConfigurationProperty inputFormatConfigurationProperty = InputFormatConfigurationProperty.builder()
.deserializer(DeserializerProperty.builder()
.hiveJsonSerDe(HiveJsonSerDeProperty.builder()
.timestampFormats(List.of("timestampFormats"))
.build())
.openXJsonSerDe(OpenXJsonSerDeProperty.builder()
.caseInsensitive(false)
.columnToJsonKeyMappings(Map.of(
"columnToJsonKeyMappingsKey", "columnToJsonKeyMappings"))
.convertDotsInJsonKeysToUnderscores(false)
.build())
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeliveryStream.InputFormatConfigurationProperty.Builder
A builder for
CfnDeliveryStream.InputFormatConfigurationProperty |
static class |
CfnDeliveryStream.InputFormatConfigurationProperty.Jsii$Proxy
An implementation for
CfnDeliveryStream.InputFormatConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeliveryStream.InputFormatConfigurationProperty.Builder |
builder() |
default Object |
getDeserializer()
Specifies which deserializer to use.
|
@Stability(value=Stable) @Nullable default Object getDeserializer()
You can choose either the Apache Hive JSON SerDe or the OpenX JSON SerDe. If both are non-null, the server rejects the request.
@Stability(value=Stable) static CfnDeliveryStream.InputFormatConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.