DBProxy

public struct DBProxy : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • One or more data structures specifying the authorization mechanism to connect to the associated RDS DB instance or Aurora DB cluster.

    Declaration

    Swift

    public let auth: [UserAuthConfigInfo]?
  • The date and time when the proxy was first created.

    Declaration

    Swift

    public let createdDate: TimeStamp?
  • The Amazon Resource Name (ARN) for the proxy.

    Declaration

    Swift

    public let dBProxyArn: String?
  • The identifier for the proxy. This name must be unique for all proxies owned by your AWS account in the specified AWS Region.

    Declaration

    Swift

    public let dBProxyName: String?
  • Whether the proxy includes detailed information about SQL statements in its logs. This information helps you to debug issues involving SQL behavior or the performance and scalability of the proxy connections. The debug information includes the text of SQL statements that you submit through the proxy. Thus, only enable this setting when needed for debugging, and only when you have security measures in place to safeguard any sensitive information that appears in the logs.

    Declaration

    Swift

    public let debugLogging: Bool?
  • The endpoint that you can use to connect to the proxy. You include the endpoint value in the connection string for a database client application.

    Declaration

    Swift

    public let endpoint: String?
  • The engine family applies to MySQL and PostgreSQL for both RDS and Aurora.

    Declaration

    Swift

    public let engineFamily: String?
  • The number of seconds a connection to the proxy can have no activity before the proxy drops the client connection. The proxy keeps the underlying database connection open and puts it back into the connection pool for reuse by later connection requests. Default: 1800 (30 minutes) Constraints: 1 to 28,800

    Declaration

    Swift

    public let idleClientTimeout: Int?
  • Indicates whether Transport Layer Security (TLS) encryption is required for connections to the proxy.

    Declaration

    Swift

    public let requireTLS: Bool?
  • The Amazon Resource Name (ARN) for the IAM role that the proxy uses to access Amazon Secrets Manager.

    Declaration

    Swift

    public let roleArn: String?
  • The current status of this proxy. A status of available means the proxy is ready to handle requests. Other values indicate that you must wait for the proxy to be ready, or take some action to resolve an issue.

    Declaration

    Swift

    public let status: DBProxyStatus?
  • The date and time when the proxy was last updated.

    Declaration

    Swift

    public let updatedDate: TimeStamp?
  • Provides a list of VPC security groups that the proxy belongs to.

    Declaration

    Swift

    public let vpcSecurityGroupIds: [String]?
  • The EC2 subnet IDs for the proxy.

    Declaration

    Swift

    public let vpcSubnetIds: [String]?
  • Undocumented

    Declaration

    Swift

    public init(auth: [UserAuthConfigInfo]? = nil, createdDate: TimeStamp? = nil, dBProxyArn: String? = nil, dBProxyName: String? = nil, debugLogging: Bool? = nil, endpoint: String? = nil, engineFamily: String? = nil, idleClientTimeout: Int? = nil, requireTLS: Bool? = nil, roleArn: String? = nil, status: DBProxyStatus? = nil, updatedDate: TimeStamp? = nil, vpcSecurityGroupIds: [String]? = nil, vpcSubnetIds: [String]? = nil)