Interface CfnSignalCatalogProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSignalCatalogProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-30T02:11:08.865Z") @Stability(Stable) public interface CfnSignalCatalogProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnSignalCatalog.

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")
         .nodeCounts(NodeCountsProperty.builder()
                 .totalActuators(123)
                 .totalAttributes(123)
                 .totalBranches(123)
                 .totalNodes(123)
                 .totalSensors(123)
                 .build())
         .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();
 

See Also: