interface LinkAttributesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RTBFabric.Mixins.CfnLinkPropsMixin.LinkAttributesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrtbfabric/mixins#CfnLinkPropsMixin_LinkAttributesProperty |
Java | software.amazon.awscdk.mixins.preview.services.rtbfabric.mixins.CfnLinkPropsMixin.LinkAttributesProperty |
Python | aws_cdk.mixins_preview.aws_rtbfabric.mixins.CfnLinkPropsMixin.LinkAttributesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_rtbfabric » mixins » 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 { mixins as rtbfabric_mixins } from '@aws-cdk/mixins-preview/aws-rtbfabric';
const linkAttributesProperty: rtbfabric_mixins.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