interface ModuleParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RTBFabric.CfnLink.ModuleParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrtbfabric#CfnLink_ModuleParametersProperty |
Java | software.amazon.awscdk.services.rtbfabric.CfnLink.ModuleParametersProperty |
Python | aws_cdk.aws_rtbfabric.CfnLink.ModuleParametersProperty |
TypeScript | aws-cdk-lib » aws_rtbfabric » CfnLink » ModuleParametersProperty |
Describes the parameters of a module.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rtbfabric as rtbfabric } from 'aws-cdk-lib';
const moduleParametersProperty: rtbfabric.CfnLink.ModuleParametersProperty = {
noBid: {
passThroughPercentage: 123,
reason: 'reason',
reasonCode: 123,
},
openRtbAttribute: {
action: {
headerTag: {
name: 'name',
value: 'value',
},
noBid: {
noBidReasonCode: 123,
},
},
filterConfiguration: [{
criteria: [{
path: 'path',
values: ['values'],
}],
}],
filterType: 'filterType',
holdbackPercentage: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| no | IResolvable | No | Describes the parameters of a no bid module. |
| open | IResolvable | Open | Describes the parameters of an open RTB attribute module. |
noBid?
Type:
IResolvable | No
(optional)
Describes the parameters of a no bid module.
openRtbAttribute?
Type:
IResolvable | Open
(optional)
Describes the parameters of an open RTB attribute module.

.NET
Go
Java
Python
TypeScript