CfnFuotaTaskPropsMixin

class aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnFuotaTaskPropsMixin(props, *, strategy=None)

Bases: Mixin

A FUOTA task.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-fuotatask.html

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.mixins_preview import mixins
from aws_cdk.mixins_preview.aws_iotwireless import mixins as iotwireless_mixins

cfn_fuota_task_props_mixin = iotwireless_mixins.CfnFuotaTaskPropsMixin(iotwireless_mixins.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_mixins.CfnFuotaTaskPropsMixin.LoRaWANProperty(
        rf_region="rfRegion",
        start_time="startTime"
    ),
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
),
    strategy=mixins.PropertyMergeStrategy.OVERRIDE
)

Create a mixin to apply properties to AWS::IoTWireless::FuotaTask.

Parameters:
  • props (Union[CfnFuotaTaskMixinProps, Dict[str, Any]]) – L1 properties to apply.

  • strategy (Optional[PropertyMergeStrategy]) – (experimental) Strategy for merging nested properties. Default: - PropertyMergeStrategy.MERGE

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

IConstruct

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)

(experimental) Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

Stability:

experimental

LoRaWANProperty

class CfnFuotaTaskPropsMixin.LoRaWANProperty(*, rf_region=None, start_time=None)

Bases: object

The 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotwireless-fuotatask-lorawan.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.mixins_preview.aws_iotwireless import mixins as iotwireless_mixins

lo_ra_wANProperty = iotwireless_mixins.CfnFuotaTaskPropsMixin.LoRaWANProperty(
    rf_region="rfRegion",
    start_time="startTime"
)

Attributes

rf_region

The frequency band (RFRegion) value.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotwireless-fuotatask-lorawan.html#cfn-iotwireless-fuotatask-lorawan-rfregion

start_time

Start time of a FUOTA task.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotwireless-fuotatask-lorawan.html#cfn-iotwireless-fuotatask-lorawan-starttime