Show / Hide Table of Contents

Interface CfnNetworkInsightsAccessScopePropsMixin.IPathStatementRequestProperty

Describes a path statement.

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

Type union: either IResolvable or CfnNetworkInsightsAccessScopePropsMixin.IPacketHeaderStatementRequestProperty

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

Type union: either IResolvable or CfnNetworkInsightsAccessScopePropsMixin.IResourceStatementRequestProperty

Back to top Generated by DocFX