Interface CfnSiteProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSiteProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:11.429Z")
@Stability(Stable)
public interface CfnSiteProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnSite
.
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSiteProps
static final class
An implementation forCfnSiteProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnSiteProps.Builder
builder()
default String
A description of your site.The ID of the global network.default Object
The site location.getTags()
The tags for the site.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGlobalNetworkId
The ID of the global network.- See Also:
-
getDescription
A description of your site.Constraints: Maximum length of 256 characters.
- See Also:
-
getLocation
The site location.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.
- See Also:
-
getTags
The tags for the site.- See Also:
-
builder
- Returns:
- a
CfnSiteProps.Builder
ofCfnSiteProps
-