Interface CfnWirelessDeviceImportTaskProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWirelessDeviceImportTaskProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:54.236Z")
@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 classA builder forCfnWirelessDeviceImportTaskPropsstatic final classAn 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.Returns union: either
IResolvableorCfnWirelessDeviceImportTask.SidewalkProperty- 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
-