Interface CfnInboundExternalLink.LinkAttributesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnInboundExternalLink.LinkAttributesProperty.Jsii$Proxy
Enclosing class:
CfnInboundExternalLink

@Stability(Stable) public static interface CfnInboundExternalLink.LinkAttributesProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 LinkAttributesProperty linkAttributesProperty = 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();
 

See Also: