public static interface InputFormatConfiguration.Builder extends SdkPojo, CopyableBuilder<InputFormatConfiguration.Builder,InputFormatConfiguration>
Modifier and Type | Method and Description |
---|---|
default InputFormatConfiguration.Builder |
deserializer(Consumer<Deserializer.Builder> deserializer)
Specifies which deserializer to use.
|
InputFormatConfiguration.Builder |
deserializer(Deserializer deserializer)
Specifies which deserializer to use.
|
copy
applyMutation, build
InputFormatConfiguration.Builder deserializer(Deserializer deserializer)
Specifies which deserializer to use. You can choose either the Apache Hive JSON SerDe or the OpenX JSON SerDe. If both are non-null, the server rejects the request.
deserializer
- Specifies which deserializer to use. You can choose either the Apache Hive JSON SerDe or the OpenX
JSON SerDe. If both are non-null, the server rejects the request.default InputFormatConfiguration.Builder deserializer(Consumer<Deserializer.Builder> deserializer)
Specifies which deserializer to use. You can choose either the Apache Hive JSON SerDe or the OpenX JSON SerDe. If both are non-null, the server rejects the request.
This is a convenience that creates an instance of theDeserializer.Builder
avoiding the need to
create one manually via Deserializer.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to deserializer(Deserializer)
.deserializer
- a consumer that will call methods on Deserializer.Builder
deserializer(Deserializer)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.