interface EntryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnPrefixListPropsMixin.EntryProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnPrefixListPropsMixin_EntryProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnPrefixListPropsMixin.EntryProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnPrefixListPropsMixin.EntryProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » 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 { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const entryProperty: ec2_mixins.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