interface LoRaWANUpdateGatewayTaskEntryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTWireless.Mixins.CfnTaskDefinitionPropsMixin.LoRaWANUpdateGatewayTaskEntryProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotwireless/mixins#CfnTaskDefinitionPropsMixin_LoRaWANUpdateGatewayTaskEntryProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotwireless.mixins.CfnTaskDefinitionPropsMixin.LoRaWANUpdateGatewayTaskEntryProperty |
Python | aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnTaskDefinitionPropsMixin.LoRaWANUpdateGatewayTaskEntryProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotwireless » mixins » CfnTaskDefinitionPropsMixin » LoRaWANUpdateGatewayTaskEntryProperty |
LoRaWANUpdateGatewayTaskEntry object.
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 loRaWANUpdateGatewayTaskEntryProperty: iotwireless_mixins.CfnTaskDefinitionPropsMixin.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.

.NET
Go
Java
Python
TypeScript