Interface CfnWirelessDeviceImportTaskProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWirelessDeviceImportTaskProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.109.0 (build c221850)",
date="2025-03-19T18:01:37.006Z")
@Stability(Stable)
public interface CfnWirelessDeviceImportTaskProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnWirelessDeviceImportTask
.
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.*; CfnWirelessDeviceImportTaskProps cfnWirelessDeviceImportTaskProps = CfnWirelessDeviceImportTaskProps.builder() .destinationName("destinationName") .sidewalk(SidewalkProperty.builder() .deviceCreationFile("deviceCreationFile") .deviceCreationFileList(List.of("deviceCreationFileList")) .role("role") .sidewalkManufacturingSn("sidewalkManufacturingSn") .build()) // the properties below are optional .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnWirelessDeviceImportTaskProps
static final class
An implementation forCfnWirelessDeviceImportTaskProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The name of the destination that describes the IoT rule to route messages from the Sidewalk devices in the import task to other applications.The Sidewalk-related information of the wireless device import task.getTags()
Adds to or modifies the tags of the given resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinationName
The name of the destination that describes the IoT rule to route messages from the Sidewalk devices in the import task to other applications.- See Also:
-
getSidewalk
The Sidewalk-related information of the wireless device import task.- See Also:
-
getTags
Adds to or modifies the tags of the given resource.Tags are metadata that you can use to manage a resource.
- See Also:
-
builder
-