Show / Hide Table of Contents

Class CfnNetworkInsightsAccessScope.PathStatementRequestProperty

Describes a path statement.

Inheritance
object
CfnNetworkInsightsAccessScope.PathStatementRequestProperty
Implements
CfnNetworkInsightsAccessScope.IPathStatementRequestProperty
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 CfnNetworkInsightsAccessScope.PathStatementRequestProperty : CfnNetworkInsightsAccessScope.IPathStatementRequestProperty
Syntax (vb)
Public Class CfnNetworkInsightsAccessScope.PathStatementRequestProperty Implements CfnNetworkInsightsAccessScope.IPathStatementRequestProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsaccessscope-pathstatementrequest.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 pathStatementRequestProperty = new PathStatementRequestProperty {
                 PacketHeaderStatement = new PacketHeaderStatementRequestProperty {
                     DestinationAddresses = new [] { "destinationAddresses" },
                     DestinationPorts = new [] { "destinationPorts" },
                     DestinationPrefixLists = new [] { "destinationPrefixLists" },
                     Protocols = new [] { "protocols" },
                     SourceAddresses = new [] { "sourceAddresses" },
                     SourcePorts = new [] { "sourcePorts" },
                     SourcePrefixLists = new [] { "sourcePrefixLists" }
                 },
                 ResourceStatement = new ResourceStatementRequestProperty {
                     Resources = new [] { "resources" },
                     ResourceTypes = new [] { "resourceTypes" }
                 }
             };

Synopsis

Constructors

PathStatementRequestProperty()

Describes a path statement.

Properties

PacketHeaderStatement

The packet header statement.

ResourceStatement

The resource statement.

Constructors

PathStatementRequestProperty()

Describes a path statement.

public PathStatementRequestProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsaccessscope-pathstatementrequest.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 pathStatementRequestProperty = new PathStatementRequestProperty {
                 PacketHeaderStatement = new PacketHeaderStatementRequestProperty {
                     DestinationAddresses = new [] { "destinationAddresses" },
                     DestinationPorts = new [] { "destinationPorts" },
                     DestinationPrefixLists = new [] { "destinationPrefixLists" },
                     Protocols = new [] { "protocols" },
                     SourceAddresses = new [] { "sourceAddresses" },
                     SourcePorts = new [] { "sourcePorts" },
                     SourcePrefixLists = new [] { "sourcePrefixLists" }
                 },
                 ResourceStatement = new ResourceStatementRequestProperty {
                     Resources = new [] { "resources" },
                     ResourceTypes = new [] { "resourceTypes" }
                 }
             };

Properties

PacketHeaderStatement

The packet header statement.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsaccessscope-pathstatementrequest.html#cfn-ec2-networkinsightsaccessscope-pathstatementrequest-packetheaderstatement

Type union: either IResolvable or CfnNetworkInsightsAccessScope.IPacketHeaderStatementRequestProperty

ResourceStatement

The resource statement.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsaccessscope-pathstatementrequest.html#cfn-ec2-networkinsightsaccessscope-pathstatementrequest-resourcestatement

Type union: either IResolvable or CfnNetworkInsightsAccessScope.IResourceStatementRequestProperty

Implements

CfnNetworkInsightsAccessScope.IPathStatementRequestProperty
Back to top Generated by DocFX