Show / Hide Table of Contents

Class CfnNetworkInsightsAnalysisPropsMixin.AdditionalDetailProperty

Describes an additional detail for a path analysis.

Inheritance
object
CfnNetworkInsightsAnalysisPropsMixin.AdditionalDetailProperty
Implements
CfnNetworkInsightsAnalysisPropsMixin.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.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 .

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.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 .

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.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

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 CfnNetworkInsightsAnalysisPropsMixin.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 CfnNetworkInsightsAnalysisPropsMixin.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

CfnNetworkInsightsAnalysisPropsMixin.IAdditionalDetailProperty
Back to top Generated by DocFX