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

.NET
Go
Java
Python
TypeScript