interface LoRaWANUpdateGatewayTaskEntryProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.IoTWireless.CfnTaskDefinition.LoRaWANUpdateGatewayTaskEntryProperty | 
|  Java | software.amazon.awscdk.services.iotwireless.CfnTaskDefinition.LoRaWANUpdateGatewayTaskEntryProperty | 
|  Python | aws_cdk.aws_iotwireless.CfnTaskDefinition.LoRaWANUpdateGatewayTaskEntryProperty | 
|  TypeScript | @aws-cdk/aws-iotwireless»CfnTaskDefinition»LoRaWANUpdateGatewayTaskEntryProperty | 
LoRaWANUpdateGatewayTaskEntry object.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iotwireless from '@aws-cdk/aws-iotwireless';
const loRaWANUpdateGatewayTaskEntryProperty: iotwireless.CfnTaskDefinition.LoRaWANUpdateGatewayTaskEntryProperty = {
  currentVersion: {
    model: 'model',
    packageVersion: 'packageVersion',
    station: 'station',
  },
  updateVersion: {
    model: 'model',
    packageVersion: 'packageVersion',
    station: 'station',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| current | IResolvable | Lo | The version of the gateways that should receive the update. | 
| update | IResolvable | Lo | The firmware version to update the gateway to. | 
currentVersion?
Type:
IResolvable | Lo
(optional)
The version of the gateways that should receive the update.
updateVersion?
Type:
IResolvable | Lo
(optional)
The firmware version to update the gateway to.
