Show / Hide Table of Contents

Class CfnDeviceProfileProps

Properties for defining a CfnDeviceProfile.

Inheritance
object
CfnDeviceProfileProps
Implements
ICfnDeviceProfileProps
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.IoTWireless
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDeviceProfileProps : ICfnDeviceProfileProps
Syntax (vb)
Public Class CfnDeviceProfileProps Implements ICfnDeviceProfileProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-deviceprofile.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.IoTWireless;

             var cfnDeviceProfileProps = new CfnDeviceProfileProps {
                 LoRaWan = new LoRaWANDeviceProfileProperty {
                     ClassBTimeout = 123,
                     ClassCTimeout = 123,
                     FactoryPresetFreqsList = new [] { 123 },
                     MacVersion = "macVersion",
                     MaxDutyCycle = 123,
                     MaxEirp = 123,
                     PingSlotDr = 123,
                     PingSlotFreq = 123,
                     PingSlotPeriod = 123,
                     RegParamsRevision = "regParamsRevision",
                     RfRegion = "rfRegion",
                     RxDataRate2 = 123,
                     RxDelay1 = 123,
                     RxDrOffset1 = 123,
                     RxFreq2 = 123,
                     Supports32BitFCnt = false,
                     SupportsClassB = false,
                     SupportsClassC = false,
                     SupportsJoin = false
                 },
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnDeviceProfileProps()

Properties for defining a CfnDeviceProfile.

Properties

LoRaWan

LoRaWAN device profile object.

Name

The name of the new resource.

Tags

The tags are an array of key-value pairs to attach to the specified resource.

Constructors

CfnDeviceProfileProps()

Properties for defining a CfnDeviceProfile.

public CfnDeviceProfileProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-deviceprofile.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.IoTWireless;

             var cfnDeviceProfileProps = new CfnDeviceProfileProps {
                 LoRaWan = new LoRaWANDeviceProfileProperty {
                     ClassBTimeout = 123,
                     ClassCTimeout = 123,
                     FactoryPresetFreqsList = new [] { 123 },
                     MacVersion = "macVersion",
                     MaxDutyCycle = 123,
                     MaxEirp = 123,
                     PingSlotDr = 123,
                     PingSlotFreq = 123,
                     PingSlotPeriod = 123,
                     RegParamsRevision = "regParamsRevision",
                     RfRegion = "rfRegion",
                     RxDataRate2 = 123,
                     RxDelay1 = 123,
                     RxDrOffset1 = 123,
                     RxFreq2 = 123,
                     Supports32BitFCnt = false,
                     SupportsClassB = false,
                     SupportsClassC = false,
                     SupportsJoin = false
                 },
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

LoRaWan

LoRaWAN device profile object.

public object? LoRaWan { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-deviceprofile.html#cfn-iotwireless-deviceprofile-lorawan

Name

The name of the new resource.

public string? Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-deviceprofile.html#cfn-iotwireless-deviceprofile-name

Tags

The tags are an array of key-value pairs to attach to the specified resource.

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

ICfnTag[]

Remarks

Tags can have a minimum of 0 and a maximum of 50 items.

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

Implements

ICfnDeviceProfileProps
Back to top Generated by DocFX