interface EntryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnPrefixList.EntryProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnPrefixList_EntryProperty |
Java | software.amazon.awscdk.services.ec2.CfnPrefixList.EntryProperty |
Python | aws_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
| Name | Type | Description |
|---|---|---|
| cidr | string | The CIDR block. |
| description? | string | A 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.

.NET
Go
Java
Python
TypeScript