Class CfnLink
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.networkmanager.CfnLink
- All Implemented Interfaces:
IInspectable
,ITaggable
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:04.921Z")
@Stability(Stable)
public class CfnLink
extends CfnResource
implements IInspectable, ITaggable
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();
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
Describes bandwidth information.static final class
A fluent builder forCfnLink
.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.ITaggable
ITaggable.Jsii$Default, ITaggable.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionprotected
CfnLink
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnLink
(software.amazon.jsii.JsiiObjectRef objRef) CfnLink
(software.constructs.Construct scope, String id, CfnLinkProps props) -
Method Summary
Modifier and TypeMethodDescriptionThe date and time that the link was created.The ARN of the link.The ID of the link.The state 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()
Tag Manager which manages the tags for this resource.The tags for the link.getType()
The type of the link.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
setBandwidth
(IResolvable value) The bandwidth for the link.void
The bandwidth for the link.void
setDescription
(String value) A description of the link.void
setGlobalNetworkId
(String value) The ID of the global network.void
setProvider
(String value) The provider of the link.void
The ID of the site.void
setTagsRaw
(List<CfnTag> value) The tags for the link.void
The type of the link.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validateProperties
Methods inherited from class software.amazon.awscdk.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.constructs.Construct
getNode, isConstruct
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods 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 software.constructs.Construct scope, @NotNull String id, @NotNull CfnLinkProps props) - Parameters:
scope
- Scope in which this resource is defined. This parameter is required.id
- Construct identifier for this resource (unique in its scope). This parameter is required.props
- Resource properties. This parameter is required.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspect
in interfaceIInspectable
- Parameters:
inspector
- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getAttrCreatedAt
The date and time that the link was created. -
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
. -
getAttrState
The state of the link. -
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getTags
Tag Manager which manages the tags for this resource. -
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. -
setDescription
A description of the link. -
getProvider
The provider of the link. -
setProvider
The provider of the link. -
getTagsRaw
The tags for the link. -
setTagsRaw
The tags for the link. -
getType
The type of the link. -
setType
The type of the link.
-