Class CfnDBProxyProps
Properties for defining a CfnDBProxy.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDBProxyProps : ICfnDBProxyProps
Syntax (vb)
Public Class CfnDBProxyProps Implements ICfnDBProxyProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.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.RDS;
var cfnDBProxyProps = new CfnDBProxyProps {
DbProxyName = "dbProxyName",
EngineFamily = "engineFamily",
RoleArn = "roleArn",
VpcSubnetIds = new [] { "vpcSubnetIds" },
// the properties below are optional
Auth = new [] { new AuthFormatProperty {
AuthScheme = "authScheme",
ClientPasswordAuthType = "clientPasswordAuthType",
Description = "description",
IamAuth = "iamAuth",
SecretArn = "secretArn"
} },
DebugLogging = false,
DefaultAuthScheme = "defaultAuthScheme",
EndpointNetworkType = "endpointNetworkType",
IdleClientTimeout = 123,
RequireTls = false,
Tags = new [] { new TagFormatProperty {
Key = "key",
Value = "value"
} },
TargetConnectionNetworkType = "targetConnectionNetworkType",
VpcSecurityGroupIds = new [] { "vpcSecurityGroupIds" }
};
Synopsis
Constructors
| CfnDBProxyProps() | Properties for defining a |
Properties
| Auth | The authorization mechanism that the proxy uses. |
| DbProxyName | The identifier for the proxy. |
| DebugLogging | Specifies whether the proxy logs detailed connection and query information. |
| DefaultAuthScheme | The default authentication scheme that the proxy uses for client connections to the proxy and connections from the proxy to the underlying database. |
| EndpointNetworkType | The network type of the DB proxy endpoint. |
| EngineFamily | The kinds of databases that the proxy can connect to. |
| IdleClientTimeout | The number of seconds that a connection to the proxy can be inactive before the proxy disconnects it. |
| RequireTls | Specifies whether Transport Layer Security (TLS) encryption is required for connections to the proxy. |
| RoleArn | The Amazon Resource Name (ARN) of the IAM role that the proxy uses to access secrets in AWS Secrets Manager. |
| Tags | An optional set of key-value pairs to associate arbitrary data of your choosing with the proxy. |
| TargetConnectionNetworkType | The network type that the proxy uses to connect to the target database. |
| VpcSecurityGroupIds | One or more VPC security group IDs to associate with the new proxy. |
| VpcSubnetIds | One or more VPC subnet IDs to associate with the new proxy. |
Constructors
CfnDBProxyProps()
Properties for defining a CfnDBProxy.
public CfnDBProxyProps()
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.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.RDS;
var cfnDBProxyProps = new CfnDBProxyProps {
DbProxyName = "dbProxyName",
EngineFamily = "engineFamily",
RoleArn = "roleArn",
VpcSubnetIds = new [] { "vpcSubnetIds" },
// the properties below are optional
Auth = new [] { new AuthFormatProperty {
AuthScheme = "authScheme",
ClientPasswordAuthType = "clientPasswordAuthType",
Description = "description",
IamAuth = "iamAuth",
SecretArn = "secretArn"
} },
DebugLogging = false,
DefaultAuthScheme = "defaultAuthScheme",
EndpointNetworkType = "endpointNetworkType",
IdleClientTimeout = 123,
RequireTls = false,
Tags = new [] { new TagFormatProperty {
Key = "key",
Value = "value"
} },
TargetConnectionNetworkType = "targetConnectionNetworkType",
VpcSecurityGroupIds = new [] { "vpcSecurityGroupIds" }
};
Properties
Auth
The authorization mechanism that the proxy uses.
public object? Auth { get; set; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnDBProxy.IAuthFormatProperty)[]
DbProxyName
The identifier for the proxy.
public string DbProxyName { get; set; }
Property Value
Remarks
This name must be unique for all proxies owned by your AWS account in the specified AWS Region . An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can't end with a hyphen or contain two consecutive hyphens.
DebugLogging
Specifies whether the proxy logs detailed connection and query information.
public object? DebugLogging { get; set; }
Property Value
Remarks
When you enable DebugLogging , the proxy captures connection details and connection pool behavior from your queries. Debug logging increases CloudWatch costs and can impact proxy performance. Enable this option only when you need to troubleshoot connection or performance issues.
Type union: either bool or IResolvable
DefaultAuthScheme
The default authentication scheme that the proxy uses for client connections to the proxy and connections from the proxy to the underlying database.
public string? DefaultAuthScheme { get; set; }
Property Value
Remarks
Valid values are NONE and IAM_AUTH . When set to IAM_AUTH , the proxy uses end-to-end IAM authentication to connect to the database.
EndpointNetworkType
The network type of the DB proxy endpoint.
public string? EndpointNetworkType { get; set; }
Property Value
Remarks
The network type determines the IP version that the proxy endpoint supports.
Valid values:
EngineFamily
The kinds of databases that the proxy can connect to.
public string EngineFamily { get; set; }
Property Value
Remarks
This value determines which database network protocol the proxy recognizes when it interprets network traffic to and from the database. For Aurora MySQL, RDS for MariaDB, and RDS for MySQL databases, specify MYSQL . For Aurora PostgreSQL and RDS for PostgreSQL databases, specify POSTGRESQL . For RDS for Microsoft SQL Server, specify SQLSERVER .
IdleClientTimeout
The number of seconds that a connection to the proxy can be inactive before the proxy disconnects it.
public double? IdleClientTimeout { get; set; }
Property Value
Remarks
You can set this value higher or lower than the connection timeout limit for the associated database.
RequireTls
Specifies whether Transport Layer Security (TLS) encryption is required for connections to the proxy.
public object? RequireTls { get; set; }
Property Value
Remarks
By enabling this setting, you can enforce encrypted TLS connections to the proxy.
Type union: either bool or IResolvable
RoleArn
The Amazon Resource Name (ARN) of the IAM role that the proxy uses to access secrets in AWS Secrets Manager.
public object RoleArn { get; set; }
Property Value
Remarks
Type union: either string or IRoleRef
Tags
An optional set of key-value pairs to associate arbitrary data of your choosing with the proxy.
public CfnDBProxy.ITagFormatProperty[]? Tags { get; set; }
Property Value
Remarks
TargetConnectionNetworkType
The network type that the proxy uses to connect to the target database.
public string? TargetConnectionNetworkType { get; set; }
Property Value
Remarks
The network type determines the IP version that the proxy uses for connections to the database.
Valid values:
VpcSecurityGroupIds
One or more VPC security group IDs to associate with the new proxy.
public object[]? VpcSecurityGroupIds { get; set; }
Property Value
object[]
Remarks
If you plan to update the resource, don't specify VPC security groups in a shared VPC.
Type union: (either string or ISecurityGroupRef)[]
VpcSubnetIds
One or more VPC subnet IDs to associate with the new proxy.
public object[] VpcSubnetIds { get; set; }
Property Value
object[]
Remarks
Type union: (either string or ISubnetRef)[]