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
[LoRaWANDeviceProfileProperty
,Dict
[str
,Any
],IResolvable
,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.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.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.
- name
The name of the new resource.
- 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.