The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

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

DESCRIPTION

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.

SYNOPSIS

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

ATTRIBUTES

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.

SEE ALSO

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

BUGS and CONTRIBUTIONS

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