Interface TsvStoreOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TsvStoreOptions.Builder,TsvStoreOptions>,SdkBuilder<TsvStoreOptions.Builder,TsvStoreOptions>,SdkPojo
- Enclosing class:
- TsvStoreOptions
public static interface TsvStoreOptions.Builder extends SdkPojo, CopyableBuilder<TsvStoreOptions.Builder,TsvStoreOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TsvStoreOptions.BuilderannotationType(String annotationType)The store's annotation type.TsvStoreOptions.BuilderannotationType(AnnotationType annotationType)The store's annotation type.TsvStoreOptions.BuilderformatToHeader(Map<FormatToHeaderKey,String> formatToHeader)The store's header key to column name mapping.TsvStoreOptions.BuilderformatToHeaderWithStrings(Map<String,String> formatToHeader)The store's header key to column name mapping.TsvStoreOptions.BuilderschemaWithStrings(Collection<? extends Map<String,String>> schema)The store's schema.TsvStoreOptions.BuilderschemaWithStrings(Map<String,String>... schema)The store's schema.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
annotationType
TsvStoreOptions.Builder annotationType(String annotationType)
The store's annotation type.
- Parameters:
annotationType- The store's annotation type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnnotationType,AnnotationType
-
annotationType
TsvStoreOptions.Builder annotationType(AnnotationType annotationType)
The store's annotation type.
- Parameters:
annotationType- The store's annotation type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnnotationType,AnnotationType
-
formatToHeaderWithStrings
TsvStoreOptions.Builder formatToHeaderWithStrings(Map<String,String> formatToHeader)
The store's header key to column name mapping.
- Parameters:
formatToHeader- The store's header key to column name mapping.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
formatToHeader
TsvStoreOptions.Builder formatToHeader(Map<FormatToHeaderKey,String> formatToHeader)
The store's header key to column name mapping.
- Parameters:
formatToHeader- The store's header key to column name mapping.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
schemaWithStrings
TsvStoreOptions.Builder schemaWithStrings(Collection<? extends Map<String,String>> schema)
The store's schema.
- Parameters:
schema- The store's schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
schemaWithStrings
TsvStoreOptions.Builder schemaWithStrings(Map<String,String>... schema)
The store's schema.
- Parameters:
schema- The store's schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-