@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.060Z") @Stability(value=Stable) public interface CfnDeviceProps 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.networkmanager.*;
CfnDeviceProps cfnDeviceProps = CfnDeviceProps.builder()
.globalNetworkId("globalNetworkId")
// the properties below are optional
.description("description")
.location(LocationProperty.builder()
.address("address")
.latitude("latitude")
.longitude("longitude")
.build())
.model("model")
.serialNumber("serialNumber")
.siteId("siteId")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.type("type")
.vendor("vendor")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeviceProps.Builder
A builder for
CfnDeviceProps |
static class |
CfnDeviceProps.Jsii$Proxy
An implementation for
CfnDeviceProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeviceProps.Builder |
builder() |
default String |
getDescription()
A description of the device.
|
String |
getGlobalNetworkId()
The ID of the global network.
|
default Object |
getLocation()
The site location.
|
default String |
getModel()
The model of the device.
|
default String |
getSerialNumber()
The serial number of the device.
|
default String |
getSiteId()
The site ID.
|
default List<CfnTag> |
getTags()
The tags for the device.
|
default String |
getType()
The device type.
|
default String |
getVendor()
The vendor of the device.
|
@Stability(value=Stable) @NotNull String getGlobalNetworkId()
@Stability(value=Stable) @Nullable default String getDescription()
Constraints: Maximum length of 256 characters.
@Stability(value=Stable) @Nullable default Object getLocation()
@Stability(value=Stable) @Nullable default String getModel()
Constraints: Maximum length of 128 characters.
@Stability(value=Stable) @Nullable default String getSerialNumber()
Constraints: Maximum length of 128 characters.
@Stability(value=Stable) @Nullable default String getSiteId()
@Stability(value=Stable) @Nullable default String getType()
@Stability(value=Stable) @Nullable default String getVendor()
Constraints: Maximum length of 128 characters.
@Stability(value=Stable) static CfnDeviceProps.Builder builder()
CfnDeviceProps.Builder of CfnDevicePropsCopyright © 2022. All rights reserved.