Class: Aws::RDSDataService::Types::BeginTransactionRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rdsdataservice/types.rb

Overview

Note:

When making an API call, you may pass BeginTransactionRequest data as a hash:

{
  database: "DbName",
  resource_arn: "Arn", # required
  schema: "DbName",
  secret_arn: "Arn", # required
}

The request parameters represent the input of a request to start a SQL transaction.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#databaseString

The name of the database.

Returns:

  • (String)


230
231
232
233
234
235
236
237
# File 'lib/aws-sdk-rdsdataservice/types.rb', line 230

class BeginTransactionRequest < Struct.new(
  :database,
  :resource_arn,
  :schema,
  :secret_arn)
  SENSITIVE = []
  include Aws::Structure
end

#resource_arnString

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

Returns:

  • (String)


230
231
232
233
234
235
236
237
# File 'lib/aws-sdk-rdsdataservice/types.rb', line 230

class BeginTransactionRequest < Struct.new(
  :database,
  :resource_arn,
  :schema,
  :secret_arn)
  SENSITIVE = []
  include Aws::Structure
end

#schemaString

The name of the database schema.

Returns:

  • (String)


230
231
232
233
234
235
236
237
# File 'lib/aws-sdk-rdsdataservice/types.rb', line 230

class BeginTransactionRequest < Struct.new(
  :database,
  :resource_arn,
  :schema,
  :secret_arn)
  SENSITIVE = []
  include Aws::Structure
end

#secret_arnString

The name or ARN of the secret that enables access to the DB cluster.

Returns:

  • (String)


230
231
232
233
234
235
236
237
# File 'lib/aws-sdk-rdsdataservice/types.rb', line 230

class BeginTransactionRequest < Struct.new(
  :database,
  :resource_arn,
  :schema,
  :secret_arn)
  SENSITIVE = []
  include Aws::Structure
end