BatchExecuteStatementRequest

public struct BatchExecuteStatementRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The name of the database.

    Declaration

    Swift

    public let database: String?
  • The parameter set for the batch operation. The SQL statement is executed as many times as the number of parameter sets provided. To execute a SQL statement with no parameters, use one of the following options: Specify one or more empty parameter sets. Use the ExecuteStatement operation instead of the BatchExecuteStatement operation. Array parameters are not supported.

    Declaration

    Swift

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

    Declaration

    Swift

    public let resourceArn: String
  • 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(database: String? = nil, parameterSets: [[SqlParameter]]? = nil, resourceArn: String, schema: String? = nil, secretArn: String, sql: String, transactionId: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws