interface AdditionalDetailProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnNetworkInsightsAnalysisPropsMixin.AdditionalDetailProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnNetworkInsightsAnalysisPropsMixin_AdditionalDetailProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnNetworkInsightsAnalysisPropsMixin.AdditionalDetailProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnNetworkInsightsAnalysisPropsMixin.AdditionalDetailProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnNetworkInsightsAnalysisPropsMixin » AdditionalDetailProperty |
Describes an additional detail for a path analysis.
For more information, see Reachability Analyzer additional detail codes .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const additionalDetailProperty: ec2_mixins.CfnNetworkInsightsAnalysisPropsMixin.AdditionalDetailProperty = {
additionalDetailType: 'additionalDetailType',
component: {
arn: 'arn',
id: 'id',
},
loadBalancers: [{
arn: 'arn',
id: 'id',
}],
serviceName: 'serviceName',
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | string | The additional detail code. |
| component? | IResolvable | Analysis | The path component. |
| load | IResolvable | (IResolvable | Analysis)[] | The load balancers. |
| service | string | The name of the VPC endpoint service. |
additionalDetailType?
Type:
string
(optional)
The additional detail code.
component?
Type:
IResolvable | Analysis
(optional)
The path component.
loadBalancers?
Type:
IResolvable | (IResolvable | Analysis)[]
(optional)
The load balancers.
serviceName?
Type:
string
(optional)
The name of the VPC endpoint service.

.NET
Go
Java
Python
TypeScript