Class CSVMappingParameters
- java.lang.Object
-
- software.amazon.awssdk.services.kinesisanalytics.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>
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()Column delimiter.StringrecordRowDelimiter()Row delimiter.Map<String,SdkField<?>>sdkFieldNameToField()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()
Row delimiter. For example, in a CSV format, '\n' is the typical row delimiter.
- Returns:
- Row delimiter. For example, in a CSV format, '\n' is the typical row delimiter.
-
recordColumnDelimiter
public final String recordColumnDelimiter()
Column delimiter. For example, in a CSV format, a comma (",") is the typical column delimiter.
- Returns:
- 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.
-
sdkFieldNameToField
public final Map<String,SdkField<?>> sdkFieldNameToField()
- Specified by:
sdkFieldNameToFieldin interfaceSdkPojo
-
-