@Stability(value=Stable)
public static interface CfnSignalCatalog.NodeProperty
extends software.amazon.jsii.JsiiSerializable
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.iotfleetwise.*;
NodeProperty nodeProperty = NodeProperty.builder()
.actuator(ActuatorProperty.builder()
.dataType("dataType")
.fullyQualifiedName("fullyQualifiedName")
// the properties below are optional
.allowedValues(List.of("allowedValues"))
.assignedValue("assignedValue")
.description("description")
.max(123)
.min(123)
.unit("unit")
.build())
.attribute(AttributeProperty.builder()
.dataType("dataType")
.fullyQualifiedName("fullyQualifiedName")
// the properties below are optional
.allowedValues(List.of("allowedValues"))
.assignedValue("assignedValue")
.defaultValue("defaultValue")
.description("description")
.max(123)
.min(123)
.unit("unit")
.build())
.branch(BranchProperty.builder()
.fullyQualifiedName("fullyQualifiedName")
// the properties below are optional
.description("description")
.build())
.sensor(SensorProperty.builder()
.dataType("dataType")
.fullyQualifiedName("fullyQualifiedName")
// the properties below are optional
.allowedValues(List.of("allowedValues"))
.description("description")
.max(123)
.min(123)
.unit("unit")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnSignalCatalog.NodeProperty.Builder
A builder for
CfnSignalCatalog.NodeProperty |
static class |
CfnSignalCatalog.NodeProperty.Jsii$Proxy
An implementation for
CfnSignalCatalog.NodeProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnSignalCatalog.NodeProperty.Builder |
builder() |
default Object |
getActuator()
`CfnSignalCatalog.NodeProperty.Actuator`.
|
default Object |
getAttribute()
`CfnSignalCatalog.NodeProperty.Attribute`.
|
default Object |
getBranch()
`CfnSignalCatalog.NodeProperty.Branch`.
|
default Object |
getSensor()
`CfnSignalCatalog.NodeProperty.Sensor`.
|
@Stability(value=Stable) @Nullable default Object getActuator()
@Stability(value=Stable) @Nullable default Object getAttribute()
@Stability(value=Stable) @Nullable default Object getBranch()
@Stability(value=Stable) @Nullable default Object getSensor()
@Stability(value=Stable) static CfnSignalCatalog.NodeProperty.Builder builder()
Copyright © 2022. All rights reserved.