interface EntryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnPrefixListPropsMixin.EntryProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnPrefixListPropsMixin_EntryProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnPrefixListPropsMixin.EntryProperty |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnPrefixListPropsMixin.EntryProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnPrefixListPropsMixin » 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/cfn-property-mixins';
const entryProperty: ec2.CfnPrefixListPropsMixin.EntryProperty = {
cidr: 'cidr',
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| cidr? | string | The CIDR block. |
| description? | string | A description for the entry. |
cidr?
Type:
string
(optional)
The CIDR block.
description?
Type:
string
(optional)
A description for the entry.
Constraints: Up to 255 characters in length.

.NET
Go
Java
Python
TypeScript