Class CfnLink
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.core.Construct
software.amazon.awscdk.core.CfnElement
software.amazon.awscdk.core.CfnRefElement
software.amazon.awscdk.core.CfnResource
software.amazon.awscdk.services.networkmanager.CfnLink
- All Implemented Interfaces:
IConstruct,IDependable,IInspectable,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:00.460Z")
@Stability(Stable)
public class CfnLink
extends CfnResource
implements IInspectable
A CloudFormation
AWS::NetworkManager::Link.
Specifies a link for a site.
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.*;
CfnLink cfnLink = CfnLink.Builder.create(this, "MyCfnLink")
.bandwidth(BandwidthProperty.builder()
.downloadSpeed(123)
.uploadSpeed(123)
.build())
.globalNetworkId("globalNetworkId")
.siteId("siteId")
// the properties below are optional
.description("description")
.provider("provider")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.type("type")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceDescribes bandwidth information.static final classA fluent builder forCfnLink.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.core.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionThe ARN of the link.The ID of the link.The bandwidth for the link.A description of the link.The ID of the global network.The provider of the link.The ID of the site.getTags()The tags for the link.getType()The type of the link.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties(Map<String, Object> props) voidsetBandwidth(IResolvable value) The bandwidth for the link.voidThe bandwidth for the link.voidsetDescription(String value) A description of the link.voidsetGlobalNetworkId(String value) The ID of the global network.voidsetProvider(String value) The provider of the link.voidThe ID of the site.voidThe type of the link.Methods inherited from class software.amazon.awscdk.core.CfnResource
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.core.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.core.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdMethods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validateMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnLink
protected CfnLink(software.amazon.jsii.JsiiObjectRef objRef) -
CfnLink
protected CfnLink(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnLink
@Stability(Stable) public CfnLink(@NotNull Construct scope, @NotNull String id, @NotNull CfnLinkProps props) Create a newAWS::NetworkManager::Link.- Parameters:
scope-- scope in which this resource is defined.
id-- scoped id of the resource.
props-- resource properties.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector-- tree inspector to collect and process attributes.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getAttrLinkArn
The ARN of the link.For example,
arn:aws:networkmanager::123456789012:link/global-network-01231231231231231/link-11112222aaaabbbb1. -
getAttrLinkId
The ID of the link.For example,
link-11112222aaaabbbb1. -
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getTags
The tags for the link. -
getBandwidth
The bandwidth for the link. -
setBandwidth
The bandwidth for the link. -
setBandwidth
The bandwidth for the link. -
getGlobalNetworkId
The ID of the global network. -
setGlobalNetworkId
The ID of the global network. -
getSiteId
The ID of the site. -
setSiteId
The ID of the site. -
getDescription
A description of the link.Constraints: Maximum length of 256 characters.
-
setDescription
A description of the link.Constraints: Maximum length of 256 characters.
-
getProvider
The provider of the link.Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^
-
setProvider
The provider of the link.Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^
-
getType
The type of the link.Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^
-
setType
The type of the link.Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^
-