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::PromoteReadReplica; use Moose; has BackupRetentionPeriod => (is => 'ro', isa => 'Int'); has DBInstanceIdentifier => (is => 'ro', isa => 'Str', required => 1); has PreferredBackupWindow => (is => 'ro', isa => 'Str'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'PromoteReadReplica'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::RDS::PromoteReadReplicaResult'); class_has _result_key => (isa => 'Str', is => 'ro', default => 'PromoteReadReplicaResult'); 1; ### main pod documentation begin ### =head1 NAME Paws::RDS::PromoteReadReplica - Arguments for method PromoteReadReplica on L =head1 DESCRIPTION This class represents the parameters used for calling the method PromoteReadReplica on the L service. Use the attributes of this class as arguments to method PromoteReadReplica. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to PromoteReadReplica. =head1 SYNOPSIS my $rds = Paws->service('RDS'); # To promote a read replica # This example promotes the specified read replica and sets its backup retention # period and preferred backup window. my $PromoteReadReplicaResult = $rds->PromoteReadReplica( 'BackupRetentionPeriod' => 1, 'DBInstanceIdentifier' => 'mydbreadreplica', 'PreferredBackupWindow' => '03:30-04:00' ); # Results: my $DBInstance = $PromoteReadReplicaResult->DBInstance; # 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 BackupRetentionPeriod => Int The number of days for which automated backups are retained. Setting this parameter to a positive number enables backups. Setting this parameter to 0 disables automated backups. Default: 1 Constraints: =over =item * Must be a value from 0 to 35. =item * Can't be set to 0 if the DB instance is a source to read replicas. =back =head2 B DBInstanceIdentifier => Str The DB instance identifier. This value is stored as a lowercase string. Constraints: =over =item * Must match the identifier of an existing read replica DB instance. =back Example: C =head2 PreferredBackupWindow => Str The daily time range during which automated backups are created if automated backups are enabled, using the C parameter. The default is a 30-minute window selected at random from an 8-hour block of time for each Amazon Web Services Region. To see the time blocks available, see Adjusting the Preferred Maintenance Window (https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html) in the I Constraints: =over =item * Must be in the format C. =item * Must be in Universal Coordinated Time (UTC). =item * Must not conflict with the preferred maintenance window. =item * Must be at least 30 minutes. =back =head1 SEE ALSO This class forms part of L, documenting arguments for method PromoteReadReplica in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut