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::RDS::StartExportTask; use Moose; has ExportOnly => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); has ExportTaskIdentifier => (is => 'ro', isa => 'Str', required => 1); has IamRoleArn => (is => 'ro', isa => 'Str', required => 1); has KmsKeyId => (is => 'ro', isa => 'Str', required => 1); has S3BucketName => (is => 'ro', isa => 'Str', required => 1); has S3Prefix => (is => 'ro', isa => 'Str'); has SourceArn => (is => 'ro', isa => 'Str', required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'StartExportTask'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::RDS::ExportTask'); class_has _result_key => (isa => 'Str', is => 'ro', default => 'StartExportTaskResult'); 1; ### main pod documentation begin ### =head1 NAME Paws::RDS::StartExportTask - Arguments for method StartExportTask on L =head1 DESCRIPTION This class represents the parameters used for calling the method StartExportTask on the L service. Use the attributes of this class as arguments to method StartExportTask. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to StartExportTask. =head1 SYNOPSIS my $rds = Paws->service('RDS'); my $ExportTask = $rds->StartExportTask( ExportTaskIdentifier => 'MyString', IamRoleArn => 'MyString', KmsKeyId => 'MyString', S3BucketName => 'MyString', SourceArn => 'MyString', ExportOnly => [ 'MyString', ... ], # OPTIONAL S3Prefix => 'MyString', # OPTIONAL ); # Results: my $ExportOnly = $ExportTask->ExportOnly; my $ExportTaskIdentifier = $ExportTask->ExportTaskIdentifier; my $FailureCause = $ExportTask->FailureCause; my $IamRoleArn = $ExportTask->IamRoleArn; my $KmsKeyId = $ExportTask->KmsKeyId; my $PercentProgress = $ExportTask->PercentProgress; my $S3Bucket = $ExportTask->S3Bucket; my $S3Prefix = $ExportTask->S3Prefix; my $SnapshotTime = $ExportTask->SnapshotTime; my $SourceArn = $ExportTask->SourceArn; my $Status = $ExportTask->Status; my $TaskEndTime = $ExportTask->TaskEndTime; my $TaskStartTime = $ExportTask->TaskStartTime; my $TotalExtractedDataInGB = $ExportTask->TotalExtractedDataInGB; my $WarningMessage = $ExportTask->WarningMessage; # 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 ExportOnly => ArrayRef[Str|Undef] The data to be exported from the snapshot. If this parameter is not provided, all the snapshot data is exported. Valid values are the following: =over =item * C - Export all the data from a specified database. =item * C I - Export a table of the snapshot. This format is valid only for RDS for MySQL, RDS for MariaDB, and Aurora MySQL. =item * C I - Export a database schema of the snapshot. This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL. =item * C I - Export a table of the database schema. This format is valid only for RDS for PostgreSQL and Aurora PostgreSQL. =back =head2 B ExportTaskIdentifier => Str A unique identifier for the snapshot export task. This ID isn't an identifier for the Amazon S3 bucket where the snapshot is to be exported to. =head2 B IamRoleArn => Str The name of the IAM role to use for writing to the Amazon S3 bucket when exporting a snapshot. =head2 B KmsKeyId => Str The ID of the Amazon Web Services KMS customer master key (CMK) to use to encrypt the snapshot exported to Amazon S3. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the Amazon Web Services KMS customer master key (CMK). The caller of this operation must be authorized to execute the following operations. These can be set in the Amazon Web Services KMS key policy: =over =item * GrantOperation.Encrypt =item * GrantOperation.Decrypt =item * GrantOperation.GenerateDataKey =item * GrantOperation.GenerateDataKeyWithoutPlaintext =item * GrantOperation.ReEncryptFrom =item * GrantOperation.ReEncryptTo =item * GrantOperation.CreateGrant =item * GrantOperation.DescribeKey =item * GrantOperation.RetireGrant =back =head2 B S3BucketName => Str The name of the Amazon S3 bucket to export the snapshot to. =head2 S3Prefix => Str The Amazon S3 bucket prefix to use as the file name and path of the exported snapshot. =head2 B SourceArn => Str The Amazon Resource Name (ARN) of the snapshot to export to Amazon S3. =head1 SEE ALSO This class forms part of L, documenting arguments for method StartExportTask in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut