@Stability(value=Stable)
public static interface CfnJob.JobSampleProperty
extends software.amazon.jsii.JsiiSerializable
If a JobSample value isn't provided, the default is used. The default value is CUSTOM_ROWS for the mode parameter and 20,000 for the size parameter.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.databrew.*;
JobSampleProperty jobSampleProperty = JobSampleProperty.builder()
.mode("mode")
.size(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnJob.JobSampleProperty.Builder
A builder for
CfnJob.JobSampleProperty |
static class |
CfnJob.JobSampleProperty.Jsii$Proxy
An implementation for
CfnJob.JobSampleProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnJob.JobSampleProperty.Builder |
builder() |
default String |
getMode()
A value that determines whether the profile job is run on the entire dataset or a specified number of rows.
|
default Number |
getSize()
The `Size` parameter is only required when the mode is CUSTOM_ROWS.
|
@Stability(value=Stable) @Nullable default String getMode()
This value must be one of the following:
Size parameter.@Stability(value=Stable) @Nullable default Number getSize()
The profile job is run on the specified number of rows. The maximum value for size is Long.MAX_VALUE.
Long.MAX_VALUE = 9223372036854775807
@Stability(value=Stable) static CfnJob.JobSampleProperty.Builder builder()
CfnJob.JobSampleProperty.Builder of CfnJob.JobSamplePropertyCopyright © 2022. All rights reserved.