Show / Hide Table of Contents

Class CfnServiceProfileProps

Properties for defining a CfnServiceProfile.

Inheritance
object
CfnServiceProfileProps
Implements
ICfnServiceProfileProps
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 CfnServiceProfileProps : ICfnServiceProfileProps
Syntax (vb)
Public Class CfnServiceProfileProps Implements ICfnServiceProfileProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-serviceprofile.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 cfnServiceProfileProps = new CfnServiceProfileProps {
                 LoRaWan = new LoRaWANServiceProfileProperty {
                     AddGwMetadata = false,
                     ChannelMask = "channelMask",
                     DevStatusReqFreq = 123,
                     DlBucketSize = 123,
                     DlRate = 123,
                     DlRatePolicy = "dlRatePolicy",
                     DrMax = 123,
                     DrMin = 123,
                     HrAllowed = false,
                     MinGwDiversity = 123,
                     NwkGeoLoc = false,
                     PrAllowed = false,
                     RaAllowed = false,
                     ReportDevStatusBattery = false,
                     ReportDevStatusMargin = false,
                     TargetPer = 123,
                     UlBucketSize = 123,
                     UlRate = 123,
                     UlRatePolicy = "ulRatePolicy"
                 },
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnServiceProfileProps()

Properties for defining a CfnServiceProfile.

Properties

LoRaWan

LoRaWAN service 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

CfnServiceProfileProps()

Properties for defining a CfnServiceProfile.

public CfnServiceProfileProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-serviceprofile.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 cfnServiceProfileProps = new CfnServiceProfileProps {
                 LoRaWan = new LoRaWANServiceProfileProperty {
                     AddGwMetadata = false,
                     ChannelMask = "channelMask",
                     DevStatusReqFreq = 123,
                     DlBucketSize = 123,
                     DlRate = 123,
                     DlRatePolicy = "dlRatePolicy",
                     DrMax = 123,
                     DrMin = 123,
                     HrAllowed = false,
                     MinGwDiversity = 123,
                     NwkGeoLoc = false,
                     PrAllowed = false,
                     RaAllowed = false,
                     ReportDevStatusBattery = false,
                     ReportDevStatusMargin = false,
                     TargetPer = 123,
                     UlBucketSize = 123,
                     UlRate = 123,
                     UlRatePolicy = "ulRatePolicy"
                 },
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

LoRaWan

LoRaWAN service profile object.

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

object

Remarks

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

Type union: either IResolvable or CfnServiceProfile.ILoRaWANServiceProfileProperty

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-serviceprofile.html#cfn-iotwireless-serviceprofile-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-serviceprofile.html#cfn-iotwireless-serviceprofile-tags

Implements

ICfnServiceProfileProps
Back to top Generated by DocFX