java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IInspectable, ITaggable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:10.171Z") @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:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String 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

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      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 class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrCreatedAt

      @Stability(Stable) @NotNull public String getAttrCreatedAt()
      The date and time that the link was created.
    • getAttrLinkArn

      @Stability(Stable) @NotNull public String getAttrLinkArn()
      The ARN of the link.

      For example, arn:aws:networkmanager::123456789012:link/global-network-01231231231231231/link-11112222aaaabbbb1 .

    • getAttrLinkId

      @Stability(Stable) @NotNull public String getAttrLinkId()
      The ID of the link.

      For example, link-11112222aaaabbbb1 .

    • getAttrState

      @Stability(Stable) @NotNull public String getAttrState()
      The state of the link.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getTags

      @Stability(Stable) @NotNull public TagManager getTags()
      Tag Manager which manages the tags for this resource.
      Specified by:
      getTags in interface ITaggable
    • getBandwidth

      @Stability(Stable) @NotNull public Object getBandwidth()
      The bandwidth for the link.
    • setBandwidth

      @Stability(Stable) public void setBandwidth(@NotNull IResolvable value)
      The bandwidth for the link.
    • setBandwidth

      @Stability(Stable) public void setBandwidth(@NotNull CfnLink.BandwidthProperty value)
      The bandwidth for the link.
    • getGlobalNetworkId

      @Stability(Stable) @NotNull public String getGlobalNetworkId()
      The ID of the global network.
    • setGlobalNetworkId

      @Stability(Stable) public void setGlobalNetworkId(@NotNull String value)
      The ID of the global network.
    • getSiteId

      @Stability(Stable) @NotNull public String getSiteId()
      The ID of the site.
    • setSiteId

      @Stability(Stable) public void setSiteId(@NotNull String value)
      The ID of the site.
    • getDescription

      @Stability(Stable) @Nullable public String getDescription()
      A description of the link.
    • setDescription

      @Stability(Stable) public void setDescription(@Nullable String value)
      A description of the link.
    • getProvider

      @Stability(Stable) @Nullable public String getProvider()
      The provider of the link.
    • setProvider

      @Stability(Stable) public void setProvider(@Nullable String value)
      The provider of the link.
    • getTagsRaw

      @Stability(Stable) @Nullable public List<CfnTag> getTagsRaw()
      The tags for the link.
    • setTagsRaw

      @Stability(Stable) public void setTagsRaw(@Nullable List<CfnTag> value)
      The tags for the link.
    • getType

      @Stability(Stable) @Nullable public String getType()
      The type of the link.
    • setType

      @Stability(Stable) public void setType(@Nullable String value)
      The type of the link.