@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:06.867Z") @Stability(value=Stable) public interface CfnPipelineProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.iotanalytics.*;
Object attributes;
CfnPipelineProps cfnPipelineProps = CfnPipelineProps.builder()
.pipelineActivities(List.of(ActivityProperty.builder()
.addAttributes(AddAttributesProperty.builder()
.attributes(attributes)
.name("name")
.next("next")
.build())
.channel(ChannelProperty.builder()
.channelName("channelName")
.name("name")
.next("next")
.build())
.datastore(DatastoreProperty.builder()
.datastoreName("datastoreName")
.name("name")
.build())
.deviceRegistryEnrich(DeviceRegistryEnrichProperty.builder()
.attribute("attribute")
.name("name")
.next("next")
.roleArn("roleArn")
.thingName("thingName")
.build())
.deviceShadowEnrich(DeviceShadowEnrichProperty.builder()
.attribute("attribute")
.name("name")
.next("next")
.roleArn("roleArn")
.thingName("thingName")
.build())
.filter(FilterProperty.builder()
.filter("filter")
.name("name")
.next("next")
.build())
.lambda(LambdaProperty.builder()
.batchSize(123)
.lambdaName("lambdaName")
.name("name")
.next("next")
.build())
.math(MathProperty.builder()
.attribute("attribute")
.math("math")
.name("name")
.next("next")
.build())
.removeAttributes(RemoveAttributesProperty.builder()
.attributes(List.of("attributes"))
.name("name")
.next("next")
.build())
.selectAttributes(SelectAttributesProperty.builder()
.attributes(List.of("attributes"))
.name("name")
.next("next")
.build())
.build()))
// the properties below are optional
.pipelineName("pipelineName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnPipelineProps.Builder
A builder for
CfnPipelineProps |
static class |
CfnPipelineProps.Jsii$Proxy
An implementation for
CfnPipelineProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnPipelineProps.Builder |
builder() |
Object |
getPipelineActivities()
`AWS::IoTAnalytics::Pipeline.PipelineActivities`.
|
default String |
getPipelineName()
`AWS::IoTAnalytics::Pipeline.PipelineName`.
|
default List<CfnTag> |
getTags()
`AWS::IoTAnalytics::Pipeline.Tags`.
|
@Stability(value=Stable) @NotNull Object getPipelineActivities()
@Stability(value=Stable) @Nullable default String getPipelineName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnPipelineProps.Builder builder()
CfnPipelineProps.Builder of CfnPipelinePropsCopyright © 2021. All rights reserved.