Interface CfnTaskDefinition.LoRaWANUpdateGatewayTaskEntryProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTaskDefinition.LoRaWANUpdateGatewayTaskEntryProperty.Jsii$Proxy
Enclosing class:
CfnTaskDefinition

@Stability(Stable) public static interface CfnTaskDefinition.LoRaWANUpdateGatewayTaskEntryProperty extends software.amazon.jsii.JsiiSerializable
LoRaWANUpdateGatewayTaskEntry object.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.iotwireless.*;
 LoRaWANUpdateGatewayTaskEntryProperty loRaWANUpdateGatewayTaskEntryProperty = LoRaWANUpdateGatewayTaskEntryProperty.builder()
         .currentVersion(LoRaWANGatewayVersionProperty.builder()
                 .model("model")
                 .packageVersion("packageVersion")
                 .station("station")
                 .build())
         .updateVersion(LoRaWANGatewayVersionProperty.builder()
                 .model("model")
                 .packageVersion("packageVersion")
                 .station("station")
                 .build())
         .build();