Class CfnVerifiedAccessEndpoint.RdsOptionsProperty
Describes the RDS options for a Verified Access endpoint.
Inheritance
System.Object
CfnVerifiedAccessEndpoint.RdsOptionsProperty
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class RdsOptionsProperty : Object, CfnVerifiedAccessEndpoint.IRdsOptionsProperty
Syntax (vb)
Public Class RdsOptionsProperty
Inherits Object
Implements CfnVerifiedAccessEndpoint.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
Constructors
RdsOptionsProperty() |
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. |
Constructors
RdsOptionsProperty()
public RdsOptionsProperty()
Properties
Port
The port.
public Nullable<double> Port { get; set; }
Property Value
System.Nullable<System.Double>
Remarks
Protocol
The protocol.
public string Protocol { get; set; }
Property Value
System.String
Remarks
RdsDbClusterArn
The ARN of the DB cluster.
public string RdsDbClusterArn { get; set; }
Property Value
System.String
Remarks
RdsDbInstanceArn
The ARN of the RDS instance.
public string RdsDbInstanceArn { get; set; }
Property Value
System.String
Remarks
RdsDbProxyArn
The ARN of the RDS proxy.
public string RdsDbProxyArn { get; set; }
Property Value
System.String
Remarks
RdsEndpoint
The RDS endpoint.
public string RdsEndpoint { get; set; }
Property Value
System.String
Remarks
SubnetIds
The IDs of the subnets.
public string[] SubnetIds { get; set; }
Property Value
System.String[]
Remarks
You can specify only one subnet per Availability Zone.