Interface PipelineSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PipelineSummary.Builder,PipelineSummary>,SdkBuilder<PipelineSummary.Builder,PipelineSummary>,SdkPojo
- Enclosing class:
- PipelineSummary
public static interface PipelineSummary.Builder extends SdkPojo, CopyableBuilder<PipelineSummary.Builder,PipelineSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description PipelineSummary.BuildercreatedAt(Instant createdAt)The date and time when the pipeline was created.PipelineSummary.BuilderlastUpdatedAt(Instant lastUpdatedAt)The date and time when the pipeline was last updated.PipelineSummary.BuildermaxUnits(Integer maxUnits)The maximum pipeline capacity, in Ingestion Compute Units (ICUs).PipelineSummary.BuilderminUnits(Integer minUnits)The minimum pipeline capacity, in Ingestion Compute Units (ICUs).PipelineSummary.BuilderpipelineArn(String pipelineArn)The Amazon Resource Name (ARN) of the pipeline.PipelineSummary.BuilderpipelineName(String pipelineName)The name of the pipeline.PipelineSummary.Builderstatus(String status)The current status of the pipeline.PipelineSummary.Builderstatus(PipelineStatus status)The current status of the pipeline.default PipelineSummary.BuilderstatusReason(Consumer<PipelineStatusReason.Builder> statusReason)Sets the value of the StatusReason property for this object.PipelineSummary.BuilderstatusReason(PipelineStatusReason statusReason)Sets the value of the StatusReason property for this object.-
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
-
status
PipelineSummary.Builder status(String status)
The current status of the pipeline.
- Parameters:
status- The current status of the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PipelineStatus,PipelineStatus
-
status
PipelineSummary.Builder status(PipelineStatus status)
The current status of the pipeline.
- Parameters:
status- The current status of the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PipelineStatus,PipelineStatus
-
statusReason
PipelineSummary.Builder statusReason(PipelineStatusReason statusReason)
Sets the value of the StatusReason property for this object.- Parameters:
statusReason- The new value for the StatusReason property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
statusReason
default PipelineSummary.Builder statusReason(Consumer<PipelineStatusReason.Builder> statusReason)
Sets the value of the StatusReason property for this object. This is a convenience method that creates an instance of thePipelineStatusReason.Builderavoiding the need to create one manually viaPipelineStatusReason.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tostatusReason(PipelineStatusReason).- Parameters:
statusReason- a consumer that will call methods onPipelineStatusReason.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
statusReason(PipelineStatusReason)
-
pipelineName
PipelineSummary.Builder pipelineName(String pipelineName)
The name of the pipeline.
- Parameters:
pipelineName- The name of the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipelineArn
PipelineSummary.Builder pipelineArn(String pipelineArn)
The Amazon Resource Name (ARN) of the pipeline.
- Parameters:
pipelineArn- The Amazon Resource Name (ARN) of the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
minUnits
PipelineSummary.Builder minUnits(Integer minUnits)
The minimum pipeline capacity, in Ingestion Compute Units (ICUs).
- Parameters:
minUnits- The minimum pipeline capacity, in Ingestion Compute Units (ICUs).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxUnits
PipelineSummary.Builder maxUnits(Integer maxUnits)
The maximum pipeline capacity, in Ingestion Compute Units (ICUs).
- Parameters:
maxUnits- The maximum pipeline capacity, in Ingestion Compute Units (ICUs).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAt
PipelineSummary.Builder createdAt(Instant createdAt)
The date and time when the pipeline was created.
- Parameters:
createdAt- The date and time when the pipeline was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedAt
PipelineSummary.Builder lastUpdatedAt(Instant lastUpdatedAt)
The date and time when the pipeline was last updated.
- Parameters:
lastUpdatedAt- The date and time when the pipeline was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-