Show / Hide Table of Contents

Class CfnFleetProps

Properties for defining a CfnFleet.

Inheritance
object
CfnFleetProps
Implements
ICfnFleetProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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 CfnFleet.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-fleet.html#cfn-iotfleetwise-fleet-description

Id

The unique ID of the fleet.

public string Id { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-fleet.html#cfn-iotfleetwise-fleet-id

SignalCatalogArn

The ARN of the signal catalog associated with the fleet.

public string SignalCatalogArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-fleet.html#cfn-iotfleetwise-fleet-signalcatalogarn

Tags

Metadata that can be used to manage the fleet.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-fleet.html#cfn-iotfleetwise-fleet-tags

Implements

ICfnFleetProps
Back to top Generated by DocFX