Interface CfnVerifiedAccessEndpoint.IRdsOptionsProperty
Describes the RDS options for a Verified Access endpoint.
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IRdsOptionsProperty
Syntax (vb)
Public Interface IRdsOptionsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
var rdsOptionsProperty = new RdsOptionsProperty {
Port = 123,
Protocol = "protocol",
RdsDbClusterArn = "rdsDbClusterArn",
RdsDbInstanceArn = "rdsDbInstanceArn",
RdsDbProxyArn = "rdsDbProxyArn",
RdsEndpoint = "rdsEndpoint",
SubnetIds = new [] { "subnetIds" }
};
Synopsis
Properties
Port | The port. |
Protocol | The protocol. |
RdsDbClusterArn | The ARN of the DB cluster. |
RdsDbInstanceArn | The ARN of the RDS instance. |
RdsDbProxyArn | The ARN of the RDS proxy. |
RdsEndpoint | The RDS endpoint. |
SubnetIds | The IDs of the subnets. |
Properties
Port
The port.
virtual Nullable<double> Port { get; }
Property Value
System.Nullable<System.Double>
Remarks
Protocol
The protocol.
virtual string Protocol { get; }
Property Value
System.String
Remarks
RdsDbClusterArn
The ARN of the DB cluster.
virtual string RdsDbClusterArn { get; }
Property Value
System.String
Remarks
RdsDbInstanceArn
The ARN of the RDS instance.
virtual string RdsDbInstanceArn { get; }
Property Value
System.String
Remarks
RdsDbProxyArn
The ARN of the RDS proxy.
virtual string RdsDbProxyArn { get; }
Property Value
System.String
Remarks
RdsEndpoint
The RDS endpoint.
virtual string RdsEndpoint { get; }
Property Value
System.String
Remarks
SubnetIds
The IDs of the subnets.
virtual string[] SubnetIds { get; }
Property Value
System.String[]
Remarks
You can specify only one subnet per Availability Zone.