interface OpenRtbAttributeModuleParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RTBFabric.Mixins.CfnLinkPropsMixin.OpenRtbAttributeModuleParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrtbfabric/mixins#CfnLinkPropsMixin_OpenRtbAttributeModuleParametersProperty |
Java | software.amazon.awscdk.mixins.preview.services.rtbfabric.mixins.CfnLinkPropsMixin.OpenRtbAttributeModuleParametersProperty |
Python | aws_cdk.mixins_preview.aws_rtbfabric.mixins.CfnLinkPropsMixin.OpenRtbAttributeModuleParametersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_rtbfabric » mixins » CfnLinkPropsMixin » 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 { mixins as rtbfabric_mixins } from '@aws-cdk/mixins-preview/aws-rtbfabric';
const openRtbAttributeModuleParametersProperty: rtbfabric_mixins.CfnLinkPropsMixin.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
(optional)
Describes a bid action.
filterConfiguration?
Type:
IResolvable | (IResolvable | Filter)[]
(optional)
Describes the configuration of a filter.
filterType?
Type:
string
(optional)
The filter type.
holdbackPercentage?
Type:
number
(optional)
The hold back percentage.

.NET
Go
Java
Python
TypeScript