Class CfnVerifiedAccessEndpointPropsMixin.RdsOptionsProperty
Describes the RDS options for a Verified Access endpoint.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnVerifiedAccessEndpointPropsMixin.RdsOptionsProperty : CfnVerifiedAccessEndpointPropsMixin.IRdsOptionsProperty
Syntax (vb)
Public Class CfnVerifiedAccessEndpointPropsMixin.RdsOptionsProperty Implements CfnVerifiedAccessEndpointPropsMixin.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.Mixins.Preview.AWS.EC2.Mixins;
var rdsOptionsProperty = new RdsOptionsProperty {
Port = 123,
Protocol = "protocol",
RdsDbClusterArn = "rdsDbClusterArn",
RdsDbInstanceArn = "rdsDbInstanceArn",
RdsDbProxyArn = "rdsDbProxyArn",
RdsEndpoint = "rdsEndpoint",
SubnetIds = new [] { "subnetIds" }
};
Synopsis
Constructors
| RdsOptionsProperty() | Describes the RDS options for a Verified Access endpoint. |
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()
Describes the RDS options for a Verified Access endpoint.
public RdsOptionsProperty()
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.Mixins.Preview.AWS.EC2.Mixins;
var rdsOptionsProperty = new RdsOptionsProperty {
Port = 123,
Protocol = "protocol",
RdsDbClusterArn = "rdsDbClusterArn",
RdsDbInstanceArn = "rdsDbInstanceArn",
RdsDbProxyArn = "rdsDbProxyArn",
RdsEndpoint = "rdsEndpoint",
SubnetIds = new [] { "subnetIds" }
};
Properties
Port
The port.
public double? Port { get; set; }
Property Value
Remarks
Protocol
The protocol.
public string? Protocol { get; set; }
Property Value
Remarks
RdsDbClusterArn
The ARN of the DB cluster.
public string? RdsDbClusterArn { get; set; }
Property Value
Remarks
RdsDbInstanceArn
The ARN of the RDS instance.
public string? RdsDbInstanceArn { get; set; }
Property Value
Remarks
RdsDbProxyArn
The ARN of the RDS proxy.
public string? RdsDbProxyArn { get; set; }
Property Value
Remarks
RdsEndpoint
The RDS endpoint.
public string? RdsEndpoint { get; set; }
Property Value
Remarks
SubnetIds
The IDs of the subnets.
public string[]? SubnetIds { get; set; }
Property Value
string[]
Remarks
You can specify only one subnet per Availability Zone.