Class CfnFleetProps
Properties for defining a CfnFleet
.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.IoTFleetWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFleetProps : ICfnFleetProps
Syntax (vb)
Public Class CfnFleetProps Implements ICfnFleetProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-fleet.html
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 cfnFleetProps = new CfnFleetProps {
Id = "id",
SignalCatalogArn = "signalCatalogArn",
// the properties below are optional
Description = "description",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
CfnFleetProps() | Properties for defining a |
Properties
Description | A brief description of the fleet. |
Id | The unique ID of the fleet. |
SignalCatalogArn | The ARN of the signal catalog associated with the fleet. |
Tags | Metadata that can be used to manage the fleet. |
Constructors
CfnFleetProps()
Properties for defining a CfnFleet
.
public CfnFleetProps()
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-fleet.html
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 cfnFleetProps = new CfnFleetProps {
Id = "id",
SignalCatalogArn = "signalCatalogArn",
// the properties below are optional
Description = "description",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
Description
A brief description of the fleet.
public string? Description { get; set; }
Property Value
Remarks
Id
The unique ID of the fleet.
public string Id { get; set; }
Property Value
Remarks
SignalCatalogArn
The ARN of the signal catalog associated with the fleet.
public string SignalCatalogArn { get; set; }
Property Value
Remarks
Tags
Metadata that can be used to manage the fleet.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]