Interface CfnDeviceMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeviceMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:04.900Z")
@Stability(Stable)
public interface CfnDeviceMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDevicePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.sagemaker.*;
CfnDeviceMixinProps cfnDeviceMixinProps = CfnDeviceMixinProps.builder()
.device(DeviceProperty.builder()
.description("description")
.deviceName("deviceName")
.iotThingName("iotThingName")
.build())
.deviceFleetName("deviceFleetName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDeviceMixinPropsstatic final classAn implementation forCfnDeviceMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDeviceMixinProps.Builderbuilder()default ObjectEdge device you want to create.default StringThe name of the fleet the device belongs to.getTags()An array of key-value pairs that contain metadata to help you categorize and organize your devices.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDevice
Edge device you want to create.Returns union: either
IResolvableorCfnDevicePropsMixin.DeviceProperty- See Also:
-
getDeviceFleetName
The name of the fleet the device belongs to.- See Also:
-
getTags
An array of key-value pairs that contain metadata to help you categorize and organize your devices.Each tag consists of a key and a value, both of which you define.
- See Also:
-
builder
- Returns:
- a
CfnDeviceMixinProps.BuilderofCfnDeviceMixinProps
-