Class: Aws::RDSDataService::Types::CommitTransactionRequest

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 CommitTransactionRequest data as a hash:

{
  resource_arn: "Arn", # required
  secret_arn: "Arn", # required
  transaction_id: "Id", # required
}

The request parameters represent the input of a commit transaction request.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

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

Returns:

  • (String)


359
360
361
362
363
364
365
# File 'lib/aws-sdk-rdsdataservice/types.rb', line 359

class CommitTransactionRequest < Struct.new(
  :resource_arn,
  :secret_arn,
  :transaction_id)
  SENSITIVE = []
  include Aws::Structure
end

#secret_arnString

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

Returns:

  • (String)


359
360
361
362
363
364
365
# File 'lib/aws-sdk-rdsdataservice/types.rb', line 359

class CommitTransactionRequest < Struct.new(
  :resource_arn,
  :secret_arn,
  :transaction_id)
  SENSITIVE = []
  include Aws::Structure
end

#transaction_idString

The identifier of the transaction to end and commit.

Returns:

  • (String)


359
360
361
362
363
364
365
# File 'lib/aws-sdk-rdsdataservice/types.rb', line 359

class CommitTransactionRequest < Struct.new(
  :resource_arn,
  :secret_arn,
  :transaction_id)
  SENSITIVE = []
  include Aws::Structure
end