Interface CreatePipelineRequest.Builder

  • Method Details

    • workspaceName

      CreatePipelineRequest.Builder workspaceName(String workspaceName)

      The name of the workspace.

      Parameters:
      workspaceName - The name of the workspace.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • pipelineName

      CreatePipelineRequest.Builder pipelineName(String pipelineName)

      The name of the pipeline to create. Must be unique within the workspace.

      Parameters:
      pipelineName - The name of the pipeline to create. Must be unique within the workspace.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • description

      CreatePipelineRequest.Builder description(String description)

      A description of the pipeline.

      Parameters:
      description - A description of the pipeline.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • environmentVariables

      CreatePipelineRequest.Builder environmentVariables(Map<String,String> environmentVariables)

      Environment variables shared across all compute nodes in the pipeline. Individual compute nodes can override these values with their own environment variables.

      Parameters:
      environmentVariables - Environment variables shared across all compute nodes in the pipeline. Individual compute nodes can override these values with their own environment variables.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • computations

      The list of compute nodes that form the pipeline DAG. Each compute node references a task and can declare dependencies on other nodes.

      Parameters:
      computations - The list of compute nodes that form the pipeline DAG. Each compute node references a task and can declare dependencies on other nodes.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • computations

      CreatePipelineRequest.Builder computations(ComputeNode... computations)

      The list of compute nodes that form the pipeline DAG. Each compute node references a task and can declare dependencies on other nodes.

      Parameters:
      computations - The list of compute nodes that form the pipeline DAG. Each compute node references a task and can declare dependencies on other nodes.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • computations

      The list of compute nodes that form the pipeline DAG. Each compute node references a task and can declare dependencies on other nodes.

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

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to computations(List<ComputeNode>).

      Parameters:
      computations - a consumer that will call methods on ComputeNode.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • tags

      A list of key-value pairs that contain metadata for the pipeline. For more information, see Tagging your AWS IoT SiteWise resources in the AWS IoT SiteWise User Guide.

      Parameters:
      tags - A list of key-value pairs that contain metadata for the pipeline. For more information, see Tagging your AWS IoT SiteWise resources in the AWS IoT SiteWise User Guide.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • clientToken

      CreatePipelineRequest.Builder clientToken(String clientToken)

      A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you retry a request that completed successfully using the same client token, the server returns the cached result from the original successful request without performing the operation again.

      Parameters:
      clientToken - A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you retry a request that completed successfully using the same client token, the server returns the cached result from the original successful request without performing the operation again.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • overrideConfiguration

      CreatePipelineRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
      Description copied from interface: AwsRequest.Builder
      Add an optional request override configuration.
      Specified by:
      overrideConfiguration in interface AwsRequest.Builder
      Parameters:
      overrideConfiguration - The override configuration.
      Returns:
      This object for method chaining.
    • overrideConfiguration

      Description copied from interface: AwsRequest.Builder
      Add an optional request override configuration.
      Specified by:
      overrideConfiguration in interface AwsRequest.Builder
      Parameters:
      builderConsumer - A Consumer to which an empty AwsRequestOverrideConfiguration.Builder will be given.
      Returns:
      This object for method chaining.