interface RdsOptionsProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.EC2.CfnVerifiedAccessEndpoint.RdsOptionsProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnVerifiedAccessEndpoint_RdsOptionsProperty | 
|  Java | software.amazon.awscdk.services.ec2.CfnVerifiedAccessEndpoint.RdsOptionsProperty | 
|  Python | aws_cdk.aws_ec2.CfnVerifiedAccessEndpoint.RdsOptionsProperty | 
|  TypeScript | aws-cdk-lib»aws_ec2»CfnVerifiedAccessEndpoint»RdsOptionsProperty | 
Describes the RDS 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-lib';
const rdsOptionsProperty: ec2.CfnVerifiedAccessEndpoint.RdsOptionsProperty = {
  port: 123,
  protocol: 'protocol',
  rdsDbClusterArn: 'rdsDbClusterArn',
  rdsDbInstanceArn: 'rdsDbInstanceArn',
  rdsDbProxyArn: 'rdsDbProxyArn',
  rdsEndpoint: 'rdsEndpoint',
  subnetIds: ['subnetIds'],
};
Properties
| Name | Type | Description | 
|---|---|---|
| port? | number | The port. | 
| protocol? | string | The protocol. | 
| rds | string | The ARN of the DB cluster. | 
| rds | string | The ARN of the RDS instance. | 
| rds | string | The ARN of the RDS proxy. | 
| rds | string | The RDS endpoint. | 
| subnet | string[] | The IDs of the subnets. | 
port?
Type:
number
(optional)
The port.
protocol?
Type:
string
(optional)
The protocol.
rdsDbClusterArn?
Type:
string
(optional)
The ARN of the DB cluster.
rdsDbInstanceArn?
Type:
string
(optional)
The ARN of the RDS instance.
rdsDbProxyArn?
Type:
string
(optional)
The ARN of the RDS proxy.
rdsEndpoint?
Type:
string
(optional)
The RDS endpoint.
subnetIds?
Type:
string[]
(optional)
The IDs of the subnets.
You can specify only one subnet per Availability Zone.
