interface CfnLinkMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RTBFabric.Mixins.CfnLinkMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrtbfabric/mixins#CfnLinkMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.rtbfabric.mixins.CfnLinkMixinProps |
Python | aws_cdk.mixins_preview.aws_rtbfabric.mixins.CfnLinkMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_rtbfabric » mixins » CfnLinkMixinProps |
Properties for CfnLinkPropsMixin.
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 { mixins as rtbfabric_mixins } from '@aws-cdk/mixins-preview/aws-rtbfabric';
const cfnLinkMixinProps: rtbfabric_mixins.CfnLinkMixinProps = {
gatewayId: 'gatewayId',
httpResponderAllowed: false,
linkAttributes: {
customerProvidedId: 'customerProvidedId',
responderErrorMasking: [{
action: 'action',
httpCode: 'httpCode',
loggingTypes: ['loggingTypes'],
responseLoggingPercentage: 123,
}],
},
linkLogSettings: {
applicationLogs: {
linkApplicationLogSampling: {
errorLog: 123,
filterLog: 123,
},
},
},
moduleConfigurationList: [{
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',
}],
peerGatewayId: 'peerGatewayId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| gateway | string | The unique identifier of the gateway. |
| http | boolean | IResolvable | Boolean to specify if an HTTP responder is allowed. |
| link | IResolvable | Link | Attributes of the link. |
| link | IResolvable | Link | Settings for the application logs. |
| module | IResolvable | (IResolvable | Module)[] | |
| peer | string | The unique identifier of the peer gateway. |
| tags? | Cfn[] | A map of the key-value pairs of the tag or tags to assign to the resource. |
gatewayId?
Type:
string
(optional)
The unique identifier of the gateway.
httpResponderAllowed?
Type:
boolean | IResolvable
(optional)
Boolean to specify if an HTTP responder is allowed.
linkAttributes?
Type:
IResolvable | Link
(optional)
Attributes of the link.
linkLogSettings?
Type:
IResolvable | Link
(optional)
Settings for the application logs.
moduleConfigurationList?
Type:
IResolvable | (IResolvable | Module)[]
(optional)
peerGatewayId?
Type:
string
(optional)
The unique identifier of the peer gateway.
tags?
Type:
Cfn[]
(optional)
A map of the key-value pairs of the tag or tags to assign to the resource.

.NET
Go
Java
Python
TypeScript