java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.Mixin
software.amazon.awscdk.cfnpropertymixins.services.rtbfabric.CfnLinkPropsMixin
All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable, software.constructs.IMixin

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:20:04.663Z") @Stability(Stable) public class CfnLinkPropsMixin extends Mixin implements software.constructs.IMixin
Creates a new link between gateways.

Establishes a connection that allows gateways to communicate and exchange bid requests and responses.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.rtbfabric.*;
 import software.amazon.awscdk.*;
 IMergeStrategy mergeStrategy;
 CfnLinkPropsMixin cfnLinkPropsMixin = CfnLinkPropsMixin.Builder.create(CfnLinkMixinProps.builder()
         .gatewayId("gatewayId")
         .httpResponderAllowed(false)
         .linkAttributes(LinkAttributesProperty.builder()
                 .customerProvidedId("customerProvidedId")
                 .responderErrorMasking(List.of(ResponderErrorMaskingForHttpCodeProperty.builder()
                         .action("action")
                         .httpCode("httpCode")
                         .loggingTypes(List.of("loggingTypes"))
                         .responseLoggingPercentage(123)
                         .build()))
                 .build())
         .linkLogSettings(LinkLogSettingsProperty.builder()
                 .applicationLogs(ApplicationLogsProperty.builder()
                         .linkApplicationLogSampling(LinkApplicationLogSamplingProperty.builder()
                                 .errorLog(123)
                                 .filterLog(123)
                                 .build())
                         .build())
                 .build())
         .moduleConfigurationList(List.of(ModuleConfigurationProperty.builder()
                 .dependsOn(List.of("dependsOn"))
                 .moduleParameters(ModuleParametersProperty.builder()
                         .noBid(NoBidModuleParametersProperty.builder()
                                 .passThroughPercentage(123)
                                 .reason("reason")
                                 .reasonCode(123)
                                 .build())
                         .openRtbAttribute(OpenRtbAttributeModuleParametersProperty.builder()
                                 .action(ActionProperty.builder()
                                         .headerTag(HeaderTagActionProperty.builder()
                                                 .name("name")
                                                 .value("value")
                                                 .build())
                                         .noBid(NoBidActionProperty.builder()
                                                 .noBidReasonCode(123)
                                                 .build())
                                         .build())
                                 .filterConfiguration(List.of(FilterProperty.builder()
                                         .criteria(List.of(FilterCriterionProperty.builder()
                                                 .path("path")
                                                 .values(List.of("values"))
                                                 .build()))
                                         .build()))
                                 .filterType("filterType")
                                 .holdbackPercentage(123)
                                 .build())
                         .build())
                 .name("name")
                 .version("version")
                 .build()))
         .peerGatewayId("peerGatewayId")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build())
 .strategy(mergeStrategy)
 .build();
 

See Also:
  • Field Details

    • CFN_PROPERTY_KEYS

      @Stability(Stable) protected static final List<String> CFN_PROPERTY_KEYS
  • Constructor Details

    • CfnLinkPropsMixin

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

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

      @Stability(Stable) public CfnLinkPropsMixin(@NotNull CfnLinkMixinProps props, @Nullable CfnPropertyMixinOptions options)
      Create a mixin to apply properties to AWS::RTBFabric::Link.

      Parameters:
      props - L1 properties to apply. This parameter is required.
      options - Mixin options.
    • CfnLinkPropsMixin

      @Stability(Stable) public CfnLinkPropsMixin(@NotNull CfnLinkMixinProps props)
      Create a mixin to apply properties to AWS::RTBFabric::Link.

      Parameters:
      props - L1 properties to apply. This parameter is required.
  • Method Details

    • applyTo

      @Stability(Stable) public void applyTo(@NotNull software.constructs.IConstruct construct)
      Apply the mixin properties to the construct.

      Specified by:
      applyTo in interface software.constructs.IMixin
      Specified by:
      applyTo in class Mixin
      Parameters:
      construct - This parameter is required.
    • supports

      @Stability(Stable) @NotNull public Boolean supports(@NotNull software.constructs.IConstruct construct)
      Check if this mixin supports the given construct.

      Specified by:
      supports in interface software.constructs.IMixin
      Overrides:
      supports in class Mixin
      Parameters:
      construct - This parameter is required.
    • getProps

      @Stability(Stable) @NotNull protected CfnLinkMixinProps getProps()
    • getStrategy

      @Stability(Stable) @NotNull protected IMergeStrategy getStrategy()