interface CfnLinkProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_rtbfabric.CfnLinkProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrtbfabric#CfnLinkProps |
Java | software.amazon.awscdk.services.rtbfabric.CfnLinkProps |
Python | aws_cdk.aws_rtbfabric.CfnLinkProps |
TypeScript | aws-cdk-lib » aws_rtbfabric » CfnLinkProps |
Properties for defining a CfnLink.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-link.html
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 cfnLinkProps: rtbfabric.CfnLinkProps = {
gatewayId: 'gatewayId',
linkLogSettings: {
applicationLogs: {
linkApplicationLogSampling: {
errorLog: 123,
filterLog: 123,
},
},
},
peerGatewayId: 'peerGatewayId',
// the properties below are optional
httpResponderAllowed: false,
linkAttributes: {
customerProvidedId: 'customerProvidedId',
responderErrorMasking: [{
action: 'action',
httpCode: 'httpCode',
loggingTypes: ['loggingTypes'],
// the properties below are optional
responseLoggingPercentage: 123,
}],
},
moduleConfigurationList: [{
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',
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| gateway | string | |
| link | IResolvable | Link | |
| peer | string | |
| http | boolean | IResolvable | |
| link | IResolvable | Link | |
| module | IResolvable | (IResolvable | Module)[] | |
| tags? | Cfn[] | Tags to assign to the Link. |
gatewayId
Type:
string
linkLogSettings
Type:
IResolvable | Link
peerGatewayId
Type:
string
httpResponderAllowed?
Type:
boolean | IResolvable
(optional)
linkAttributes?
Type:
IResolvable | Link
(optional)
moduleConfigurationList?
Type:
IResolvable | (IResolvable | Module)[]
(optional)
tags?
Type:
Cfn[]
(optional)
Tags to assign to the Link.

.NET
Go
Java
Python
TypeScript