![]() |
![]()
| ![]() |
![]()
NAMEPaws::QLDB::ExportJournalToS3 - Arguments for method ExportJournalToS3 on Paws::QLDB DESCRIPTIONThis 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. SYNOPSISmy $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> ATTRIBUTESREQUIRED ExclusiveEndTime => StrThe 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 => StrThe 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 => StrThe name of the ledger. REQUIRED RoleArn => StrThe Amazon Resource Name (ARN) of the IAM role that grants QLDB permissions for a journal export job to do the following:
REQUIRED S3ExportConfiguration => Paws::QLDB::S3ExportConfigurationThe configuration settings of the Amazon S3 bucket destination for your export request. SEE ALSOThis class forms part of Paws, documenting arguments for method ExportJournalToS3 in Paws::QLDB BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|