Interface CfnLinkProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnLinkProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)", date="2025-11-10T13:40:13.930Z") @Stability(Stable) public interface CfnLinkProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnLink.

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.*;
 CfnLinkProps cfnLinkProps = CfnLinkProps.builder()
         .gatewayId("gatewayId")
         .linkLogSettings(LinkLogSettingsProperty.builder()
                 .applicationLogs(ApplicationLogsProperty.builder()
                         .linkApplicationLogSampling(LinkApplicationLogSamplingProperty.builder()
                                 .errorLog(123)
                                 .filterLog(123)
                                 .build())
                         .build())
                 .build())
         .peerGatewayId("peerGatewayId")
         // the properties below are optional
         .httpResponderAllowed(false)
         .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())
         .moduleConfigurationList(List.of(ModuleConfigurationProperty.builder()
                 .name("name")
                 // the properties below are optional
                 .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())
                 .version("version")
                 .build()))
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: