public static interface RunPipelineActivityRequest.Builder extends IoTAnalyticsRequest.Builder, SdkPojo, CopyableBuilder<RunPipelineActivityRequest.Builder,RunPipelineActivityRequest>
Modifier and Type | Method and Description |
---|---|
RunPipelineActivityRequest.Builder |
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
Add an optional request override configuration.
|
RunPipelineActivityRequest.Builder |
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
Add an optional request override configuration.
|
RunPipelineActivityRequest.Builder |
payloads(Collection<SdkBytes> payloads)
The sample message payloads on which the pipeline activity is run.
|
RunPipelineActivityRequest.Builder |
payloads(SdkBytes... payloads)
The sample message payloads on which the pipeline activity is run.
|
default RunPipelineActivityRequest.Builder |
pipelineActivity(Consumer<PipelineActivity.Builder> pipelineActivity)
The pipeline activity that is run.
|
RunPipelineActivityRequest.Builder |
pipelineActivity(PipelineActivity pipelineActivity)
The pipeline activity that is run.
|
build
overrideConfiguration
copy
applyMutation, build
RunPipelineActivityRequest.Builder pipelineActivity(PipelineActivity pipelineActivity)
The pipeline activity that is run. This must not be a 'channel' activity or a 'datastore' activity because these activities are used in a pipeline only to load the original message and to store the (possibly) transformed message. If a 'lambda' activity is specified, only short-running Lambda functions (those with a timeout of less than 30 seconds or less) can be used.
pipelineActivity
- The pipeline activity that is run. This must not be a 'channel' activity or a 'datastore' activity
because these activities are used in a pipeline only to load the original message and to store the
(possibly) transformed message. If a 'lambda' activity is specified, only short-running Lambda
functions (those with a timeout of less than 30 seconds or less) can be used.default RunPipelineActivityRequest.Builder pipelineActivity(Consumer<PipelineActivity.Builder> pipelineActivity)
The pipeline activity that is run. This must not be a 'channel' activity or a 'datastore' activity because these activities are used in a pipeline only to load the original message and to store the (possibly) transformed message. If a 'lambda' activity is specified, only short-running Lambda functions (those with a timeout of less than 30 seconds or less) can be used.
This is a convenience that creates an instance of thePipelineActivity.Builder
avoiding the need to
create one manually via PipelineActivity.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to pipelineActivity(PipelineActivity)
.pipelineActivity
- a consumer that will call methods on PipelineActivity.Builder
pipelineActivity(PipelineActivity)
RunPipelineActivityRequest.Builder payloads(Collection<SdkBytes> payloads)
The sample message payloads on which the pipeline activity is run.
payloads
- The sample message payloads on which the pipeline activity is run.RunPipelineActivityRequest.Builder payloads(SdkBytes... payloads)
The sample message payloads on which the pipeline activity is run.
payloads
- The sample message payloads on which the pipeline activity is run.RunPipelineActivityRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
AwsRequest.Builder
overrideConfiguration
in interface AwsRequest.Builder
overrideConfiguration
- The override configuration.RunPipelineActivityRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
AwsRequest.Builder
overrideConfiguration
in interface AwsRequest.Builder
builderConsumer
- A Consumer
to which an empty AwsRequestOverrideConfiguration.Builder
will be
given.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.