Interface CfnLink.OpenRtbAttributeModuleParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLink.OpenRtbAttributeModuleParametersProperty.Jsii$Proxy
- Enclosing class:
CfnLink
@Stability(Stable)
public static interface CfnLink.OpenRtbAttributeModuleParametersProperty
extends software.amazon.jsii.JsiiSerializable
Describes the parameters of an open RTB attribute module.
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.*;
OpenRtbAttributeModuleParametersProperty openRtbAttributeModuleParametersProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLink.OpenRtbAttributeModuleParametersPropertystatic final classAn implementation forCfnLink.OpenRtbAttributeModuleParametersProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Describes a bid action.Describes the configuration of a filter.The filter type.The hold back percentage.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAction
Describes a bid action.Returns union: either
IResolvableorCfnLink.ActionProperty- See Also:
-
getFilterConfiguration
Describes the configuration of a filter.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnLink.FilterProperty>- See Also:
-
getFilterType
The filter type.- See Also:
-
getHoldbackPercentage
The hold back percentage.- See Also:
-
builder
-