Interface CreatePipelineRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<CreatePipelineRequest.Builder,CreatePipelineRequest>,IoTAnalyticsRequest.Builder,SdkBuilder<CreatePipelineRequest.Builder,CreatePipelineRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreatePipelineRequest
public static interface CreatePipelineRequest.Builder extends IoTAnalyticsRequest.Builder, SdkPojo, CopyableBuilder<CreatePipelineRequest.Builder,CreatePipelineRequest>
-
-
Method Summary
-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.iotanalytics.model.IoTAnalyticsRequest.Builder
build
-
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
-
pipelineName
CreatePipelineRequest.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.
-
pipelineActivities
CreatePipelineRequest.Builder pipelineActivities(Collection<PipelineActivity> pipelineActivities)
A list of
PipelineActivityobjects. Activities perform transformations on your messages, such as removing, renaming or adding message attributes; filtering messages based on attribute values; invoking your Lambda unctions on messages for advanced processing; or performing mathematical transformations to normalize device data.The list can be 2-25
PipelineActivityobjects and must contain both achanneland adatastoreactivity. Each entry in the list must contain only one activity. For example:pipelineActivities = [ { "channel": { ... } }, { "lambda": { ... } }, ... ]- Parameters:
pipelineActivities- A list ofPipelineActivityobjects. Activities perform transformations on your messages, such as removing, renaming or adding message attributes; filtering messages based on attribute values; invoking your Lambda unctions on messages for advanced processing; or performing mathematical transformations to normalize device data.The list can be 2-25
PipelineActivityobjects and must contain both achanneland adatastoreactivity. Each entry in the list must contain only one activity. For example:pipelineActivities = [ { "channel": { ... } }, { "lambda": { ... } }, ... ]- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipelineActivities
CreatePipelineRequest.Builder pipelineActivities(PipelineActivity... pipelineActivities)
A list of
PipelineActivityobjects. Activities perform transformations on your messages, such as removing, renaming or adding message attributes; filtering messages based on attribute values; invoking your Lambda unctions on messages for advanced processing; or performing mathematical transformations to normalize device data.The list can be 2-25
PipelineActivityobjects and must contain both achanneland adatastoreactivity. Each entry in the list must contain only one activity. For example:pipelineActivities = [ { "channel": { ... } }, { "lambda": { ... } }, ... ]- Parameters:
pipelineActivities- A list ofPipelineActivityobjects. Activities perform transformations on your messages, such as removing, renaming or adding message attributes; filtering messages based on attribute values; invoking your Lambda unctions on messages for advanced processing; or performing mathematical transformations to normalize device data.The list can be 2-25
PipelineActivityobjects and must contain both achanneland adatastoreactivity. Each entry in the list must contain only one activity. For example:pipelineActivities = [ { "channel": { ... } }, { "lambda": { ... } }, ... ]- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipelineActivities
CreatePipelineRequest.Builder pipelineActivities(Consumer<PipelineActivity.Builder>... pipelineActivities)
A list of
PipelineActivityobjects. Activities perform transformations on your messages, such as removing, renaming or adding message attributes; filtering messages based on attribute values; invoking your Lambda unctions on messages for advanced processing; or performing mathematical transformations to normalize device data.The list can be 2-25
PipelineActivityobjects and must contain both achanneland adatastoreactivity. Each entry in the list must contain only one activity. For example:
This is a convenience method that creates an instance of thepipelineActivities = [ { "channel": { ... } }, { "lambda": { ... } }, ... ]PipelineActivity.Builderavoiding the need to create one manually viaPipelineActivity.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#pipelineActivities(List.) - Parameters:
pipelineActivities- a consumer that will call methods onPipelineActivity.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#pipelineActivities(java.util.Collection)
-
tags
CreatePipelineRequest.Builder tags(Collection<Tag> tags)
Metadata which can be used to manage the pipeline.
- Parameters:
tags- Metadata which can be used to manage the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreatePipelineRequest.Builder tags(Tag... tags)
Metadata which can be used to manage the pipeline.
- Parameters:
tags- Metadata which can be used to manage the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreatePipelineRequest.Builder tags(Consumer<Tag.Builder>... tags)
Metadata which can be used to manage the pipeline.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
overrideConfiguration
CreatePipelineRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreatePipelineRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-