Class CfnSignalCatalog
Creates a collection of standardized signals that can be reused to create vehicle models.
Inherited Members
Namespace: Amazon.CDK.AWS.IoTFleetWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSignalCatalog : CfnResource, IInspectable, ITaggable
Syntax (vb)
Public Class CfnSignalCatalog Inherits CfnResource Implements IInspectable, ITaggable
Remarks
For more information, see Signal catalogs in the AWS IoT FleetWise Developer Guide .
CloudformationResource: AWS::IoTFleetWise::SignalCatalog
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTFleetWise;
var cfnSignalCatalog = new CfnSignalCatalog(this, "MyCfnSignalCatalog", new CfnSignalCatalogProps {
Description = "description",
Name = "name",
NodeCounts = new NodeCountsProperty {
TotalActuators = 123,
TotalAttributes = 123,
TotalBranches = 123,
TotalNodes = 123,
TotalSensors = 123
},
Nodes = new [] { new NodeProperty {
Actuator = new ActuatorProperty {
DataType = "dataType",
FullyQualifiedName = "fullyQualifiedName",
// the properties below are optional
AllowedValues = new [] { "allowedValues" },
AssignedValue = "assignedValue",
Description = "description",
Max = 123,
Min = 123,
Unit = "unit"
},
Attribute = new AttributeProperty {
DataType = "dataType",
FullyQualifiedName = "fullyQualifiedName",
// the properties below are optional
AllowedValues = new [] { "allowedValues" },
AssignedValue = "assignedValue",
DefaultValue = "defaultValue",
Description = "description",
Max = 123,
Min = 123,
Unit = "unit"
},
Branch = new BranchProperty {
FullyQualifiedName = "fullyQualifiedName",
// the properties below are optional
Description = "description"
},
Sensor = new SensorProperty {
DataType = "dataType",
FullyQualifiedName = "fullyQualifiedName",
// the properties below are optional
AllowedValues = new [] { "allowedValues" },
Description = "description",
Max = 123,
Min = 123,
Unit = "unit"
}
} },
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
});
Synopsis
Constructors
CfnSignalCatalog(Construct, string, ICfnSignalCatalogProps?) | Creates a collection of standardized signals that can be reused to create vehicle models. |
Properties
AttrArn | The Amazon Resource Name (ARN) of the signal catalog. |
AttrCreationTime | The time the signal catalog was created in seconds since epoch (January 1, 1970 at midnight UTC time). |
AttrLastModificationTime | The time the signal catalog was last updated in seconds since epoch (January 1, 1970 at midnight UTC time). |
AttrNodeCountsTotalActuators | The total number of nodes in a vehicle network that represent actuators. |
AttrNodeCountsTotalAttributes | The total number of nodes in a vehicle network that represent attributes. |
AttrNodeCountsTotalBranches | The total number of nodes in a vehicle network that represent branches. |
AttrNodeCountsTotalNodes | The total number of nodes in a vehicle network. |
AttrNodeCountsTotalSensors | The total number of nodes in a vehicle network that represent sensors. |
CFN_RESOURCE_TYPE_NAME | The CloudFormation resource type name for this resource class. |
CfnProperties | Creates a collection of standardized signals that can be reused to create vehicle models. |
Description | A brief description of the signal catalog. |
Name | The name of the signal catalog. |
NodeCounts | Information about the number of nodes and node types in a vehicle network. |
Nodes | A list of information about nodes, which are a general abstraction of signals. |
Tags | Tag Manager which manages the tags for this resource. |
TagsRaw | Metadata that can be used to manage the signal catalog. |
Methods
Inspect(TreeInspector) | Examines the CloudFormation resource and discloses attributes. |
RenderProperties(IDictionary<string, object>) | Creates a collection of standardized signals that can be reused to create vehicle models. |
Constructors
CfnSignalCatalog(Construct, string, ICfnSignalCatalogProps?)
Creates a collection of standardized signals that can be reused to create vehicle models.
public CfnSignalCatalog(Construct scope, string id, ICfnSignalCatalogProps? props = null)
Parameters
- scope Construct
Scope in which this resource is defined.
- id string
Construct identifier for this resource (unique in its scope).
- props ICfnSignalCatalogProps
Resource properties.
Remarks
For more information, see Signal catalogs in the AWS IoT FleetWise Developer Guide .
CloudformationResource: AWS::IoTFleetWise::SignalCatalog
ExampleMetadata: fixture=_generated
Properties
AttrArn
The Amazon Resource Name (ARN) of the signal catalog.
public virtual string AttrArn { get; }
Property Value
Remarks
CloudformationAttribute: Arn
AttrCreationTime
The time the signal catalog was created in seconds since epoch (January 1, 1970 at midnight UTC time).
public virtual string AttrCreationTime { get; }
Property Value
Remarks
CloudformationAttribute: CreationTime
AttrLastModificationTime
The time the signal catalog was last updated in seconds since epoch (January 1, 1970 at midnight UTC time).
public virtual string AttrLastModificationTime { get; }
Property Value
Remarks
CloudformationAttribute: LastModificationTime
AttrNodeCountsTotalActuators
The total number of nodes in a vehicle network that represent actuators.
public virtual IResolvable AttrNodeCountsTotalActuators { get; }
Property Value
Remarks
CloudformationAttribute: NodeCounts.TotalActuators
AttrNodeCountsTotalAttributes
The total number of nodes in a vehicle network that represent attributes.
public virtual IResolvable AttrNodeCountsTotalAttributes { get; }
Property Value
Remarks
CloudformationAttribute: NodeCounts.TotalAttributes
AttrNodeCountsTotalBranches
The total number of nodes in a vehicle network that represent branches.
public virtual IResolvable AttrNodeCountsTotalBranches { get; }
Property Value
Remarks
CloudformationAttribute: NodeCounts.TotalBranches
AttrNodeCountsTotalNodes
The total number of nodes in a vehicle network.
public virtual IResolvable AttrNodeCountsTotalNodes { get; }
Property Value
Remarks
CloudformationAttribute: NodeCounts.TotalNodes
AttrNodeCountsTotalSensors
The total number of nodes in a vehicle network that represent sensors.
public virtual IResolvable AttrNodeCountsTotalSensors { get; }
Property Value
Remarks
CloudformationAttribute: NodeCounts.TotalSensors
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value
Remarks
For more information, see Signal catalogs in the AWS IoT FleetWise Developer Guide .
CloudformationResource: AWS::IoTFleetWise::SignalCatalog
ExampleMetadata: fixture=_generated
CfnProperties
Creates a collection of standardized signals that can be reused to create vehicle models.
protected override IDictionary<string, object> CfnProperties { get; }
Property Value
Overrides
Remarks
For more information, see Signal catalogs in the AWS IoT FleetWise Developer Guide .
CloudformationResource: AWS::IoTFleetWise::SignalCatalog
ExampleMetadata: fixture=_generated
Description
A brief description of the signal catalog.
public virtual string? Description { get; set; }
Property Value
Remarks
For more information, see Signal catalogs in the AWS IoT FleetWise Developer Guide .
CloudformationResource: AWS::IoTFleetWise::SignalCatalog
ExampleMetadata: fixture=_generated
Name
The name of the signal catalog.
public virtual string? Name { get; set; }
Property Value
Remarks
For more information, see Signal catalogs in the AWS IoT FleetWise Developer Guide .
CloudformationResource: AWS::IoTFleetWise::SignalCatalog
ExampleMetadata: fixture=_generated
NodeCounts
Information about the number of nodes and node types in a vehicle network.
public virtual object? NodeCounts { get; set; }
Property Value
Remarks
For more information, see Signal catalogs in the AWS IoT FleetWise Developer Guide .
CloudformationResource: AWS::IoTFleetWise::SignalCatalog
ExampleMetadata: fixture=_generated
Nodes
A list of information about nodes, which are a general abstraction of signals.
public virtual object? Nodes { get; set; }
Property Value
Remarks
For more information, see Signal catalogs in the AWS IoT FleetWise Developer Guide .
CloudformationResource: AWS::IoTFleetWise::SignalCatalog
ExampleMetadata: fixture=_generated
Tags
Tag Manager which manages the tags for this resource.
public virtual TagManager Tags { get; }
Property Value
Remarks
For more information, see Signal catalogs in the AWS IoT FleetWise Developer Guide .
CloudformationResource: AWS::IoTFleetWise::SignalCatalog
ExampleMetadata: fixture=_generated
TagsRaw
Metadata that can be used to manage the signal catalog.
public virtual ICfnTag[]? TagsRaw { get; set; }
Property Value
ICfnTag[]
Remarks
For more information, see Signal catalogs in the AWS IoT FleetWise Developer Guide .
CloudformationResource: AWS::IoTFleetWise::SignalCatalog
ExampleMetadata: fixture=_generated
Methods
Inspect(TreeInspector)
Examines the CloudFormation resource and discloses attributes.
public virtual void Inspect(TreeInspector inspector)
Parameters
- inspector TreeInspector
tree inspector to collect and process attributes.
Remarks
For more information, see Signal catalogs in the AWS IoT FleetWise Developer Guide .
CloudformationResource: AWS::IoTFleetWise::SignalCatalog
ExampleMetadata: fixture=_generated
RenderProperties(IDictionary<string, object>)
Creates a collection of standardized signals that can be reused to create vehicle models.
protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
- props IDictionary<string, object>
Returns
Overrides
Remarks
For more information, see Signal catalogs in the AWS IoT FleetWise Developer Guide .
CloudformationResource: AWS::IoTFleetWise::SignalCatalog
ExampleMetadata: fixture=_generated