@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:50.917Z") @Stability(value=Stable) public interface CfnSignalCatalogProps 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.iotfleetwise.*;
CfnSignalCatalogProps cfnSignalCatalogProps = CfnSignalCatalogProps.builder()
.description("description")
.name("name")
.nodes(List.of(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()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnSignalCatalogProps.Builder
A builder for
CfnSignalCatalogProps |
static class |
CfnSignalCatalogProps.Jsii$Proxy
An implementation for
CfnSignalCatalogProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnSignalCatalogProps.Builder |
builder() |
default String |
getDescription()
`AWS::IoTFleetWise::SignalCatalog.Description`.
|
default String |
getName()
`AWS::IoTFleetWise::SignalCatalog.Name`.
|
default Object |
getNodes()
`AWS::IoTFleetWise::SignalCatalog.Nodes`.
|
default List<CfnTag> |
getTags()
`AWS::IoTFleetWise::SignalCatalog.Tags`.
|
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default Object getNodes()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnSignalCatalogProps.Builder builder()
CfnSignalCatalogProps.Builder of CfnSignalCatalogPropsCopyright © 2022. All rights reserved.