Class CSVMappingParameters
- java.lang.Object
-
- software.amazon.awssdk.services.kinesisanalyticsv2.model.CSVMappingParameters
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<CSVMappingParameters.Builder,CSVMappingParameters>
@Generated("software.amazon.awssdk:codegen") public final class CSVMappingParameters extends Object implements SdkPojo, Serializable, ToCopyableBuilder<CSVMappingParameters.Builder,CSVMappingParameters>
For a SQL-based Kinesis Data Analytics application, provides additional mapping information when the record format uses delimiters, such as CSV. For example, the following sample records use CSV format, where the records use the '\n' as the row delimiter and a comma (",") as the column delimiter:
"name1", "address1""name2", "address2"- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceCSVMappingParameters.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CSVMappingParameters.Builderbuilder()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()StringrecordColumnDelimiter()The column delimiter.StringrecordRowDelimiter()The row delimiter.List<SdkField<?>>sdkFields()static Class<? extends CSVMappingParameters.Builder>serializableBuilderClass()CSVMappingParameters.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
recordRowDelimiter
public final String recordRowDelimiter()
The row delimiter. For example, in a CSV format, '\n' is the typical row delimiter.
- Returns:
- The row delimiter. For example, in a CSV format, '\n' is the typical row delimiter.
-
recordColumnDelimiter
public final String recordColumnDelimiter()
The column delimiter. For example, in a CSV format, a comma (",") is the typical column delimiter.
- Returns:
- The column delimiter. For example, in a CSV format, a comma (",") is the typical column delimiter.
-
toBuilder
public CSVMappingParameters.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<CSVMappingParameters.Builder,CSVMappingParameters>
-
builder
public static CSVMappingParameters.Builder builder()
-
serializableBuilderClass
public static Class<? extends CSVMappingParameters.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-