Show / Hide Table of Contents

Interface CfnNetworkInsightsAccessScope.IPathStatementRequestProperty

Describes a path statement.

Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnNetworkInsightsAccessScope.IPathStatementRequestProperty
Syntax (vb)
Public Interface 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

Properties

PacketHeaderStatement

The packet header statement.

ResourceStatement

The resource statement.

Properties

PacketHeaderStatement

The packet header statement.

object? PacketHeaderStatement { get; }
Property Value

object

Remarks

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

ResourceStatement

The resource statement.

object? ResourceStatement { get; }
Property Value

object

Remarks

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

Back to top Generated by DocFX