interface CfnInboundExternalLinkProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RTBFabric.CfnInboundExternalLinkProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrtbfabric#CfnInboundExternalLinkProps |
Java | software.amazon.awscdk.services.rtbfabric.CfnInboundExternalLinkProps |
Python | aws_cdk.aws_rtbfabric.CfnInboundExternalLinkProps |
TypeScript | aws-cdk-lib » aws_rtbfabric » CfnInboundExternalLinkProps |
Properties for defining a CfnInboundExternalLink.
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 cfnInboundExternalLinkProps: rtbfabric.CfnInboundExternalLinkProps = {
gatewayId: 'gatewayId',
linkLogSettings: {
applicationLogs: {
linkApplicationLogSampling: {
errorLog: 123,
filterLog: 123,
},
},
},
// the properties below are optional
linkAttributes: {
customerProvidedId: 'customerProvidedId',
responderErrorMasking: [{
action: 'action',
httpCode: 'httpCode',
loggingTypes: ['loggingTypes'],
// the properties below are optional
responseLoggingPercentage: 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
linkLogSettings
Type:
IResolvable | Link
linkAttributes?
Type:
IResolvable | Link
(optional)
tags?
Type:
Cfn[]
(optional)
Tags to assign to the Link.

.NET
Go
Java
Python
TypeScript