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

.NET
Go
Java
Python
TypeScript