Show / Hide Table of Contents

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsanalysis-additionaldetail.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsanalysis-additionaldetail.html#cfn-ec2-networkinsightsanalysis-additionaldetail-additionaldetailtype

Component

The path component.

object? Component { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsanalysis-additionaldetail.html#cfn-ec2-networkinsightsanalysis-additionaldetail-component

LoadBalancers

The load balancers.

object? LoadBalancers { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsanalysis-additionaldetail.html#cfn-ec2-networkinsightsanalysis-additionaldetail-loadbalancers

ServiceName

The name of the VPC endpoint service.

string? ServiceName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsanalysis-additionaldetail.html#cfn-ec2-networkinsightsanalysis-additionaldetail-servicename

Back to top Generated by DocFX