aws-cdk-lib.aws_ec2.CfnNetworkInsightsAnalysis.AdditionalDetailProperty

interface AdditionalDetailProperty

LanguageType name
.NETAmazon.CDK.AWS.EC2.CfnNetworkInsightsAnalysis.AdditionalDetailProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnNetworkInsightsAnalysis_AdditionalDetailProperty
Javasoftware.amazon.awscdk.services.ec2.CfnNetworkInsightsAnalysis.AdditionalDetailProperty
Pythonaws_cdk.aws_ec2.CfnNetworkInsightsAnalysis.AdditionalDetailProperty
TypeScript aws-cdk-lib » aws_ec2 » CfnNetworkInsightsAnalysis » 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 { aws_ec2 as ec2 } from 'aws-cdk-lib';
const additionalDetailProperty: ec2.CfnNetworkInsightsAnalysis.AdditionalDetailProperty = {
  additionalDetailType: 'additionalDetailType',
  component: {
    arn: 'arn',
    id: 'id',
  },
  loadBalancers: [{
    arn: 'arn',
    id: 'id',
  }],
  serviceName: 'serviceName',
};

Properties

NameTypeDescription
additionalDetailType?stringThe additional detail code.
component?IResolvable | AnalysisComponentPropertyThe path component.
loadBalancers?IResolvable | IResolvable | AnalysisComponentProperty[]The load balancers.
serviceName?stringThe name of the VPC endpoint service.

additionalDetailType?

Type: string (optional)

The additional detail code.


component?

Type: IResolvable | AnalysisComponentProperty (optional)

The path component.


loadBalancers?

Type: IResolvable | IResolvable | AnalysisComponentProperty[] (optional)

The load balancers.


serviceName?

Type: string (optional)

The name of the VPC endpoint service.