Class CSVInput
- All Implemented Interfaces:
- Serializable,- SdkPojo,- ToCopyableBuilder<CSVInput.Builder,- CSVInput> 
Describes how an uncompressed comma-separated values (CSV)-formatted input object is formatted.
- See Also:
- 
Nested Class SummaryNested Classes
- 
Method SummaryModifier and TypeMethodDescriptionfinal BooleanSpecifies that CSV field values may contain quoted record delimiters and such records should be allowed.static CSVInput.Builderbuilder()final Stringcomments()A single character used to indicate that a row should be ignored when the character is present at the start of that row.final booleanfinal booleanequalsBySdkFields(Object obj) Indicates whether some other object is "equal to" this one by SDK fields.final StringA single character used to separate individual fields in a record.final FileHeaderInfoDescribes the first line of input.final StringDescribes the first line of input.final <T> Optional<T> getValueForField(String fieldName, Class<T> clazz) final inthashCode()final StringA single character used for escaping when the field delimiter is part of the value.final StringA single character used for escaping the quotation mark character inside an already escaped value.final StringA single character used to separate individual records in the input.static Class<? extends CSVInput.Builder> Take this object and create a builder that contains all of the current property values of this object.final StringtoString()Returns a string representation of this object.Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuildercopy
- 
Method Details- 
fileHeaderInfoDescribes the first line of input. Valid values are: - 
 NONE: First line is not a header.
- 
 IGNORE: First line is a header, but you can't use the header values to indicate the column in an expression. You can use column position (such as _1, _2, …) to indicate the column (SELECT s._1 FROM OBJECT s).
- 
 Use: First line is a header, and you can use the header value to identify a column in an expression (SELECT "name" FROM OBJECT).
 If the service returns an enum value that is not available in the current SDK version, fileHeaderInfowill returnFileHeaderInfo.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available fromfileHeaderInfoAsString().- Returns:
- Describes the first line of input. Valid values are:
         - 
         NONE: First line is not a header.
- 
         IGNORE: First line is a header, but you can't use the header values to indicate the column in an expression. You can use column position (such as _1, _2, …) to indicate the column (SELECT s._1 FROM OBJECT s).
- 
         Use: First line is a header, and you can use the header value to identify a column in an expression (SELECT "name" FROM OBJECT).
 
- 
         
- See Also:
 
- 
 
- 
fileHeaderInfoAsStringDescribes the first line of input. Valid values are: - 
 NONE: First line is not a header.
- 
 IGNORE: First line is a header, but you can't use the header values to indicate the column in an expression. You can use column position (such as _1, _2, …) to indicate the column (SELECT s._1 FROM OBJECT s).
- 
 Use: First line is a header, and you can use the header value to identify a column in an expression (SELECT "name" FROM OBJECT).
 If the service returns an enum value that is not available in the current SDK version, fileHeaderInfowill returnFileHeaderInfo.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available fromfileHeaderInfoAsString().- Returns:
- Describes the first line of input. Valid values are:
         - 
         NONE: First line is not a header.
- 
         IGNORE: First line is a header, but you can't use the header values to indicate the column in an expression. You can use column position (such as _1, _2, …) to indicate the column (SELECT s._1 FROM OBJECT s).
- 
         Use: First line is a header, and you can use the header value to identify a column in an expression (SELECT "name" FROM OBJECT).
 
- 
         
- See Also:
 
- 
 
- 
commentsA single character used to indicate that a row should be ignored when the character is present at the start of that row. You can specify any character to indicate a comment line. The default character is #.Default: #- Returns:
- A single character used to indicate that a row should be ignored when the character is present at the
         start of that row. You can specify any character to indicate a comment line. The default character is
         #.Default: #
 
- 
quoteEscapeCharacterA single character used for escaping the quotation mark character inside an already escaped value. For example, the value """ a , b """is parsed as" a , b ".- Returns:
- A single character used for escaping the quotation mark character inside an already escaped value. For
         example, the value """ a , b """is parsed as" a , b ".
 
- 
recordDelimiterA single character used to separate individual records in the input. Instead of the default value, you can specify an arbitrary delimiter. - Returns:
- A single character used to separate individual records in the input. Instead of the default value, you can specify an arbitrary delimiter.
 
- 
fieldDelimiterA single character used to separate individual fields in a record. You can specify an arbitrary delimiter. - Returns:
- A single character used to separate individual fields in a record. You can specify an arbitrary delimiter.
 
- 
quoteCharacterA single character used for escaping when the field delimiter is part of the value. For example, if the value is a, b, Amazon S3 wraps this field value in quotation marks, as follows:" a , b ".Type: String Default: "Ancestors: CSV- Returns:
- A single character used for escaping when the field delimiter is part of the value. For example, if the
         value is a, b, Amazon S3 wraps this field value in quotation marks, as follows:" a , b ".Type: String Default: "Ancestors: CSV
 
- 
allowQuotedRecordDelimiterSpecifies that CSV field values may contain quoted record delimiters and such records should be allowed. Default value is FALSE. Setting this value to TRUE may lower performance. - Returns:
- Specifies that CSV field values may contain quoted record delimiters and such records should be allowed. Default value is FALSE. Setting this value to TRUE may lower performance.
 
- 
toBuilderDescription copied from interface:ToCopyableBuilderTake this object and create a builder that contains all of the current property values of this object.- Specified by:
- toBuilderin interface- ToCopyableBuilder<CSVInput.Builder,- CSVInput> 
- Returns:
- a builder for type T
 
- 
builder
- 
serializableBuilderClass
- 
hashCode
- 
equals
- 
equalsBySdkFieldsDescription copied from interface:SdkPojoIndicates whether some other object is "equal to" this one by SDK fields. An SDK field is a modeled, non-inherited field in anSdkPojoclass, and is generated based on a service model.If an SdkPojoclass does not have any inherited fields,equalsBySdkFieldsandequalsare essentially the same.- Specified by:
- equalsBySdkFieldsin interface- SdkPojo
- Parameters:
- obj- the object to be compared with
- Returns:
- true if the other object equals to this object by sdk fields, false otherwise.
 
- 
toString
- 
getValueForField
- 
sdkFields
- 
sdkFieldNameToField- Specified by:
- sdkFieldNameToFieldin interface- SdkPojo
- Returns:
- The mapping between the field name and its corresponding field.
 
 
-