interface CfnInboundExternalLinkMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RTBFabric.CfnInboundExternalLinkMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrtbfabric#CfnInboundExternalLinkMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.rtbfabric.CfnInboundExternalLinkMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_rtbfabric.CfnInboundExternalLinkMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rtbfabric » CfnInboundExternalLinkMixinProps |
Properties for CfnInboundExternalLinkPropsMixin.
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 cfnInboundExternalLinkMixinProps: rtbfabric.CfnInboundExternalLinkMixinProps = {
gatewayId: 'gatewayId',
linkAttributes: {
customerProvidedId: 'customerProvidedId',
responderErrorMasking: [{
action: 'action',
httpCode: 'httpCode',
loggingTypes: ['loggingTypes'],
responseLoggingPercentage: 123,
}],
},
linkLogSettings: {
applicationLogs: {
linkApplicationLogSampling: {
errorLog: 123,
filterLog: 123,
},
},
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| gateway | string | |
| link | IResolvable | Link | |
| link | IResolvable | Link | |
| tags? | Cfn[] | Tags to assign to the Link. |
gatewayId?
Type:
string
(optional)
linkAttributes?
Type:
IResolvable | Link
(optional)
linkLogSettings?
Type:
IResolvable | Link
(optional)
tags?
Type:
Cfn[]
(optional)
Tags to assign to the Link.

.NET
Go
Java
Python
TypeScript