Class UploadSettings
- java.lang.Object
-
- software.amazon.awssdk.services.quicksight.model.UploadSettings
-
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<UploadSettings.Builder,UploadSettings>
@Generated("software.amazon.awssdk:codegen") public final class UploadSettings extends Object implements SdkPojo, Serializable, ToCopyableBuilder<UploadSettings.Builder,UploadSettings>
Information about the format for a source file or files.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
UploadSettings.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UploadSettings.Builder
builder()
Boolean
containsHeader()
Whether the file has a header row, or the files each have a header row.String
delimiter()
The delimiter between values in the file.boolean
equals(Object obj)
boolean
equalsBySdkFields(Object obj)
FileFormat
format()
File format.String
formatAsString()
File format.<T> Optional<T>
getValueForField(String fieldName, Class<T> clazz)
int
hashCode()
List<SdkField<?>>
sdkFields()
static Class<? extends UploadSettings.Builder>
serializableBuilderClass()
Integer
startFromRow()
A row number to start reading data from.TextQualifier
textQualifier()
Text qualifier.String
textQualifierAsString()
Text qualifier.UploadSettings.Builder
toBuilder()
String
toString()
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
-
format
public final FileFormat format()
File format.
If the service returns an enum value that is not available in the current SDK version,
format
will returnFileFormat.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromformatAsString()
.- Returns:
- File format.
- See Also:
FileFormat
-
formatAsString
public final String formatAsString()
File format.
If the service returns an enum value that is not available in the current SDK version,
format
will returnFileFormat.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromformatAsString()
.- Returns:
- File format.
- See Also:
FileFormat
-
startFromRow
public final Integer startFromRow()
A row number to start reading data from.
- Returns:
- A row number to start reading data from.
-
containsHeader
public final Boolean containsHeader()
Whether the file has a header row, or the files each have a header row.
- Returns:
- Whether the file has a header row, or the files each have a header row.
-
textQualifier
public final TextQualifier textQualifier()
Text qualifier.
If the service returns an enum value that is not available in the current SDK version,
textQualifier
will returnTextQualifier.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromtextQualifierAsString()
.- Returns:
- Text qualifier.
- See Also:
TextQualifier
-
textQualifierAsString
public final String textQualifierAsString()
Text qualifier.
If the service returns an enum value that is not available in the current SDK version,
textQualifier
will returnTextQualifier.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromtextQualifierAsString()
.- Returns:
- Text qualifier.
- See Also:
TextQualifier
-
delimiter
public final String delimiter()
The delimiter between values in the file.
- Returns:
- The delimiter between values in the file.
-
toBuilder
public UploadSettings.Builder toBuilder()
- Specified by:
toBuilder
in interfaceToCopyableBuilder<UploadSettings.Builder,UploadSettings>
-
builder
public static UploadSettings.Builder builder()
-
serializableBuilderClass
public static Class<? extends UploadSettings.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFields
in 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.
-
-