@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.064Z") @Stability(value=Stable) public interface CfnSiteProps 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.*;
CfnSiteProps cfnSiteProps = CfnSiteProps.builder()
.globalNetworkId("globalNetworkId")
// the properties below are optional
.description("description")
.location(LocationProperty.builder()
.address("address")
.latitude("latitude")
.longitude("longitude")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnSiteProps.Builder
A builder for
CfnSiteProps |
static class |
CfnSiteProps.Jsii$Proxy
An implementation for
CfnSiteProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnSiteProps.Builder |
builder() |
default String |
getDescription()
A description of your site.
|
String |
getGlobalNetworkId()
The ID of the global network.
|
default Object |
getLocation()
The site location.
|
default List<CfnTag> |
getTags()
The tags for the site.
|
@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()
This information is used for visualization in the Network Manager console. If you specify the address, the latitude and longitude are automatically calculated.
Address : The physical address of the site.Latitude : The latitude of the site.Longitude : The longitude of the site.@Stability(value=Stable) static CfnSiteProps.Builder builder()
CfnSiteProps.Builder of CfnSitePropsCopyright © 2022. All rights reserved.