interface CfnFuotaTaskMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTWireless.Mixins.CfnFuotaTaskMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotwireless/mixins#CfnFuotaTaskMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iotwireless.mixins.CfnFuotaTaskMixinProps |
Python | aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnFuotaTaskMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iotwireless » mixins » CfnFuotaTaskMixinProps |
Properties for CfnFuotaTaskPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotwireless_mixins } from '@aws-cdk/mixins-preview/aws-iotwireless';
const cfnFuotaTaskMixinProps: iotwireless_mixins.CfnFuotaTaskMixinProps = {
associateMulticastGroup: 'associateMulticastGroup',
associateWirelessDevice: 'associateWirelessDevice',
description: 'description',
disassociateMulticastGroup: 'disassociateMulticastGroup',
disassociateWirelessDevice: 'disassociateWirelessDevice',
firmwareUpdateImage: 'firmwareUpdateImage',
firmwareUpdateRole: 'firmwareUpdateRole',
loRaWan: {
rfRegion: 'rfRegion',
startTime: 'startTime',
},
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| associate | string | The ID of the multicast group to associate with a FUOTA task. |
| associate | string | The ID of the wireless device to associate with a multicast group. |
| description? | string | The description of the new resource. |
| disassociate | string | The ID of the multicast group to disassociate from a FUOTA task. |
| disassociate | string | The ID of the wireless device to disassociate from a FUOTA task. |
| firmware | string | The S3 URI points to a firmware update image that is to be used with a FUOTA task. |
| firmware | string | The firmware update role that is to be used with a FUOTA task. |
| lo | IResolvable | Lo | The LoRaWAN information used with a FUOTA task. |
| name? | string | The name of a FUOTA task. |
| tags? | Cfn[] | The tags are an array of key-value pairs to attach to the specified resource. |
associateMulticastGroup?
Type:
string
(optional)
The ID of the multicast group to associate with a FUOTA task.
associateWirelessDevice?
Type:
string
(optional)
The ID of the wireless device to associate with a multicast group.
description?
Type:
string
(optional)
The description of the new resource.
disassociateMulticastGroup?
Type:
string
(optional)
The ID of the multicast group to disassociate from a FUOTA task.
disassociateWirelessDevice?
Type:
string
(optional)
The ID of the wireless device to disassociate from a FUOTA task.
firmwareUpdateImage?
Type:
string
(optional)
The S3 URI points to a firmware update image that is to be used with a FUOTA task.
firmwareUpdateRole?
Type:
string
(optional)
The firmware update role that is to be used with a FUOTA task.
loRaWan?
Type:
IResolvable | Lo
(optional)
The LoRaWAN information used with a FUOTA task.
name?
Type:
string
(optional)
The name of a FUOTA task.
tags?
Type:
Cfn[]
(optional)
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.

.NET
Go
Java
Python
TypeScript