interface LinkAttributesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RTBFabric.CfnLinkPropsMixin.LinkAttributesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrtbfabric#CfnLinkPropsMixin_LinkAttributesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.rtbfabric.CfnLinkPropsMixin.LinkAttributesProperty |
Python | aws_cdk.cfn_property_mixins.aws_rtbfabric.CfnLinkPropsMixin.LinkAttributesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rtbfabric » CfnLinkPropsMixin » LinkAttributesProperty |
Describes the attributes of a link.
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 linkAttributesProperty: rtbfabric.CfnLinkPropsMixin.LinkAttributesProperty = {
customerProvidedId: 'customerProvidedId',
responderErrorMasking: [{
action: 'action',
httpCode: 'httpCode',
loggingTypes: ['loggingTypes'],
responseLoggingPercentage: 123,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| customer | string | The customer-provided unique identifier of the link. |
| responder | IResolvable | (IResolvable | Responder)[] | Describes the masking for HTTP error codes. |
customerProvidedId?
Type:
string
(optional)
The customer-provided unique identifier of the link.
responderErrorMasking?
Type:
IResolvable | (IResolvable | Responder)[]
(optional)
Describes the masking for HTTP error codes.

.NET
Go
Java
Python
TypeScript