interface ModuleConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RTBFabric.CfnLink.ModuleConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrtbfabric#CfnLink_ModuleConfigurationProperty |
Java | software.amazon.awscdk.services.rtbfabric.CfnLink.ModuleConfigurationProperty |
Python | aws_cdk.aws_rtbfabric.CfnLink.ModuleConfigurationProperty |
TypeScript | aws-cdk-lib » aws_rtbfabric » CfnLink » ModuleConfigurationProperty |
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 { aws_rtbfabric as rtbfabric } from 'aws-cdk-lib';
const moduleConfigurationProperty: rtbfabric.CfnLink.ModuleConfigurationProperty = {
name: 'name',
// the properties below are optional
dependsOn: ['dependsOn'],
moduleParameters: {
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,
},
},
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the module. |
| depends | string[] | The dependencies of the module. |
| module | IResolvable | Module | Describes the parameters of a module. |
| version? | string | The version of the module. |
name
Type:
string
The name of the module.
dependsOn?
Type:
string[]
(optional)
The dependencies of the module.
moduleParameters?
Type:
IResolvable | Module
(optional)
Describes the parameters of a module.
version?
Type:
string
(optional)
The version of the module.

.NET
Go
Java
Python
TypeScript