interface OpenRtbAttributeModuleParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RTBFabric.CfnLinkPropsMixin.OpenRtbAttributeModuleParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrtbfabric#CfnLinkPropsMixin_OpenRtbAttributeModuleParametersProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.rtbfabric.CfnLinkPropsMixin.OpenRtbAttributeModuleParametersProperty |
Python | aws_cdk.cfn_property_mixins.aws_rtbfabric.CfnLinkPropsMixin.OpenRtbAttributeModuleParametersProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rtbfabric » 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 { aws_rtbfabric as rtbfabric } from '@aws-cdk/cfn-property-mixins';
const openRtbAttributeModuleParametersProperty: rtbfabric.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