@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:17.828Z") @Stability(value=Stable) public interface CfnDeviceDefinitionProps 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.greengrass.*;
Object tags;
CfnDeviceDefinitionProps cfnDeviceDefinitionProps = CfnDeviceDefinitionProps.builder()
.name("name")
// the properties below are optional
.initialVersion(DeviceDefinitionVersionProperty.builder()
.devices(List.of(DeviceProperty.builder()
.certificateArn("certificateArn")
.id("id")
.thingArn("thingArn")
// the properties below are optional
.syncShadow(false)
.build()))
.build())
.tags(tags)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeviceDefinitionProps.Builder
A builder for
CfnDeviceDefinitionProps |
static class |
CfnDeviceDefinitionProps.Jsii$Proxy
An implementation for
CfnDeviceDefinitionProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeviceDefinitionProps.Builder |
builder() |
default Object |
getInitialVersion()
`AWS::Greengrass::DeviceDefinition.InitialVersion`.
|
String |
getName()
`AWS::Greengrass::DeviceDefinition.Name`.
|
default Object |
getTags()
`AWS::Greengrass::DeviceDefinition.Tags`.
|
@Stability(value=Stable) @Nullable default Object getInitialVersion()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default Object getTags()
@Stability(value=Stable) static CfnDeviceDefinitionProps.Builder builder()
CfnDeviceDefinitionProps.Builder of CfnDeviceDefinitionPropsCopyright © 2021. All rights reserved.