Show / Hide Table of Contents

Class CfnNetworkInsightsAnalysis.AdditionalDetailProperty

Describes an additional detail for a path analysis.

Inheritance
object
CfnNetworkInsightsAnalysis.AdditionalDetailProperty
Implements
CfnNetworkInsightsAnalysis.IAdditionalDetailProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnNetworkInsightsAnalysis.AdditionalDetailProperty : CfnNetworkInsightsAnalysis.IAdditionalDetailProperty
Syntax (vb)
Public Class CfnNetworkInsightsAnalysis.AdditionalDetailProperty Implements 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

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 .

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"
             };

Properties

AdditionalDetailType

The additional detail code.

public string? AdditionalDetailType { get; set; }
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.

public object? Component { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnNetworkInsightsAnalysis.IAnalysisComponentProperty

LoadBalancers

The load balancers.

public object? LoadBalancers { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnNetworkInsightsAnalysis.IAnalysisComponentProperty)[]

ServiceName

The name of the VPC endpoint service.

public string? ServiceName { get; set; }
Property Value

string

Remarks

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

Implements

CfnNetworkInsightsAnalysis.IAdditionalDetailProperty
Back to top Generated by DocFX