Class CfnPipeline.Builder
- All Implemented Interfaces:
software.amazon.jsii.Builder<CfnPipeline>
- Enclosing class:
CfnPipeline
CfnPipeline
.-
Method Summary
Modifier and TypeMethodDescriptionbuild()
static CfnPipeline.Builder
pipelineActivities
(List<? extends Object> pipelineActivities) A list of "PipelineActivity" objects.pipelineActivities
(IResolvable pipelineActivities) A list of "PipelineActivity" objects.pipelineName
(String pipelineName) The name of the pipeline.Metadata which can be used to manage the pipeline.
-
Method Details
-
create
@Stability(Stable) public static CfnPipeline.Builder create(software.constructs.Construct scope, String id) - Parameters:
scope
- Scope in which this resource is defined. This parameter is required.id
- Construct identifier for this resource (unique in its scope). This parameter is required.- Returns:
- a new instance of
CfnPipeline.Builder
.
-
pipelineActivities
A list of "PipelineActivity" objects.Activities perform transformations on your messages, such as removing, renaming or adding message attributes; filtering messages based on attribute values; invoking your Lambda functions on messages for advanced processing; or performing mathematical transformations to normalize device data.
The list can be 2-25 PipelineActivity objects and must contain both a
channel
and adatastore
activity. Each entry in the list must contain only one activity, for example:pipelineActivities = [ { "channel": { ... } }, { "lambda": { ... } }, ... ]
- Parameters:
pipelineActivities
- A list of "PipelineActivity" objects. This parameter is required.- Returns:
this
- See Also:
-
pipelineActivities
@Stability(Stable) public CfnPipeline.Builder pipelineActivities(List<? extends Object> pipelineActivities) A list of "PipelineActivity" objects.Activities perform transformations on your messages, such as removing, renaming or adding message attributes; filtering messages based on attribute values; invoking your Lambda functions on messages for advanced processing; or performing mathematical transformations to normalize device data.
The list can be 2-25 PipelineActivity objects and must contain both a
channel
and adatastore
activity. Each entry in the list must contain only one activity, for example:pipelineActivities = [ { "channel": { ... } }, { "lambda": { ... } }, ... ]
- Parameters:
pipelineActivities
- A list of "PipelineActivity" objects. This parameter is required.- Returns:
this
- See Also:
-
pipelineName
The name of the pipeline.- Parameters:
pipelineName
- The name of the pipeline. This parameter is required.- Returns:
this
- See Also:
-
tags
Metadata which can be used to manage the pipeline.For more information, see Tag .
- Parameters:
tags
- Metadata which can be used to manage the pipeline. This parameter is required.- Returns:
this
- See Also:
-
build
- Specified by:
build
in interfacesoftware.amazon.jsii.Builder<CfnPipeline>
- Returns:
- a newly built instance of
CfnPipeline
.
-