interface CidrOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnVerifiedAccessEndpointPropsMixin.CidrOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnVerifiedAccessEndpointPropsMixin_CidrOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnVerifiedAccessEndpointPropsMixin.CidrOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnVerifiedAccessEndpointPropsMixin.CidrOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » 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 { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const cidrOptionsProperty: ec2.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