Interface CfnDeviceProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeviceProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.99.0 (build 8f757e4)", date="2024-07-01T22:44:05.020Z") @Stability(Stable) public interface CfnDeviceProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnDevice.

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
         .awsLocation(AWSLocationProperty.builder()
                 .subnetArn("subnetArn")
                 .zone("zone")
                 .build())
         .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();
 

See Also: