PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::QLDB::ExportJournalToS3; use Moose; has ExclusiveEndTime => (is => 'ro', isa => 'Str', required => 1); has InclusiveStartTime => (is => 'ro', isa => 'Str', required => 1); has Name => (is => 'ro', isa => 'Str', traits => ['ParamInURI'], uri_name => 'name', required => 1); has RoleArn => (is => 'ro', isa => 'Str', required => 1); has S3ExportConfiguration => (is => 'ro', isa => 'Paws::QLDB::S3ExportConfiguration', required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'ExportJournalToS3'); class_has _api_uri => (isa => 'Str', is => 'ro', default => '/ledgers/{name}/journal-s3-exports'); class_has _api_method => (isa => 'Str', is => 'ro', default => 'POST'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::QLDB::ExportJournalToS3Response'); 1; ### main pod documentation begin ### =head1 NAME Paws::QLDB::ExportJournalToS3 - Arguments for method ExportJournalToS3 on L =head1 DESCRIPTION This class represents the parameters used for calling the method ExportJournalToS3 on the L 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. =head1 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 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 L =head1 ATTRIBUTES =head2 B ExclusiveEndTime => Str The exclusive end date and time for the range of journal contents to export. The C must be in C date and time format and in Universal Coordinated Time (UTC). For example: C<2019-06-13T21:36:34Z>. The C must be less than or equal to the current UTC date and time. =head2 B InclusiveStartTime => Str The inclusive start date and time for the range of journal contents to export. The C must be in C date and time format and in Universal Coordinated Time (UTC). For example: C<2019-06-13T21:36:34Z>. The C must be before C. If you provide an C that is before the ledger's C, Amazon QLDB defaults it to the ledger's C. =head2 B Name => Str The name of the ledger. =head2 B RoleArn => Str The Amazon Resource Name (ARN) of the IAM role that grants QLDB permissions for a journal export job to do the following: =over =item * Write objects into your Amazon Simple Storage Service (Amazon S3) bucket. =item * (Optional) Use your customer master key (CMK) in AWS Key Management Service (AWS KMS) for server-side encryption of your exported data. =back =head2 B S3ExportConfiguration => L The configuration settings of the Amazon S3 bucket destination for your export request. =head1 SEE ALSO This class forms part of L, documenting arguments for method ExportJournalToS3 in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut