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

.NET
Go
Java
Python
TypeScript