Interface CfnOutboundExternalLinkProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOutboundExternalLinkProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-12-01T16:02:28.587Z")
@Stability(Stable)
public interface CfnOutboundExternalLinkProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnOutboundExternalLink.
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.*;
CfnOutboundExternalLinkProps cfnOutboundExternalLinkProps = CfnOutboundExternalLinkProps.builder()
.gatewayId("gatewayId")
.linkLogSettings(LinkLogSettingsProperty.builder()
.applicationLogs(ApplicationLogsProperty.builder()
.linkApplicationLogSampling(LinkApplicationLogSamplingProperty.builder()
.errorLog(123)
.filterLog(123)
.build())
.build())
.build())
.publicEndpoint("publicEndpoint")
// 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 forCfnOutboundExternalLinkPropsstatic final classAn implementation forCfnOutboundExternalLinkProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnOutboundExternalLink.LinkAttributesPropertyReturns union: eitherIResolvableorCfnOutboundExternalLink.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: eitherIResolvableorCfnOutboundExternalLink.LinkLogSettingsProperty- See Also:
-
getPublicEndpoint
- See Also:
-
getLinkAttributes
Returns union: eitherIResolvableorCfnOutboundExternalLink.LinkAttributesProperty- See Also:
-
getTags
Tags to assign to the Link.- See Also:
-
builder
-