Class CfnNetworkInsightsAnalysisPropsMixin.AdditionalDetailProperty
Describes an additional detail for a path analysis.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnNetworkInsightsAnalysisPropsMixin.AdditionalDetailProperty : CfnNetworkInsightsAnalysisPropsMixin.IAdditionalDetailProperty
Syntax (vb)
Public Class CfnNetworkInsightsAnalysisPropsMixin.AdditionalDetailProperty Implements CfnNetworkInsightsAnalysisPropsMixin.IAdditionalDetailProperty
Remarks
For more information, see Reachability Analyzer additional detail codes .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins;
var additionalDetailProperty = new AdditionalDetailProperty {
AdditionalDetailType = "additionalDetailType",
Component = new AnalysisComponentProperty {
Arn = "arn",
Id = "id"
},
LoadBalancers = new [] { new AnalysisComponentProperty {
Arn = "arn",
Id = "id"
} },
ServiceName = "serviceName"
};
Synopsis
Constructors
| AdditionalDetailProperty() | Describes an additional detail for a path analysis. |
Properties
| AdditionalDetailType | The additional detail code. |
| Component | The path component. |
| LoadBalancers | The load balancers. |
| ServiceName | The name of the VPC endpoint service. |
Constructors
AdditionalDetailProperty()
Describes an additional detail for a path analysis.
public AdditionalDetailProperty()
Remarks
For more information, see Reachability Analyzer additional detail codes .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins;
var additionalDetailProperty = new AdditionalDetailProperty {
AdditionalDetailType = "additionalDetailType",
Component = new AnalysisComponentProperty {
Arn = "arn",
Id = "id"
},
LoadBalancers = new [] { new AnalysisComponentProperty {
Arn = "arn",
Id = "id"
} },
ServiceName = "serviceName"
};
Properties
AdditionalDetailType
The additional detail code.
public string? AdditionalDetailType { get; set; }
Property Value
Remarks
Component
The path component.
public object? Component { get; set; }
Property Value
Remarks
LoadBalancers
The load balancers.
public object? LoadBalancers { get; set; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnNetworkInsightsAnalysisPropsMixin.IAnalysisComponentProperty)[]
ServiceName
The name of the VPC endpoint service.
public string? ServiceName { get; set; }