Interface PipelineSummary.Builder

    • Method Detail

      • 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.
      • 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.
      • destinations

        PipelineSummary.Builder destinations​(Collection<PipelineDestination> destinations)

        A list of destinations to which the pipeline writes data.

        Parameters:
        destinations - A list of destinations to which the pipeline writes data.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • destinations

        PipelineSummary.Builder destinations​(PipelineDestination... destinations)

        A list of destinations to which the pipeline writes data.

        Parameters:
        destinations - A list of destinations to which the pipeline writes data.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        PipelineSummary.Builder tags​(Collection<Tag> tags)

        A list of tags associated with the given pipeline.

        Parameters:
        tags - A list of tags associated with the given pipeline.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        PipelineSummary.Builder tags​(Tag... tags)

        A list of tags associated with the given pipeline.

        Parameters:
        tags - A list of tags associated with the given pipeline.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        PipelineSummary.Builder tags​(Consumer<Tag.Builder>... tags)

        A list of tags associated with the given pipeline.

        This is a convenience method that creates an instance of the Tag.Builder avoiding the need to create one manually via Tag.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #tags(List).

        Parameters:
        tags - a consumer that will call methods on Tag.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #tags(java.util.Collection)