Class: Aws::QLDB::Types::S3ExportConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::QLDB::Types::S3ExportConfiguration
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-qldb/types.rb
 
Overview
The Amazon Simple Storage Service (Amazon S3) bucket location in which a journal export job writes the journal contents.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #bucket  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon S3 bucket name in which a journal export job writes the journal contents.
 - 
  
    
      #encryption_configuration  ⇒ Types::S3EncryptionConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The encryption settings that are used by a journal export job to write data in an Amazon S3 bucket.
 - 
  
    
      #prefix  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The prefix for the Amazon S3 bucket in which a journal export job writes the journal contents.
 
Instance Attribute Details
#bucket ⇒ String
The Amazon S3 bucket name in which a journal export job writes the journal contents.
The bucket name must comply with the Amazon S3 bucket naming conventions. For more information, see [Bucket Restrictions and Limitations] in the *Amazon S3 Developer Guide*.
[1]: docs.aws.amazon.com/AmazonS3/latest/dev/BucketRestrictions.html
      1299 1300 1301 1302 1303 1304 1305  | 
    
      # File 'lib/aws-sdk-qldb/types.rb', line 1299 class S3ExportConfiguration < Struct.new( :bucket, :prefix, :encryption_configuration) SENSITIVE = [] include Aws::Structure end  | 
  
#encryption_configuration ⇒ Types::S3EncryptionConfiguration
The encryption settings that are used by a journal export job to write data in an Amazon S3 bucket.
      1299 1300 1301 1302 1303 1304 1305  | 
    
      # File 'lib/aws-sdk-qldb/types.rb', line 1299 class S3ExportConfiguration < Struct.new( :bucket, :prefix, :encryption_configuration) SENSITIVE = [] include Aws::Structure end  | 
  
#prefix ⇒ String
The prefix for the Amazon S3 bucket in which a journal export job writes the journal contents.
The prefix must comply with Amazon S3 key naming rules and restrictions. For more information, see [Object Key and Metadata] in the *Amazon S3 Developer Guide*.
The following are examples of valid ‘Prefix` values:
- 
‘JournalExports-ForMyLedger/Testing/`
 - 
‘JournalExports`
 - 
‘My:Tests/`
 
[1]: docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html
      1299 1300 1301 1302 1303 1304 1305  | 
    
      # File 'lib/aws-sdk-qldb/types.rb', line 1299 class S3ExportConfiguration < Struct.new( :bucket, :prefix, :encryption_configuration) SENSITIVE = [] include Aws::Structure end  |