ExecuteStatementRequest

public struct ExecuteStatementRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out. For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.

    Declaration

    Swift

    public let continueAfterTimeout: Bool?
  • The name of the database.

    Declaration

    Swift

    public let database: String?
  • A value that indicates whether to include metadata in the results.

    Declaration

    Swift

    public let includeResultMetadata: Bool?
  • The parameters for the SQL statement. Array parameters are not supported.

    Declaration

    Swift

    public let parameters: [SqlParameter]?
  • The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

    Declaration

    Swift

    public let resourceArn: String
  • Options that control how the result set is returned.

    Declaration

    Swift

    public let resultSetOptions: ResultSetOptions?
  • The name of the database schema.

    Declaration

    Swift

    public let schema: String?
  • The name or ARN of the secret that enables access to the DB cluster.

    Declaration

    Swift

    public let secretArn: String
  • sql

    The SQL statement to run.

    Declaration

    Swift

    public let sql: String
  • The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in. If the SQL statement is not part of a transaction, don’t set this parameter.

    Declaration

    Swift

    public let transactionId: String?
  • Undocumented

    Declaration

    Swift

    public init(continueAfterTimeout: Bool? = nil, database: String? = nil, includeResultMetadata: Bool? = nil, parameters: [SqlParameter]? = nil, resourceArn: String, resultSetOptions: ResultSetOptions? = nil, schema: String? = nil, secretArn: String, sql: String, transactionId: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws