/AWS1/CL_RDS=>STRTDBINSTAUTOMATEDBACKUPS00()
¶
About StartDBInstanceAutomatedBackupsReplication¶
Enables replication of automated backups to a different Amazon Web Services Region.
This command doesn't apply to RDS Custom.
For more information, see Replicating Automated Backups to Another Amazon Web Services Region in the Amazon RDS User Guide.
Method Signature¶
IMPORTING¶
Required arguments:¶
iv_sourcedbinstancearn
TYPE /AWS1/RDSSTRING
/AWS1/RDSSTRING
¶
The Amazon Resource Name (ARN) of the source DB instance for the replicated automated backups, for example,
arn:aws:rds:us-west-2:123456789012:db:mydatabase
.
Optional arguments:¶
iv_backupretentionperiod
TYPE /AWS1/RDSINTEGEROPTIONAL
/AWS1/RDSINTEGEROPTIONAL
¶
The retention period for the replicated automated backups.
iv_kmskeyid
TYPE /AWS1/RDSSTRING
/AWS1/RDSSTRING
¶
The Amazon Web Services KMS key identifier for encryption of the replicated automated backups. The KMS key ID is the Amazon Resource Name (ARN) for the KMS encryption key in the destination Amazon Web Services Region, for example,
arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE
.
iv_presignedurl
TYPE /AWS1/RDSSTRING
/AWS1/RDSSTRING
¶
In an Amazon Web Services GovCloud (US) Region, an URL that contains a Signature Version 4 signed request for the
StartDBInstanceAutomatedBackupsReplication
operation to call in the Amazon Web Services Region of the source DB instance. The presigned URL must be a valid request for theStartDBInstanceAutomatedBackupsReplication
API operation that can run in the Amazon Web Services Region that contains the source DB instance.This setting applies only to Amazon Web Services GovCloud (US) Regions. It's ignored in other Amazon Web Services Regions.
To learn how to generate a Signature Version 4 signed request, see Authenticating Requests: Using Query Parameters (Amazon Web Services Signature Version 4) and Signature Version 4 Signing Process.
If you are using an Amazon Web Services SDK tool or the CLI, you can specify
SourceRegion
(or--source-region
for the CLI) instead of specifyingPreSignedUrl
manually. SpecifyingSourceRegion
autogenerates a presigned URL that is a valid request for the operation that can run in the source Amazon Web Services Region.
RETURNING¶
oo_output
TYPE REF TO /aws1/cl_rdsstrtdbinstautoma01
/AWS1/CL_RDSSTRTDBINSTAUTOMA01
¶
Domain /AWS1/RT_ACCOUNT_ID Primitive Type NUMC
Examples¶
Syntax Example¶
This is an example of the syntax for calling the method. It includes every possible argument and initializes every possible value. The data provided is not necessarily semantically accurate (for example the value "string" may be provided for something that is intended to be an instance ID, or in some cases two arguments may be mutually exclusive). The syntax shows the ABAP syntax for creating the various data structures.
DATA(lo_result) = lo_client->/aws1/if_rds~strtdbinstautomatedbackups00(
iv_backupretentionperiod = 123
iv_kmskeyid = |string|
iv_presignedurl = |string|
iv_sourcedbinstancearn = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lo_dbinstanceautomatedback = lo_result->get_dbinstautomatedbackup( ).
IF lo_dbinstanceautomatedback IS NOT INITIAL.
lv_string = lo_dbinstanceautomatedback->get_dbinstancearn( ).
lv_string = lo_dbinstanceautomatedback->get_dbiresourceid( ).
lv_string = lo_dbinstanceautomatedback->get_region( ).
lv_string = lo_dbinstanceautomatedback->get_dbinstanceidentifier( ).
lo_restorewindow = lo_dbinstanceautomatedback->get_restorewindow( ).
IF lo_restorewindow IS NOT INITIAL.
lv_tstamp = lo_restorewindow->get_earliesttime( ).
lv_tstamp = lo_restorewindow->get_latesttime( ).
ENDIF.
lv_integer = lo_dbinstanceautomatedback->get_allocatedstorage( ).
lv_string = lo_dbinstanceautomatedback->get_status( ).
lv_integer = lo_dbinstanceautomatedback->get_port( ).
lv_string = lo_dbinstanceautomatedback->get_availabilityzone( ).
lv_string = lo_dbinstanceautomatedback->get_vpcid( ).
lv_tstamp = lo_dbinstanceautomatedback->get_instancecreatetime( ).
lv_string = lo_dbinstanceautomatedback->get_masterusername( ).
lv_string = lo_dbinstanceautomatedback->get_engine( ).
lv_string = lo_dbinstanceautomatedback->get_engineversion( ).
lv_string = lo_dbinstanceautomatedback->get_licensemodel( ).
lv_integeroptional = lo_dbinstanceautomatedback->get_iops( ).
lv_string = lo_dbinstanceautomatedback->get_optiongroupname( ).
lv_string = lo_dbinstanceautomatedback->get_tdecredentialarn( ).
lv_boolean = lo_dbinstanceautomatedback->get_encrypted( ).
lv_string = lo_dbinstanceautomatedback->get_storagetype( ).
lv_string = lo_dbinstanceautomatedback->get_kmskeyid( ).
lv_string = lo_dbinstanceautomatedback->get_timezone( ).
lv_boolean = lo_dbinstanceautomatedback->get_iamdatabaseauthntctnenbd( ).
lv_integeroptional = lo_dbinstanceautomatedback->get_backupretentionperiod( ).
lv_string = lo_dbinstanceautomatedback->get_dbinstautomatedbackups00( ).
LOOP AT lo_dbinstanceautomatedback->get_dbinstautomatedbackups01( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lv_string = lo_row_1->get_dbinstautomatedbackups00( ).
ENDIF.
ENDLOOP.
lv_string = lo_dbinstanceautomatedback->get_backuptarget( ).
lv_integeroptional = lo_dbinstanceautomatedback->get_storagethroughput( ).
lv_string = lo_dbinstanceautomatedback->get_awsbackuprecpointarn( ).
lv_booleanoptional = lo_dbinstanceautomatedback->get_dedicatedlogvolume( ).
lv_booleanoptional = lo_dbinstanceautomatedback->get_multitenant( ).
ENDIF.
ENDIF.
To enable cross-Region automated backups¶
The following example replicates automated backups from a DB instance in the US East (N. Virginia) Region. The backup retention period is 14 days.
DATA(lo_result) = lo_client->/aws1/if_rds~strtdbinstautomatedbackups00(
iv_backupretentionperiod = 14
iv_sourcedbinstancearn = |arn:aws:rds:us-east-1:123456789012:db:new-orcl-db|
).