aws-cdk-lib.aws_ec2.CfnNetworkInsightsAccessScope.PacketHeaderStatementRequestProperty

interface PacketHeaderStatementRequestProperty

LanguageType name
.NETAmazon.CDK.AWS.EC2.CfnNetworkInsightsAccessScope.PacketHeaderStatementRequestProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnNetworkInsightsAccessScope_PacketHeaderStatementRequestProperty
Javasoftware.amazon.awscdk.services.ec2.CfnNetworkInsightsAccessScope.PacketHeaderStatementRequestProperty
Pythonaws_cdk.aws_ec2.CfnNetworkInsightsAccessScope.PacketHeaderStatementRequestProperty
TypeScript aws-cdk-lib » aws_ec2 » CfnNetworkInsightsAccessScope » PacketHeaderStatementRequestProperty

Describes a packet header statement.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
const packetHeaderStatementRequestProperty: ec2.CfnNetworkInsightsAccessScope.PacketHeaderStatementRequestProperty = {
  destinationAddresses: ['destinationAddresses'],
  destinationPorts: ['destinationPorts'],
  destinationPrefixLists: ['destinationPrefixLists'],
  protocols: ['protocols'],
  sourceAddresses: ['sourceAddresses'],
  sourcePorts: ['sourcePorts'],
  sourcePrefixLists: ['sourcePrefixLists'],
};

Properties

NameTypeDescription
destinationAddresses?string[]The destination addresses.
destinationPorts?string[]The destination ports.
destinationPrefixLists?string[]The destination prefix lists.
protocols?string[]The protocols.
sourceAddresses?string[]The source addresses.
sourcePorts?string[]The source ports.
sourcePrefixLists?string[]The source prefix lists.

destinationAddresses?

Type: string[] (optional)

The destination addresses.


destinationPorts?

Type: string[] (optional)

The destination ports.


destinationPrefixLists?

Type: string[] (optional)

The destination prefix lists.


protocols?

Type: string[] (optional)

The protocols.


sourceAddresses?

Type: string[] (optional)

The source addresses.


sourcePorts?

Type: string[] (optional)

The source ports.


sourcePrefixLists?

Type: string[] (optional)

The source prefix lists.