Class CfnNetworkInsightsAccessScope.PathStatementRequestProperty
Describes a path statement.
Inheritance
System.Object
CfnNetworkInsightsAccessScope.PathStatementRequestProperty
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class PathStatementRequestProperty : Object, CfnNetworkInsightsAccessScope.IPathStatementRequestProperty
Syntax (vb)
Public Class PathStatementRequestProperty
Inherits Object
Implements CfnNetworkInsightsAccessScope.IPathStatementRequestProperty
Remarks
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() |
Properties
PacketHeaderStatement | The packet header statement. |
ResourceStatement | The resource statement. |
Constructors
PathStatementRequestProperty()
public PathStatementRequestProperty()
Properties
PacketHeaderStatement
The packet header statement.
public object PacketHeaderStatement { get; set; }
Property Value
System.Object
Remarks
ResourceStatement
The resource statement.
public object ResourceStatement { get; set; }
Property Value
System.Object