Interface CfnInboundExternalLinkProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInboundExternalLinkProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T13:52:10.814Z")
@Stability(Stable)
public interface CfnInboundExternalLinkProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnInboundExternalLink.
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.*;
CfnInboundExternalLinkProps cfnInboundExternalLinkProps = CfnInboundExternalLinkProps.builder()
.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnInboundExternalLinkPropsstatic final classAn implementation forCfnInboundExternalLinkProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnInboundExternalLink.LinkAttributesPropertyReturns union: eitherIResolvableorCfnInboundExternalLink.LinkLogSettingsPropertygetTags()Tags to assign to the Link.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGatewayId
- See Also:
-
getLinkLogSettings
Returns union: eitherIResolvableorCfnInboundExternalLink.LinkLogSettingsProperty- See Also:
-
getLinkAttributes
Returns union: eitherIResolvableorCfnInboundExternalLink.LinkAttributesProperty- See Also:
-
getTags
Tags to assign to the Link.- See Also:
-
builder
-