interface OpenRtbAttributeModuleParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RTBFabric.CfnLink.OpenRtbAttributeModuleParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrtbfabric#CfnLink_OpenRtbAttributeModuleParametersProperty |
Java | software.amazon.awscdk.services.rtbfabric.CfnLink.OpenRtbAttributeModuleParametersProperty |
Python | aws_cdk.aws_rtbfabric.CfnLink.OpenRtbAttributeModuleParametersProperty |
TypeScript | aws-cdk-lib » aws_rtbfabric » CfnLink » OpenRtbAttributeModuleParametersProperty |
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 { aws_rtbfabric as rtbfabric } from 'aws-cdk-lib';
const openRtbAttributeModuleParametersProperty: rtbfabric.CfnLink.OpenRtbAttributeModuleParametersProperty = {
action: {
headerTag: {
name: 'name',
value: 'value',
},
noBid: {
noBidReasonCode: 123,
},
},
filterConfiguration: [{
criteria: [{
path: 'path',
values: ['values'],
}],
}],
filterType: 'filterType',
holdbackPercentage: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| action | IResolvable | Action | Describes a bid action. |
| filter | IResolvable | (IResolvable | Filter)[] | Describes the configuration of a filter. |
| filter | string | The filter type. |
| holdback | number | The hold back percentage. |
action
Type:
IResolvable | Action
Describes a bid action.
filterConfiguration
Type:
IResolvable | (IResolvable | Filter)[]
Describes the configuration of a filter.
filterType
Type:
string
The filter type.
holdbackPercentage
Type:
number
The hold back percentage.

.NET
Go
Java
Python
TypeScript