interface AlternatePathHintProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnNetworkInsightsAnalysisPropsMixin.AlternatePathHintProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnNetworkInsightsAnalysisPropsMixin_AlternatePathHintProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnNetworkInsightsAnalysisPropsMixin.AlternatePathHintProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnNetworkInsightsAnalysisPropsMixin.AlternatePathHintProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnNetworkInsightsAnalysisPropsMixin » AlternatePathHintProperty |
Describes an potential intermediate component of a feasible path.
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 alternatePathHintProperty: ec2_mixins.CfnNetworkInsightsAnalysisPropsMixin.AlternatePathHintProperty = {
componentArn: 'componentArn',
componentId: 'componentId',
};
Properties
| Name | Type | Description |
|---|---|---|
| component | string | The Amazon Resource Name (ARN) of the component. |
| component | string | The ID of the component. |
componentArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the component.
componentId?
Type:
string
(optional)
The ID of the component.

.NET
Go
Java
Python
TypeScript