aws-cdk-lib.aws_ec2.CfnPrefixList.EntryProperty

interface EntryProperty

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

An entry for a prefix list.

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 entryProperty: ec2.CfnPrefixList.EntryProperty = {
  cidr: 'cidr',

  // the properties below are optional
  description: 'description',
};

Properties

NameTypeDescription
cidrstringThe CIDR block.
description?stringA description for the entry.

cidr

Type: string

The CIDR block.


description?

Type: string (optional)

A description for the entry.

Constraints: Up to 255 characters in length.