Interface CfnNetworkInsightsAnalysis.IAdditionalDetailProperty
Describes an additional detail for a path analysis.
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnNetworkInsightsAnalysis.IAdditionalDetailProperty
Syntax (vb)
Public Interface CfnNetworkInsightsAnalysis.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.AWS.EC2;
var additionalDetailProperty = new AdditionalDetailProperty {
AdditionalDetailType = "additionalDetailType",
Component = new AnalysisComponentProperty {
Arn = "arn",
Id = "id"
},
LoadBalancers = new [] { new AnalysisComponentProperty {
Arn = "arn",
Id = "id"
} },
ServiceName = "serviceName"
};
Synopsis
Properties
AdditionalDetailType | The additional detail code. |
Component | The path component. |
LoadBalancers | The load balancers. |
ServiceName | The name of the VPC endpoint service. |
Properties
AdditionalDetailType
The additional detail code.
string? AdditionalDetailType { get; }
Property Value
Remarks
Component
The path component.
object? Component { get; }
Property Value
Remarks
LoadBalancers
The load balancers.
object? LoadBalancers { get; }
Property Value
Remarks
ServiceName
The name of the VPC endpoint service.
string? ServiceName { get; }