@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.088Z") @Stability(value=Stable) public interface CfnTaskDefinitionProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnTaskDefinitionProps cfnTaskDefinitionProps = CfnTaskDefinitionProps.builder()
.autoCreateTasks(false)
// the properties below are optional
.loRaWanUpdateGatewayTaskEntry(LoRaWANUpdateGatewayTaskEntryProperty.builder()
.currentVersion(LoRaWANGatewayVersionProperty.builder()
.model("model")
.packageVersion("packageVersion")
.station("station")
.build())
.updateVersion(LoRaWANGatewayVersionProperty.builder()
.model("model")
.packageVersion("packageVersion")
.station("station")
.build())
.build())
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.taskDefinitionType("taskDefinitionType")
.update(UpdateWirelessGatewayTaskCreateProperty.builder()
.loRaWan(LoRaWANUpdateGatewayTaskCreateProperty.builder()
.currentVersion(LoRaWANGatewayVersionProperty.builder()
.model("model")
.packageVersion("packageVersion")
.station("station")
.build())
.sigKeyCrc(123)
.updateSignature("updateSignature")
.updateVersion(LoRaWANGatewayVersionProperty.builder()
.model("model")
.packageVersion("packageVersion")
.station("station")
.build())
.build())
.updateDataRole("updateDataRole")
.updateDataSource("updateDataSource")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnTaskDefinitionProps.Builder
A builder for
CfnTaskDefinitionProps |
static class |
CfnTaskDefinitionProps.Jsii$Proxy
An implementation for
CfnTaskDefinitionProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnTaskDefinitionProps.Builder |
builder() |
Object |
getAutoCreateTasks()
Whether to automatically create tasks using this task definition for all gateways with the specified current version.
|
default Object |
getLoRaWanUpdateGatewayTaskEntry()
`AWS::IoTWireless::TaskDefinition.LoRaWANUpdateGatewayTaskEntry`.
|
default String |
getName()
The name of the new resource.
|
default List<CfnTag> |
getTags()
The tags are an array of key-value pairs to attach to the specified resource.
|
default String |
getTaskDefinitionType()
`AWS::IoTWireless::TaskDefinition.TaskDefinitionType`.
|
default Object |
getUpdate()
Information about the gateways to update.
|
@Stability(value=Stable) @NotNull Object getAutoCreateTasks()
If false , the task must me created by calling CreateWirelessGatewayTask .
@Stability(value=Stable) @Nullable default Object getLoRaWanUpdateGatewayTaskEntry()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
Tags can have a minimum of 0 and a maximum of 50 items.
@Stability(value=Stable) @Nullable default String getTaskDefinitionType()
@Stability(value=Stable) @Nullable default Object getUpdate()
@Stability(value=Stable) static CfnTaskDefinitionProps.Builder builder()
CfnTaskDefinitionProps.Builder of CfnTaskDefinitionPropsCopyright © 2022. All rights reserved.