Interface CfnLinkProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLinkProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:17.006Z")
@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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLinkPropsstatic final classAn implementation forCfnLinkProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnLinkProps.Builderbuilder()The unique identifier of the gateway.default ObjectBoolean to specify if an HTTP responder is allowed.default ObjectAttributes of the link.Settings for the application logs.default ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnLink.ModuleConfigurationProperty>The unique identifier of the peer gateway.getTags()A map of the key-value pairs of the tag or tags to assign to the resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGatewayId
The unique identifier of the gateway.- See Also:
-
getLinkLogSettings
Settings for the application logs.Returns union: either
IResolvableorCfnLink.LinkLogSettingsProperty- See Also:
-
getPeerGatewayId
The unique identifier of the peer gateway.- See Also:
-
getHttpResponderAllowed
Boolean to specify if an HTTP responder is allowed.Returns union: either
BooleanorIResolvable- See Also:
-
getLinkAttributes
Attributes of the link.Returns union: either
IResolvableorCfnLink.LinkAttributesProperty- See Also:
-
getModuleConfigurationList
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnLink.ModuleConfigurationProperty>- See Also:
-
getTags
A map of the key-value pairs of the tag or tags to assign to the resource.- See Also:
-
builder
- Returns:
- a
CfnLinkProps.BuilderofCfnLinkProps
-