Interface JobSample.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<JobSample.Builder,JobSample>,SdkBuilder<JobSample.Builder,JobSample>,SdkPojo
- Enclosing class:
- JobSample
public static interface JobSample.Builder extends SdkPojo, CopyableBuilder<JobSample.Builder,JobSample>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JobSample.Buildermode(String mode)A value that determines whether the profile job is run on the entire dataset or a specified number of rows.JobSample.Buildermode(SampleMode mode)A value that determines whether the profile job is run on the entire dataset or a specified number of rows.JobSample.Buildersize(Long size)TheSizeparameter is only required when the mode is CUSTOM_ROWS.-
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
-
mode
JobSample.Builder mode(String mode)
A value that determines whether the profile job is run on the entire dataset or a specified number of rows. This value must be one of the following:
-
FULL_DATASET - The profile job is run on the entire dataset.
-
CUSTOM_ROWS - The profile job is run on the number of rows specified in the
Sizeparameter.
- Parameters:
mode- A value that determines whether the profile job is run on the entire dataset or a specified number of rows. This value must be one of the following:-
FULL_DATASET - The profile job is run on the entire dataset.
-
CUSTOM_ROWS - The profile job is run on the number of rows specified in the
Sizeparameter.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SampleMode,SampleMode
-
-
mode
JobSample.Builder mode(SampleMode mode)
A value that determines whether the profile job is run on the entire dataset or a specified number of rows. This value must be one of the following:
-
FULL_DATASET - The profile job is run on the entire dataset.
-
CUSTOM_ROWS - The profile job is run on the number of rows specified in the
Sizeparameter.
- Parameters:
mode- A value that determines whether the profile job is run on the entire dataset or a specified number of rows. This value must be one of the following:-
FULL_DATASET - The profile job is run on the entire dataset.
-
CUSTOM_ROWS - The profile job is run on the number of rows specified in the
Sizeparameter.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SampleMode,SampleMode
-
-
size
JobSample.Builder size(Long size)
The
Sizeparameter is only required when the mode is CUSTOM_ROWS. The profile job is run on the specified number of rows. The maximum value for size is Long.MAX_VALUE.Long.MAX_VALUE = 9223372036854775807
- Parameters:
size- TheSizeparameter is only required when the mode is CUSTOM_ROWS. The profile job is run on the specified number of rows. The maximum value for size is Long.MAX_VALUE.Long.MAX_VALUE = 9223372036854775807
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-