CfnDeviceProfileProps

class aws_cdk.aws_iotwireless.CfnDeviceProfileProps(*, lo_ra_wan=None, name=None, tags=None)

Bases: object

Properties for defining a CfnDeviceProfile.

Parameters:
  • lo_ra_wan (Union[IResolvable, LoRaWANDeviceProfileProperty, Dict[str, Any], None]) – LoRaWAN device profile object.

  • name (Optional[str]) – The name of the new resource.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags are an array of key-value pairs to attach to the specified resource. 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

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_iotwireless as iotwireless

cfn_device_profile_props = iotwireless.CfnDeviceProfileProps(
    lo_ra_wan=iotwireless.CfnDeviceProfile.LoRaWANDeviceProfileProperty(
        class_bTimeout=123,
        class_cTimeout=123,
        factory_preset_freqs_list=[123],
        mac_version="macVersion",
        max_duty_cycle=123,
        max_eirp=123,
        ping_slot_dr=123,
        ping_slot_freq=123,
        ping_slot_period=123,
        reg_params_revision="regParamsRevision",
        rf_region="rfRegion",
        rx_data_rate2=123,
        rx_delay1=123,
        rx_dr_offset1=123,
        rx_freq2=123,
        supports32_bit_fCnt=False,
        supports_class_b=False,
        supports_class_c=False,
        supports_join=False
    ),
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

lo_ra_wan

LoRaWAN device profile object.

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.

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.

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