Interface DetectedJsonFormatDescriptor.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DetectedJsonFormatDescriptor.Builder,DetectedJsonFormatDescriptor>,SdkBuilder<DetectedJsonFormatDescriptor.Builder,DetectedJsonFormatDescriptor>,SdkPojo
- Enclosing class:
- DetectedJsonFormatDescriptor
public static interface DetectedJsonFormatDescriptor.Builder extends SdkPojo, CopyableBuilder<DetectedJsonFormatDescriptor.Builder,DetectedJsonFormatDescriptor>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DetectedJsonFormatDescriptor.Buildercharset(Consumer<DetectedField.Builder> charset)The format's character set.DetectedJsonFormatDescriptor.Buildercharset(DetectedField charset)The format's character set.default DetectedJsonFormatDescriptor.BuilderfileCompression(Consumer<DetectedField.Builder> fileCompression)The format's file compression.DetectedJsonFormatDescriptor.BuilderfileCompression(DetectedField fileCompression)The format's file compression.-
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
DetectedJsonFormatDescriptor.Builder fileCompression(DetectedField fileCompression)
The format's file compression.
- Parameters:
fileCompression- The format's file compression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fileCompression
default DetectedJsonFormatDescriptor.Builder fileCompression(Consumer<DetectedField.Builder> fileCompression)
The format's file compression.
This is a convenience method that creates an instance of theDetectedField.Builderavoiding the need to create one manually viaDetectedField.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tofileCompression(DetectedField).- Parameters:
fileCompression- a consumer that will call methods onDetectedField.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
fileCompression(DetectedField)
-
charset
DetectedJsonFormatDescriptor.Builder charset(DetectedField charset)
The format's character set.
- Parameters:
charset- The format's character set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
charset
default DetectedJsonFormatDescriptor.Builder charset(Consumer<DetectedField.Builder> charset)
The format's character set.
This is a convenience method that creates an instance of theDetectedField.Builderavoiding the need to create one manually viaDetectedField.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocharset(DetectedField).- Parameters:
charset- a consumer that will call methods onDetectedField.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
charset(DetectedField)
-
-