Interface JsonFormatDescriptor.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<JsonFormatDescriptor.Builder,JsonFormatDescriptor>,SdkBuilder<JsonFormatDescriptor.Builder,JsonFormatDescriptor>,SdkPojo
- Enclosing class:
- JsonFormatDescriptor
public static interface JsonFormatDescriptor.Builder extends SdkPojo, CopyableBuilder<JsonFormatDescriptor.Builder,JsonFormatDescriptor>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JsonFormatDescriptor.Buildercharset(String charset)The character set in which the source JSON file is written.JsonFormatDescriptor.BuilderfileCompression(String fileCompression)The level of compression of the source CSV file.JsonFormatDescriptor.BuilderfileCompression(JsonFileCompression fileCompression)The level of compression of the source CSV file.-
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
-
fileCompression
JsonFormatDescriptor.Builder fileCompression(String fileCompression)
The level of compression of the source CSV file.
- Parameters:
fileCompression- The level of compression of the source CSV file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
JsonFileCompression,JsonFileCompression
-
fileCompression
JsonFormatDescriptor.Builder fileCompression(JsonFileCompression fileCompression)
The level of compression of the source CSV file.
- Parameters:
fileCompression- The level of compression of the source CSV file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
JsonFileCompression,JsonFileCompression
-
charset
JsonFormatDescriptor.Builder charset(String charset)
The character set in which the source JSON file is written.
- Parameters:
charset- The character set in which the source JSON file is written.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-