GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Paws::QLDB::ExportJournalToS3(3) User Contributed Perl Documentation Paws::QLDB::ExportJournalToS3(3)

Paws::QLDB::ExportJournalToS3 - Arguments for method ExportJournalToS3 on Paws::QLDB

This class represents the parameters used for calling the method ExportJournalToS3 on the Amazon QLDB service. Use the attributes of this class as arguments to method ExportJournalToS3.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ExportJournalToS3.

    my $qldb = Paws->service('QLDB');
    my $ExportJournalToS3Response = $qldb->ExportJournalToS3(
      ExclusiveEndTime      => '1970-01-01T01:00:00',
      InclusiveStartTime    => '1970-01-01T01:00:00',
      Name                  => 'MyLedgerName',
      RoleArn               => 'MyArn',
      S3ExportConfiguration => {
        Bucket                  => 'MyS3Bucket',    # min: 3, max: 255
        EncryptionConfiguration => {
          ObjectEncryptionType =>
            'SSE_KMS',    # values: SSE_KMS, SSE_S3, NO_ENCRYPTION
          KmsKeyArn => 'MyArn',    # min: 20, max: 1600
        },
        Prefix => 'MyS3Prefix',    # max: 128
      },
    );
    # Results:
    my $ExportId = $ExportJournalToS3Response->ExportId;
    # Returns a L<Paws::QLDB::ExportJournalToS3Response> object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/qldb/ExportJournalToS3>

REQUIRED ExclusiveEndTime => Str

The exclusive end date and time for the range of journal contents to export.

The "ExclusiveEndTime" must be in "ISO 8601" date and time format and in Universal Coordinated Time (UTC). For example: "2019-06-13T21:36:34Z".

The "ExclusiveEndTime" must be less than or equal to the current UTC date and time.

REQUIRED InclusiveStartTime => Str

The inclusive start date and time for the range of journal contents to export.

The "InclusiveStartTime" must be in "ISO 8601" date and time format and in Universal Coordinated Time (UTC). For example: "2019-06-13T21:36:34Z".

The "InclusiveStartTime" must be before "ExclusiveEndTime".

If you provide an "InclusiveStartTime" that is before the ledger's "CreationDateTime", Amazon QLDB defaults it to the ledger's "CreationDateTime".

REQUIRED Name => Str

The name of the ledger.

REQUIRED RoleArn => Str

The Amazon Resource Name (ARN) of the IAM role that grants QLDB permissions for a journal export job to do the following:

  • Write objects into your Amazon Simple Storage Service (Amazon S3) bucket.
  • (Optional) Use your customer master key (CMK) in AWS Key Management Service (AWS KMS) for server-side encryption of your exported data.

REQUIRED S3ExportConfiguration => Paws::QLDB::S3ExportConfiguration

The configuration settings of the Amazon S3 bucket destination for your export request.

This class forms part of Paws, documenting arguments for method ExportJournalToS3 in Paws::QLDB

The source code is located here: <https://github.com/pplu/aws-sdk-perl>

Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>

2022-06-01 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.