Class CfnDBProxy
The AWS::RDS::DBProxy resource creates or updates a DB proxy.
Inherited Members
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDBProxy : CfnResource, IInspectable, IDBProxyRef, IConstruct, IDependable, IEnvironmentAware, ITaggableV2
Syntax (vb)
Public Class CfnDBProxy Inherits CfnResource Implements IInspectable, IDBProxyRef, IConstruct, IDependable, IEnvironmentAware, ITaggableV2
Remarks
For information about RDS Proxy for Amazon RDS, see Managing Connections with Amazon RDS Proxy in the Amazon RDS User Guide .
For information about RDS Proxy for Amazon Aurora, see Managing Connections with Amazon RDS Proxy in the Amazon Aurora User Guide .
Limitations apply to RDS Proxy, including DB engine version limitations and AWS Region limitations.
For information about limitations that apply to RDS Proxy for Amazon RDS, see Limitations for RDS Proxy in the Amazon RDS User Guide .
For information about that apply to RDS Proxy for Amazon Aurora, see Limitations for RDS Proxy in the Amazon Aurora User Guide .
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html
CloudformationResource: AWS::RDS::DBProxy
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 cfnDBProxy = new CfnDBProxy(this, "MyCfnDBProxy", 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
| CfnDBProxy(Construct, string, ICfnDBProxyProps) | Create a new |
Properties
| AttrDbProxyArn | The Amazon Resource Name (ARN) for the proxy. |
| AttrEndpoint | The endpoint that you can use to connect to the DB proxy. |
| AttrVpcId | The VPC ID to associate with the DB proxy. |
| Auth | The authorization mechanism that the proxy uses. |
| CFN_RESOURCE_TYPE_NAME | The CloudFormation resource type name for this resource class. |
| CdkTagManager | Tag Manager which manages the tags for this resource. |
| CfnProperties | The |
| DbProxyName | The identifier for the proxy. |
| DbProxyRef | A reference to a DBProxy resource. |
| 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. |
Methods
| ArnForDBProxy(IDBProxyRef) | The |
| Inspect(TreeInspector) | Examines the CloudFormation resource and discloses attributes. |
| IsCfnDBProxy(object) | Checks whether the given object is a CfnDBProxy. |
| RenderProperties(IDictionary<string, object>) | The |
Constructors
CfnDBProxy(Construct, string, ICfnDBProxyProps)
Create a new AWS::RDS::DBProxy.
public CfnDBProxy(Construct scope, string id, ICfnDBProxyProps props)
Parameters
- scope Construct
Scope in which this resource is defined.
- id string
Construct identifier for this resource (unique in its scope).
- props ICfnDBProxyProps
Resource properties.
Remarks
For information about RDS Proxy for Amazon RDS, see Managing Connections with Amazon RDS Proxy in the Amazon RDS User Guide .
For information about RDS Proxy for Amazon Aurora, see Managing Connections with Amazon RDS Proxy in the Amazon Aurora User Guide .
Limitations apply to RDS Proxy, including DB engine version limitations and AWS Region limitations.
For information about limitations that apply to RDS Proxy for Amazon RDS, see Limitations for RDS Proxy in the Amazon RDS User Guide .
For information about that apply to RDS Proxy for Amazon Aurora, see Limitations for RDS Proxy in the Amazon Aurora User Guide .
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html
CloudformationResource: AWS::RDS::DBProxy
ExampleMetadata: fixture=_generated
Properties
AttrDbProxyArn
The Amazon Resource Name (ARN) for the proxy.
public virtual string AttrDbProxyArn { get; }
Property Value
Remarks
CloudformationAttribute: DBProxyArn
AttrEndpoint
The endpoint that you can use to connect to the DB proxy.
public virtual string AttrEndpoint { get; }
Property Value
Remarks
You include the endpoint value in the connection string for a database client application.
CloudformationAttribute: Endpoint
AttrVpcId
The VPC ID to associate with the DB proxy.
public virtual string AttrVpcId { get; }
Property Value
Remarks
CloudformationAttribute: VpcId
Auth
The authorization mechanism that the proxy uses.
public virtual object? Auth { get; set; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnDBProxy.IAuthFormatProperty)[]
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value
Remarks
For information about RDS Proxy for Amazon RDS, see Managing Connections with Amazon RDS Proxy in the Amazon RDS User Guide .
For information about RDS Proxy for Amazon Aurora, see Managing Connections with Amazon RDS Proxy in the Amazon Aurora User Guide .
Limitations apply to RDS Proxy, including DB engine version limitations and AWS Region limitations.
For information about limitations that apply to RDS Proxy for Amazon RDS, see Limitations for RDS Proxy in the Amazon RDS User Guide .
For information about that apply to RDS Proxy for Amazon Aurora, see Limitations for RDS Proxy in the Amazon Aurora User Guide .
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html
CloudformationResource: AWS::RDS::DBProxy
ExampleMetadata: fixture=_generated
CdkTagManager
Tag Manager which manages the tags for this resource.
public virtual TagManager CdkTagManager { get; }
Property Value
Remarks
For information about RDS Proxy for Amazon RDS, see Managing Connections with Amazon RDS Proxy in the Amazon RDS User Guide .
For information about RDS Proxy for Amazon Aurora, see Managing Connections with Amazon RDS Proxy in the Amazon Aurora User Guide .
Limitations apply to RDS Proxy, including DB engine version limitations and AWS Region limitations.
For information about limitations that apply to RDS Proxy for Amazon RDS, see Limitations for RDS Proxy in the Amazon RDS User Guide .
For information about that apply to RDS Proxy for Amazon Aurora, see Limitations for RDS Proxy in the Amazon Aurora User Guide .
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html
CloudformationResource: AWS::RDS::DBProxy
ExampleMetadata: fixture=_generated
CfnProperties
The AWS::RDS::DBProxy resource creates or updates a DB proxy.
protected override IDictionary<string, object> CfnProperties { get; }
Property Value
Overrides
Remarks
For information about RDS Proxy for Amazon RDS, see Managing Connections with Amazon RDS Proxy in the Amazon RDS User Guide .
For information about RDS Proxy for Amazon Aurora, see Managing Connections with Amazon RDS Proxy in the Amazon Aurora User Guide .
Limitations apply to RDS Proxy, including DB engine version limitations and AWS Region limitations.
For information about limitations that apply to RDS Proxy for Amazon RDS, see Limitations for RDS Proxy in the Amazon RDS User Guide .
For information about that apply to RDS Proxy for Amazon Aurora, see Limitations for RDS Proxy in the Amazon Aurora User Guide .
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html
CloudformationResource: AWS::RDS::DBProxy
ExampleMetadata: fixture=_generated
DbProxyName
The identifier for the proxy.
public virtual string DbProxyName { get; set; }
Property Value
Remarks
For information about RDS Proxy for Amazon RDS, see Managing Connections with Amazon RDS Proxy in the Amazon RDS User Guide .
For information about RDS Proxy for Amazon Aurora, see Managing Connections with Amazon RDS Proxy in the Amazon Aurora User Guide .
Limitations apply to RDS Proxy, including DB engine version limitations and AWS Region limitations.
For information about limitations that apply to RDS Proxy for Amazon RDS, see Limitations for RDS Proxy in the Amazon RDS User Guide .
For information about that apply to RDS Proxy for Amazon Aurora, see Limitations for RDS Proxy in the Amazon Aurora User Guide .
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html
CloudformationResource: AWS::RDS::DBProxy
ExampleMetadata: fixture=_generated
DbProxyRef
A reference to a DBProxy resource.
public virtual IDBProxyReference DbProxyRef { get; }
Property Value
Remarks
For information about RDS Proxy for Amazon RDS, see Managing Connections with Amazon RDS Proxy in the Amazon RDS User Guide .
For information about RDS Proxy for Amazon Aurora, see Managing Connections with Amazon RDS Proxy in the Amazon Aurora User Guide .
Limitations apply to RDS Proxy, including DB engine version limitations and AWS Region limitations.
For information about limitations that apply to RDS Proxy for Amazon RDS, see Limitations for RDS Proxy in the Amazon RDS User Guide .
For information about that apply to RDS Proxy for Amazon Aurora, see Limitations for RDS Proxy in the Amazon Aurora User Guide .
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html
CloudformationResource: AWS::RDS::DBProxy
ExampleMetadata: fixture=_generated
DebugLogging
Specifies whether the proxy logs detailed connection and query information.
public virtual object? DebugLogging { get; set; }
Property Value
Remarks
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 virtual string? DefaultAuthScheme { get; set; }
Property Value
Remarks
For information about RDS Proxy for Amazon RDS, see Managing Connections with Amazon RDS Proxy in the Amazon RDS User Guide .
For information about RDS Proxy for Amazon Aurora, see Managing Connections with Amazon RDS Proxy in the Amazon Aurora User Guide .
Limitations apply to RDS Proxy, including DB engine version limitations and AWS Region limitations.
For information about limitations that apply to RDS Proxy for Amazon RDS, see Limitations for RDS Proxy in the Amazon RDS User Guide .
For information about that apply to RDS Proxy for Amazon Aurora, see Limitations for RDS Proxy in the Amazon Aurora User Guide .
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html
CloudformationResource: AWS::RDS::DBProxy
ExampleMetadata: fixture=_generated
EndpointNetworkType
The network type of the DB proxy endpoint.
public virtual string? EndpointNetworkType { get; set; }
Property Value
Remarks
For information about RDS Proxy for Amazon RDS, see Managing Connections with Amazon RDS Proxy in the Amazon RDS User Guide .
For information about RDS Proxy for Amazon Aurora, see Managing Connections with Amazon RDS Proxy in the Amazon Aurora User Guide .
Limitations apply to RDS Proxy, including DB engine version limitations and AWS Region limitations.
For information about limitations that apply to RDS Proxy for Amazon RDS, see Limitations for RDS Proxy in the Amazon RDS User Guide .
For information about that apply to RDS Proxy for Amazon Aurora, see Limitations for RDS Proxy in the Amazon Aurora User Guide .
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html
CloudformationResource: AWS::RDS::DBProxy
ExampleMetadata: fixture=_generated
EngineFamily
The kinds of databases that the proxy can connect to.
public virtual string EngineFamily { get; set; }
Property Value
Remarks
For information about RDS Proxy for Amazon RDS, see Managing Connections with Amazon RDS Proxy in the Amazon RDS User Guide .
For information about RDS Proxy for Amazon Aurora, see Managing Connections with Amazon RDS Proxy in the Amazon Aurora User Guide .
Limitations apply to RDS Proxy, including DB engine version limitations and AWS Region limitations.
For information about limitations that apply to RDS Proxy for Amazon RDS, see Limitations for RDS Proxy in the Amazon RDS User Guide .
For information about that apply to RDS Proxy for Amazon Aurora, see Limitations for RDS Proxy in the Amazon Aurora User Guide .
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html
CloudformationResource: AWS::RDS::DBProxy
ExampleMetadata: fixture=_generated
IdleClientTimeout
The number of seconds that a connection to the proxy can be inactive before the proxy disconnects it.
public virtual double? IdleClientTimeout { get; set; }
Property Value
Remarks
For information about RDS Proxy for Amazon RDS, see Managing Connections with Amazon RDS Proxy in the Amazon RDS User Guide .
For information about RDS Proxy for Amazon Aurora, see Managing Connections with Amazon RDS Proxy in the Amazon Aurora User Guide .
Limitations apply to RDS Proxy, including DB engine version limitations and AWS Region limitations.
For information about limitations that apply to RDS Proxy for Amazon RDS, see Limitations for RDS Proxy in the Amazon RDS User Guide .
For information about that apply to RDS Proxy for Amazon Aurora, see Limitations for RDS Proxy in the Amazon Aurora User Guide .
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html
CloudformationResource: AWS::RDS::DBProxy
ExampleMetadata: fixture=_generated
RequireTls
Specifies whether Transport Layer Security (TLS) encryption is required for connections to the proxy.
public virtual object? RequireTls { get; set; }
Property Value
Remarks
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 virtual string RoleArn { get; set; }
Property Value
Remarks
For information about RDS Proxy for Amazon RDS, see Managing Connections with Amazon RDS Proxy in the Amazon RDS User Guide .
For information about RDS Proxy for Amazon Aurora, see Managing Connections with Amazon RDS Proxy in the Amazon Aurora User Guide .
Limitations apply to RDS Proxy, including DB engine version limitations and AWS Region limitations.
For information about limitations that apply to RDS Proxy for Amazon RDS, see Limitations for RDS Proxy in the Amazon RDS User Guide .
For information about that apply to RDS Proxy for Amazon Aurora, see Limitations for RDS Proxy in the Amazon Aurora User Guide .
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html
CloudformationResource: AWS::RDS::DBProxy
ExampleMetadata: fixture=_generated
Tags
An optional set of key-value pairs to associate arbitrary data of your choosing with the proxy.
public virtual CfnDBProxy.ITagFormatProperty[]? Tags { get; set; }
Property Value
Remarks
For information about RDS Proxy for Amazon RDS, see Managing Connections with Amazon RDS Proxy in the Amazon RDS User Guide .
For information about RDS Proxy for Amazon Aurora, see Managing Connections with Amazon RDS Proxy in the Amazon Aurora User Guide .
Limitations apply to RDS Proxy, including DB engine version limitations and AWS Region limitations.
For information about limitations that apply to RDS Proxy for Amazon RDS, see Limitations for RDS Proxy in the Amazon RDS User Guide .
For information about that apply to RDS Proxy for Amazon Aurora, see Limitations for RDS Proxy in the Amazon Aurora User Guide .
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html
CloudformationResource: AWS::RDS::DBProxy
ExampleMetadata: fixture=_generated
TargetConnectionNetworkType
The network type that the proxy uses to connect to the target database.
public virtual string? TargetConnectionNetworkType { get; set; }
Property Value
Remarks
For information about RDS Proxy for Amazon RDS, see Managing Connections with Amazon RDS Proxy in the Amazon RDS User Guide .
For information about RDS Proxy for Amazon Aurora, see Managing Connections with Amazon RDS Proxy in the Amazon Aurora User Guide .
Limitations apply to RDS Proxy, including DB engine version limitations and AWS Region limitations.
For information about limitations that apply to RDS Proxy for Amazon RDS, see Limitations for RDS Proxy in the Amazon RDS User Guide .
For information about that apply to RDS Proxy for Amazon Aurora, see Limitations for RDS Proxy in the Amazon Aurora User Guide .
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html
CloudformationResource: AWS::RDS::DBProxy
ExampleMetadata: fixture=_generated
VpcSecurityGroupIds
One or more VPC security group IDs to associate with the new proxy.
public virtual string[]? VpcSecurityGroupIds { get; set; }
Property Value
string[]
Remarks
For information about RDS Proxy for Amazon RDS, see Managing Connections with Amazon RDS Proxy in the Amazon RDS User Guide .
For information about RDS Proxy for Amazon Aurora, see Managing Connections with Amazon RDS Proxy in the Amazon Aurora User Guide .
Limitations apply to RDS Proxy, including DB engine version limitations and AWS Region limitations.
For information about limitations that apply to RDS Proxy for Amazon RDS, see Limitations for RDS Proxy in the Amazon RDS User Guide .
For information about that apply to RDS Proxy for Amazon Aurora, see Limitations for RDS Proxy in the Amazon Aurora User Guide .
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html
CloudformationResource: AWS::RDS::DBProxy
ExampleMetadata: fixture=_generated
VpcSubnetIds
One or more VPC subnet IDs to associate with the new proxy.
public virtual string[] VpcSubnetIds { get; set; }
Property Value
string[]
Remarks
For information about RDS Proxy for Amazon RDS, see Managing Connections with Amazon RDS Proxy in the Amazon RDS User Guide .
For information about RDS Proxy for Amazon Aurora, see Managing Connections with Amazon RDS Proxy in the Amazon Aurora User Guide .
Limitations apply to RDS Proxy, including DB engine version limitations and AWS Region limitations.
For information about limitations that apply to RDS Proxy for Amazon RDS, see Limitations for RDS Proxy in the Amazon RDS User Guide .
For information about that apply to RDS Proxy for Amazon Aurora, see Limitations for RDS Proxy in the Amazon Aurora User Guide .
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html
CloudformationResource: AWS::RDS::DBProxy
ExampleMetadata: fixture=_generated
Methods
ArnForDBProxy(IDBProxyRef)
The AWS::RDS::DBProxy resource creates or updates a DB proxy.
public static string ArnForDBProxy(IDBProxyRef resource)
Parameters
- resource IDBProxyRef
Returns
Remarks
For information about RDS Proxy for Amazon RDS, see Managing Connections with Amazon RDS Proxy in the Amazon RDS User Guide .
For information about RDS Proxy for Amazon Aurora, see Managing Connections with Amazon RDS Proxy in the Amazon Aurora User Guide .
Limitations apply to RDS Proxy, including DB engine version limitations and AWS Region limitations.
For information about limitations that apply to RDS Proxy for Amazon RDS, see Limitations for RDS Proxy in the Amazon RDS User Guide .
For information about that apply to RDS Proxy for Amazon Aurora, see Limitations for RDS Proxy in the Amazon Aurora User Guide .
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html
CloudformationResource: AWS::RDS::DBProxy
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 cfnDBProxy = new CfnDBProxy(this, "MyCfnDBProxy", 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" }
});
Inspect(TreeInspector)
Examines the CloudFormation resource and discloses attributes.
public virtual void Inspect(TreeInspector inspector)
Parameters
- inspector TreeInspector
tree inspector to collect and process attributes.
Remarks
For information about RDS Proxy for Amazon RDS, see Managing Connections with Amazon RDS Proxy in the Amazon RDS User Guide .
For information about RDS Proxy for Amazon Aurora, see Managing Connections with Amazon RDS Proxy in the Amazon Aurora User Guide .
Limitations apply to RDS Proxy, including DB engine version limitations and AWS Region limitations.
For information about limitations that apply to RDS Proxy for Amazon RDS, see Limitations for RDS Proxy in the Amazon RDS User Guide .
For information about that apply to RDS Proxy for Amazon Aurora, see Limitations for RDS Proxy in the Amazon Aurora User Guide .
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html
CloudformationResource: AWS::RDS::DBProxy
ExampleMetadata: fixture=_generated
IsCfnDBProxy(object)
Checks whether the given object is a CfnDBProxy.
public static bool IsCfnDBProxy(object x)
Parameters
- x object
Returns
Remarks
For information about RDS Proxy for Amazon RDS, see Managing Connections with Amazon RDS Proxy in the Amazon RDS User Guide .
For information about RDS Proxy for Amazon Aurora, see Managing Connections with Amazon RDS Proxy in the Amazon Aurora User Guide .
Limitations apply to RDS Proxy, including DB engine version limitations and AWS Region limitations.
For information about limitations that apply to RDS Proxy for Amazon RDS, see Limitations for RDS Proxy in the Amazon RDS User Guide .
For information about that apply to RDS Proxy for Amazon Aurora, see Limitations for RDS Proxy in the Amazon Aurora User Guide .
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html
CloudformationResource: AWS::RDS::DBProxy
ExampleMetadata: fixture=_generated
RenderProperties(IDictionary<string, object>)
The AWS::RDS::DBProxy resource creates or updates a DB proxy.
protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
- props IDictionary<string, object>
Returns
Overrides
Remarks
For information about RDS Proxy for Amazon RDS, see Managing Connections with Amazon RDS Proxy in the Amazon RDS User Guide .
For information about RDS Proxy for Amazon Aurora, see Managing Connections with Amazon RDS Proxy in the Amazon Aurora User Guide .
Limitations apply to RDS Proxy, including DB engine version limitations and AWS Region limitations.
For information about limitations that apply to RDS Proxy for Amazon RDS, see Limitations for RDS Proxy in the Amazon RDS User Guide .
For information about that apply to RDS Proxy for Amazon Aurora, see Limitations for RDS Proxy in the Amazon Aurora User Guide .
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbproxy.html
CloudformationResource: AWS::RDS::DBProxy
ExampleMetadata: fixture=_generated