Interface CfnLink.LinkAttributesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLink.LinkAttributesProperty.Jsii$Proxy
- Enclosing class:
CfnLink
@Stability(Stable)
public static interface CfnLink.LinkAttributesProperty
extends software.amazon.jsii.JsiiSerializable
Describes the attributes of a link.
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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLink.LinkAttributesPropertystatic final classAn implementation forCfnLink.LinkAttributesProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCustomerProvidedId
The customer-provided unique identifier of the link.- See Also:
-
getResponderErrorMasking
Describes the masking for HTTP error codes.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnLink.ResponderErrorMaskingForHttpCodeProperty>- See Also:
-
builder
-