Interface CfnDeviceDefinitionVersionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeviceDefinitionVersionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-10-31T19:12:59.064Z")
@Stability(Stable)
public interface CfnDeviceDefinitionVersionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDeviceDefinitionVersion
.
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.greengrass.*; CfnDeviceDefinitionVersionProps cfnDeviceDefinitionVersionProps = CfnDeviceDefinitionVersionProps.builder() .deviceDefinitionId("deviceDefinitionId") .devices(List.of(DeviceProperty.builder() .certificateArn("certificateArn") .id("id") .thingArn("thingArn") // the properties below are optional .syncShadow(false) .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDeviceDefinitionVersionProps
static final class
An implementation forCfnDeviceDefinitionVersionProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The ID of the device definition associated with this version.The devices in this version.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDeviceDefinitionId
The ID of the device definition associated with this version.This value is a GUID.
- See Also:
-
getDevices
The devices in this version.- See Also:
-
builder
-