Class: Aws::RDSDataService::Types::BeginTransactionRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::RDSDataService::Types::BeginTransactionRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-rdsdataservice/types.rb
 
Overview
The request parameters represent the input of a request to start a SQL transaction.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #database  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the database.
 - 
  
    
      #resource_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.
 - 
  
    
      #schema  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the database schema.
 - 
  
    
      #secret_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name or ARN of the secret that enables access to the DB cluster.
 
Instance Attribute Details
#database ⇒ String
The name of the database.
      201 202 203 204 205 206 207 208  | 
    
      # File 'lib/aws-sdk-rdsdataservice/types.rb', line 201 class BeginTransactionRequest < Struct.new( :resource_arn, :secret_arn, :database, :schema) SENSITIVE = [] include Aws::Structure end  | 
  
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.
      201 202 203 204 205 206 207 208  | 
    
      # File 'lib/aws-sdk-rdsdataservice/types.rb', line 201 class BeginTransactionRequest < Struct.new( :resource_arn, :secret_arn, :database, :schema) SENSITIVE = [] include Aws::Structure end  | 
  
#schema ⇒ String
The name of the database schema.
      201 202 203 204 205 206 207 208  | 
    
      # File 'lib/aws-sdk-rdsdataservice/types.rb', line 201 class BeginTransactionRequest < Struct.new( :resource_arn, :secret_arn, :database, :schema) SENSITIVE = [] include Aws::Structure end  | 
  
#secret_arn ⇒ String
The name or ARN of the secret that enables access to the DB cluster.
      201 202 203 204 205 206 207 208  | 
    
      # File 'lib/aws-sdk-rdsdataservice/types.rb', line 201 class BeginTransactionRequest < Struct.new( :resource_arn, :secret_arn, :database, :schema) SENSITIVE = [] include Aws::Structure end  |