interface CidrOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnVerifiedAccessEndpointPropsMixin.CidrOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnVerifiedAccessEndpointPropsMixin_CidrOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnVerifiedAccessEndpointPropsMixin.CidrOptionsProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnVerifiedAccessEndpointPropsMixin.CidrOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnVerifiedAccessEndpointPropsMixin » CidrOptionsProperty |
Describes the CIDR options for a Verified Access endpoint.
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 cidrOptionsProperty: ec2_mixins.CfnVerifiedAccessEndpointPropsMixin.CidrOptionsProperty = {
cidr: 'cidr',
portRanges: [{
fromPort: 123,
toPort: 123,
}],
protocol: 'protocol',
subnetIds: ['subnetIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| cidr? | string | The CIDR. |
| port | IResolvable | (IResolvable | Port)[] | The port ranges. |
| protocol? | string | The protocol. |
| subnet | string[] | The IDs of the subnets. |
cidr?
Type:
string
(optional)
The CIDR.
portRanges?
Type:
IResolvable | (IResolvable | Port)[]
(optional)
The port ranges.
protocol?
Type:
string
(optional)
The protocol.
subnetIds?
Type:
string[]
(optional)
The IDs of the subnets.

.NET
Go
Java
Python
TypeScript