Interface DataIngestionJobSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataIngestionJobSummary.Builder,DataIngestionJobSummary>,SdkBuilder<DataIngestionJobSummary.Builder,DataIngestionJobSummary>,SdkPojo
- Enclosing class:
- DataIngestionJobSummary
public static interface DataIngestionJobSummary.Builder extends SdkPojo, CopyableBuilder<DataIngestionJobSummary.Builder,DataIngestionJobSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DataIngestionJobSummary.BuilderdatasetArn(String datasetArn)The Amazon Resource Name (ARN) of the dataset used in the data ingestion job.DataIngestionJobSummary.BuilderdatasetName(String datasetName)The name of the dataset used for the data ingestion job.default DataIngestionJobSummary.BuilderingestionInputConfiguration(Consumer<IngestionInputConfiguration.Builder> ingestionInputConfiguration)Specifies information for the input data for the data inference job, including data Amazon S3 location parameters.DataIngestionJobSummary.BuilderingestionInputConfiguration(IngestionInputConfiguration ingestionInputConfiguration)Specifies information for the input data for the data inference job, including data Amazon S3 location parameters.DataIngestionJobSummary.BuilderjobId(String jobId)Indicates the job ID of the data ingestion job.DataIngestionJobSummary.Builderstatus(String status)Indicates the status of the data ingestion job.DataIngestionJobSummary.Builderstatus(IngestionJobStatus status)Indicates the status of the data ingestion job.-
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
-
jobId
DataIngestionJobSummary.Builder jobId(String jobId)
Indicates the job ID of the data ingestion job.
- Parameters:
jobId- Indicates the job ID of the data ingestion job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
datasetName
DataIngestionJobSummary.Builder datasetName(String datasetName)
The name of the dataset used for the data ingestion job.
- Parameters:
datasetName- The name of the dataset used for the data ingestion job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
datasetArn
DataIngestionJobSummary.Builder datasetArn(String datasetArn)
The Amazon Resource Name (ARN) of the dataset used in the data ingestion job.
- Parameters:
datasetArn- The Amazon Resource Name (ARN) of the dataset used in the data ingestion job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ingestionInputConfiguration
DataIngestionJobSummary.Builder ingestionInputConfiguration(IngestionInputConfiguration ingestionInputConfiguration)
Specifies information for the input data for the data inference job, including data Amazon S3 location parameters.
- Parameters:
ingestionInputConfiguration- Specifies information for the input data for the data inference job, including data Amazon S3 location parameters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ingestionInputConfiguration
default DataIngestionJobSummary.Builder ingestionInputConfiguration(Consumer<IngestionInputConfiguration.Builder> ingestionInputConfiguration)
Specifies information for the input data for the data inference job, including data Amazon S3 location parameters.
This is a convenience method that creates an instance of theIngestionInputConfiguration.Builderavoiding the need to create one manually viaIngestionInputConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toingestionInputConfiguration(IngestionInputConfiguration).- Parameters:
ingestionInputConfiguration- a consumer that will call methods onIngestionInputConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ingestionInputConfiguration(IngestionInputConfiguration)
-
status
DataIngestionJobSummary.Builder status(String status)
Indicates the status of the data ingestion job.
- Parameters:
status- Indicates the status of the data ingestion job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IngestionJobStatus,IngestionJobStatus
-
status
DataIngestionJobSummary.Builder status(IngestionJobStatus status)
Indicates the status of the data ingestion job.
- Parameters:
status- Indicates the status of the data ingestion job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IngestionJobStatus,IngestionJobStatus
-
-