Class CfnSignalCatalog
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.core.Construct
software.amazon.awscdk.core.CfnElement
software.amazon.awscdk.core.CfnRefElement
software.amazon.awscdk.core.CfnResource
software.amazon.awscdk.services.iotfleetwise.CfnSignalCatalog
- All Implemented Interfaces:
IConstruct
,IDependable
,IInspectable
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:57.858Z")
@Stability(Stable)
public class CfnSignalCatalog
extends CfnResource
implements IInspectable
A CloudFormation
AWS::IoTFleetWise::SignalCatalog
.
Creates a collection of standardized signals that can be reused to create vehicle models.
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.*; CfnSignalCatalog cfnSignalCatalog = CfnSignalCatalog.Builder.create(this, "MyCfnSignalCatalog") .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();
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
A signal that represents a vehicle device such as the engine, heater, and door locks.static interface
A signal that represents static information about the vehicle, such as engine type or manufacturing date.static interface
A group of signals that are defined in a hierarchical structure.static final class
A fluent builder forCfnSignalCatalog
.static interface
Information about the number of nodes and node types in a vehicle network.static interface
A general abstraction of a signal.static interface
An input component that reports the environmental condition of a vehicle.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionCfnSignalCatalog
(Construct scope, String id) Create a newAWS::IoTFleetWise::SignalCatalog
.CfnSignalCatalog
(Construct scope, String id, CfnSignalCatalogProps props) Create a newAWS::IoTFleetWise::SignalCatalog
.protected
CfnSignalCatalog
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnSignalCatalog
(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionThe Amazon Resource Name (ARN) of the signal catalog.The time the signal catalog was created in seconds since epoch (January 1, 1970 at midnight UTC time).The time the signal catalog was last updated in seconds since epoch (January 1, 1970 at midnight UTC time).The total number of nodes in a vehicle network that represent actuators.The total number of nodes in a vehicle network that represent attributes.The total number of nodes in a vehicle network that represent branches.The total number of nodes in a vehicle network.The total number of nodes in a vehicle network that represent sensors.(Optional) A brief description of the signal catalog.getName()
(Optional) The name of the signal catalog.(Optional) Information about the number of nodes and node types in a vehicle network.getNodes()
(Optional) A list of information about nodes, which are a general abstraction of signals.getTags()
(Optional) Metadata that can be used to manage the signal catalog.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
setDescription
(String value) (Optional) A brief description of the signal catalog.void
(Optional) The name of the signal catalog.void
setNodeCounts
(IResolvable value) (Optional) Information about the number of nodes and node types in a vehicle network.void
(Optional) Information about the number of nodes and node types in a vehicle network.void
(Optional) A list of information about nodes, which are a general abstraction of signals.void
setNodes
(IResolvable value) (Optional) A list of information about nodes, which are a general abstraction of signals.Methods inherited from class software.amazon.awscdk.core.CfnResource
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validateProperties
Methods inherited from class software.amazon.awscdk.core.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.core.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validate
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnSignalCatalog
protected CfnSignalCatalog(software.amazon.jsii.JsiiObjectRef objRef) -
CfnSignalCatalog
protected CfnSignalCatalog(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnSignalCatalog
@Stability(Stable) public CfnSignalCatalog(@NotNull Construct scope, @NotNull String id, @Nullable CfnSignalCatalogProps props) Create a newAWS::IoTFleetWise::SignalCatalog
.- Parameters:
scope
-- scope in which this resource is defined.
id
-- scoped id of the resource.
props
-- resource properties.
-
CfnSignalCatalog
Create a newAWS::IoTFleetWise::SignalCatalog
.- Parameters:
scope
-- scope in which this resource is defined.
id
-- scoped id of the resource.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspect
in interfaceIInspectable
- Parameters:
inspector
-- tree inspector to collect and process attributes.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getAttrArn
The Amazon Resource Name (ARN) of the signal catalog. -
getAttrCreationTime
The time the signal catalog was created in seconds since epoch (January 1, 1970 at midnight UTC time). -
getAttrLastModificationTime
The time the signal catalog was last updated in seconds since epoch (January 1, 1970 at midnight UTC time). -
getAttrNodeCountsTotalActuators
The total number of nodes in a vehicle network that represent actuators. -
getAttrNodeCountsTotalAttributes
The total number of nodes in a vehicle network that represent attributes. -
getAttrNodeCountsTotalBranches
The total number of nodes in a vehicle network that represent branches. -
getAttrNodeCountsTotalNodes
The total number of nodes in a vehicle network. -
getAttrNodeCountsTotalSensors
The total number of nodes in a vehicle network that represent sensors. -
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getTags
(Optional) Metadata that can be used to manage the signal catalog. -
getDescription
(Optional) A brief description of the signal catalog. -
setDescription
(Optional) A brief description of the signal catalog. -
getName
(Optional) The name of the signal catalog. -
setName
(Optional) The name of the signal catalog. -
getNodeCounts
(Optional) Information about the number of nodes and node types in a vehicle network. -
setNodeCounts
(Optional) Information about the number of nodes and node types in a vehicle network. -
setNodeCounts
(Optional) Information about the number of nodes and node types in a vehicle network. -
getNodes
(Optional) A list of information about nodes, which are a general abstraction of signals. -
setNodes
(Optional) A list of information about nodes, which are a general abstraction of signals. -
setNodes
(Optional) A list of information about nodes, which are a general abstraction of signals.
-