Class CfnInboundExternalLink

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

@Generated(value="jsii-pacmak/1.125.0 (build fdbe357)", date="2026-01-08T14:57:12.938Z") @Stability(Stable) public class CfnInboundExternalLink extends CfnResource implements IInspectable, IInboundExternalLinkRef, ITaggableV2
Resource Type definition for AWS::RTBFabric::InboundExternalLink Resource Type.

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.rtbfabric.*;
 CfnInboundExternalLink cfnInboundExternalLink = CfnInboundExternalLink.Builder.create(this, "MyCfnInboundExternalLink")
         .gatewayId("gatewayId")
         .linkLogSettings(LinkLogSettingsProperty.builder()
                 .applicationLogs(ApplicationLogsProperty.builder()
                         .linkApplicationLogSampling(LinkApplicationLogSamplingProperty.builder()
                                 .errorLog(123)
                                 .filterLog(123)
                                 .build())
                         .build())
                 .build())
         // the properties below are optional
         .linkAttributes(LinkAttributesProperty.builder()
                 .customerProvidedId("customerProvidedId")
                 .responderErrorMasking(List.of(ResponderErrorMaskingForHttpCodeProperty.builder()
                         .action("action")
                         .httpCode("httpCode")
                         .loggingTypes(List.of("loggingTypes"))
                         // the properties below are optional
                         .responseLoggingPercentage(123)
                         .build()))
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .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

    • CfnInboundExternalLink

      protected CfnInboundExternalLink(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnInboundExternalLink

      protected CfnInboundExternalLink(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnInboundExternalLink

      @Stability(Stable) public CfnInboundExternalLink(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnInboundExternalLinkProps props)
      Create a new AWS::RTBFabric::InboundExternalLink.

      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

    • arnForInboundExternalLink

      @Stability(Stable) @NotNull public static String arnForInboundExternalLink(@NotNull IInboundExternalLinkRef resource)
      Parameters:
      resource - This parameter is required.
    • isCfnInboundExternalLink

      @Stability(Stable) @NotNull public static Boolean isCfnInboundExternalLink(@NotNull Object x)
      Checks whether the given object is a CfnInboundExternalLink.

      Parameters:
      x - This parameter is required.
    • 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.
    • getAttrArn

      @Stability(Stable) @NotNull public String getAttrArn()
    • getAttrCreatedTimestamp

      @Stability(Stable) @NotNull public String getAttrCreatedTimestamp()
    • getAttrLinkId

      @Stability(Stable) @NotNull public String getAttrLinkId()
    • getAttrLinkStatus

      @Stability(Stable) @NotNull public String getAttrLinkStatus()
    • getAttrUpdatedTimestamp

      @Stability(Stable) @NotNull public String getAttrUpdatedTimestamp()
    • getCdkTagManager

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

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

      @Stability(Stable) @NotNull public InboundExternalLinkReference getInboundExternalLinkRef()
      A reference to a InboundExternalLink resource.
      Specified by:
      getInboundExternalLinkRef in interface IInboundExternalLinkRef
    • getGatewayId

      @Stability(Stable) @NotNull public String getGatewayId()
    • setGatewayId

      @Stability(Stable) public void setGatewayId(@NotNull String value)
    • getLinkLogSettings

      @Stability(Stable) @NotNull public Object getLinkLogSettings()
    • setLinkLogSettings

      @Stability(Stable) public void setLinkLogSettings(@NotNull IResolvable value)
    • setLinkLogSettings

      @Stability(Stable) public void setLinkLogSettings(@NotNull CfnInboundExternalLink.LinkLogSettingsProperty value)
    • getLinkAttributes

      @Stability(Stable) @Nullable public Object getLinkAttributes()
    • setLinkAttributes

      @Stability(Stable) public void setLinkAttributes(@Nullable IResolvable value)
    • setLinkAttributes

      @Stability(Stable) public void setLinkAttributes(@Nullable CfnInboundExternalLink.LinkAttributesProperty value)
    • getTags

      @Stability(Stable) @Nullable public List<CfnTag> getTags()
      Tags to assign to the Link.
    • setTags

      @Stability(Stable) public void setTags(@Nullable List<CfnTag> value)
      Tags to assign to the Link.