Interface CfnLink.ModuleConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLink.ModuleConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnLink
@Stability(Stable)
public static interface CfnLink.ModuleConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Describes the configuration of a 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.*;
ModuleConfigurationProperty moduleConfigurationProperty = ModuleConfigurationProperty.builder()
.name("name")
// the properties below are optional
.dependsOn(List.of("dependsOn"))
.moduleParameters(ModuleParametersProperty.builder()
.noBid(NoBidModuleParametersProperty.builder()
.passThroughPercentage(123)
.reason("reason")
.reasonCode(123)
.build())
.openRtbAttribute(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())
.build())
.version("version")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLink.ModuleConfigurationPropertystatic final classAn implementation forCfnLink.ModuleConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the module.- See Also:
-
getDependsOn
The dependencies of the module.- See Also:
-
getModuleParameters
Describes the parameters of a module.Returns union: either
IResolvableorCfnLink.ModuleParametersProperty- See Also:
-
getVersion
The version of the module.- See Also:
-
builder
-