interface BranchProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnSignalCatalogPropsMixin.BranchProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnSignalCatalogPropsMixin_BranchProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnSignalCatalogPropsMixin.BranchProperty |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnSignalCatalogPropsMixin.BranchProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » CfnSignalCatalogPropsMixin » BranchProperty |
A group of signals that are defined in a hierarchical structure.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotfleetwise_mixins } from '@aws-cdk/mixins-preview/aws-iotfleetwise';
const branchProperty: iotfleetwise_mixins.CfnSignalCatalogPropsMixin.BranchProperty = {
description: 'description',
fullyQualifiedName: 'fullyQualifiedName',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A brief description of the branch. |
| fully | string | The fully qualified name of the branch. |
description?
Type:
string
(optional)
A brief description of the branch.
fullyQualifiedName?
Type:
string
(optional)
The fully qualified name of the branch.
For example, the fully qualified name of a branch might be Vehicle.Body.Engine .

.NET
Go
Java
Python
TypeScript