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.119.0 (build 1634eac)", date="2025-11-20T13:52:10.811Z") @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