CfnFuotaTaskPropsMixin
- class aws_cdk.cfn_property_mixins.aws_iotwireless.CfnFuotaTaskPropsMixin(props, *, strategy=None)
Bases:
MixinA FUOTA task.
- See:
- CloudformationResource:
AWS::IoTWireless::FuotaTask
- Mixin:
true
- 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.cfn_property_mixins import aws_iotwireless as iotwireless import aws_cdk as cdk # merge_strategy: cdk.IMergeStrategy cfn_fuota_task_props_mixin = iotwireless.CfnFuotaTaskPropsMixin(iotwireless.CfnFuotaTaskMixinProps( associate_multicast_group="associateMulticastGroup", associate_wireless_device="associateWirelessDevice", description="description", disassociate_multicast_group="disassociateMulticastGroup", disassociate_wireless_device="disassociateWirelessDevice", firmware_update_image="firmwareUpdateImage", firmware_update_role="firmwareUpdateRole", lo_ra_wan=iotwireless.CfnFuotaTaskPropsMixin.LoRaWANProperty( rf_region="rfRegion", start_time="startTime" ), name="name", tags=[cdk.CfnTag( key="key", value="value" )] ), strategy=merge_strategy )
Create a mixin to apply properties to
AWS::IoTWireless::FuotaTask.- Parameters:
props (
Union[CfnFuotaTaskMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[IMergeStrategy]) – Strategy for merging nested properties. Default: - PropertyMergeStrategy.combine()
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
None
- supports(construct)
Check if this mixin supports the given construct.
- Parameters:
construct (
IConstruct)- Return type:
bool
Attributes
- CFN_PROPERTY_KEYS = ['associateMulticastGroup', 'associateWirelessDevice', 'description', 'disassociateMulticastGroup', 'disassociateWirelessDevice', 'firmwareUpdateImage', 'firmwareUpdateRole', 'loRaWan', 'name', 'tags']
Static Methods
- classmethod is_mixin(x)
Checks if
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.
LoRaWANProperty
- class CfnFuotaTaskPropsMixin.LoRaWANProperty(*, rf_region=None, start_time=None)
Bases:
objectThe LoRaWAN information used with a FUOTA task.
- Parameters:
rf_region (
Optional[str]) – The frequency band (RFRegion) value.start_time (
Optional[str]) – Start time of a FUOTA task.
- 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.cfn_property_mixins import aws_iotwireless as iotwireless lo_ra_wANProperty = iotwireless.CfnFuotaTaskPropsMixin.LoRaWANProperty( rf_region="rfRegion", start_time="startTime" )
Attributes
- rf_region
The frequency band (RFRegion) value.
- start_time
Start time of a FUOTA task.