Interface CfnGlobalNetworkProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGlobalNetworkProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T23:37:25.684Z")
@Stability(Stable)
public interface CfnGlobalNetworkProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnGlobalNetwork.
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.*;
CfnGlobalNetworkProps cfnGlobalNetworkProps = CfnGlobalNetworkProps.builder()
.createdAt("createdAt")
.description("description")
.state("state")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGlobalNetworkPropsstatic final classAn implementation forCfnGlobalNetworkProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCreatedAt
The date and time that the global network was created.- See Also:
-
getDescription
A description of the global network.Constraints: Maximum length of 256 characters.
- See Also:
-
getState
The state of the global network.- See Also:
-
getTags
The tags for the global network.- See Also:
-
builder
- Returns:
- a
CfnGlobalNetworkProps.BuilderofCfnGlobalNetworkProps
-