Show / Hide Table of Contents

Class CfnVerifiedAccessEndpoint.RdsOptionsProperty

Describes the RDS options for a Verified Access endpoint.

Inheritance
object
CfnVerifiedAccessEndpoint.RdsOptionsProperty
Implements
CfnVerifiedAccessEndpoint.IRdsOptionsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnVerifiedAccessEndpoint.RdsOptionsProperty : CfnVerifiedAccessEndpoint.IRdsOptionsProperty
Syntax (vb)
Public Class CfnVerifiedAccessEndpoint.RdsOptionsProperty Implements CfnVerifiedAccessEndpoint.IRdsOptionsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-rdsoptions.html

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()

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-rdsoptions.html

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" }
             };

Properties

Port

The port.

public double? Port { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-rdsoptions.html#cfn-ec2-verifiedaccessendpoint-rdsoptions-port

Protocol

The protocol.

public string? Protocol { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-rdsoptions.html#cfn-ec2-verifiedaccessendpoint-rdsoptions-protocol

RdsDbClusterArn

The ARN of the DB cluster.

public string? RdsDbClusterArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-rdsoptions.html#cfn-ec2-verifiedaccessendpoint-rdsoptions-rdsdbclusterarn

RdsDbInstanceArn

The ARN of the RDS instance.

public string? RdsDbInstanceArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-rdsoptions.html#cfn-ec2-verifiedaccessendpoint-rdsoptions-rdsdbinstancearn

RdsDbProxyArn

The ARN of the RDS proxy.

public string? RdsDbProxyArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-rdsoptions.html#cfn-ec2-verifiedaccessendpoint-rdsoptions-rdsdbproxyarn

RdsEndpoint

The RDS endpoint.

public string? RdsEndpoint { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-rdsoptions.html#cfn-ec2-verifiedaccessendpoint-rdsoptions-rdsendpoint

SubnetIds

The IDs of the subnets.

public string[]? SubnetIds { get; set; }
Property Value

string[]

Remarks

You can specify only one subnet per Availability Zone.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-rdsoptions.html#cfn-ec2-verifiedaccessendpoint-rdsoptions-subnetids

Implements

CfnVerifiedAccessEndpoint.IRdsOptionsProperty
Back to top Generated by DocFX