CfnServiceProfileProps
- class aws_cdk.aws_iotwireless.CfnServiceProfileProps(*, lo_ra_wan=None, name=None, tags=None)
- Bases: - object- Properties for defining a - CfnServiceProfile.- Parameters:
- lo_ra_wan ( - Union[- IResolvable,- LoRaWANServiceProfileProperty,- Dict[- str,- Any],- None]) – LoRaWAN service 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:
- 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_service_profile_props = iotwireless.CfnServiceProfileProps( lo_ra_wan=iotwireless.CfnServiceProfile.LoRaWANServiceProfileProperty( add_gw_metadata=False, channel_mask="channelMask", dev_status_req_freq=123, dl_bucket_size=123, dl_rate=123, dl_rate_policy="dlRatePolicy", dr_max=123, dr_min=123, hr_allowed=False, min_gw_diversity=123, nwk_geo_loc=False, pr_allowed=False, ra_allowed=False, report_dev_status_battery=False, report_dev_status_margin=False, target_per=123, ul_bucket_size=123, ul_rate=123, ul_rate_policy="ulRatePolicy" ), name="name", tags=[CfnTag( key="key", value="value" )] ) - Attributes - lo_ra_wan
- 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. - Tags can have a minimum of 0 and a maximum of 50 items.