aws-sdk-backup 1.47.0 → 1.49.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-backup/client.rb +18 -3
- data/lib/aws-sdk-backup/client_api.rb +8 -0
- data/lib/aws-sdk-backup/endpoint_provider.rb +35 -95
- data/lib/aws-sdk-backup/types.rb +63 -1096
- data/lib/aws-sdk-backup.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-backup/types.rb
CHANGED
@@ -12,16 +12,6 @@ module Aws::Backup
|
|
12
12
|
|
13
13
|
# A list of backup options for each resource type.
|
14
14
|
#
|
15
|
-
# @note When making an API call, you may pass AdvancedBackupSetting
|
16
|
-
# data as a hash:
|
17
|
-
#
|
18
|
-
# {
|
19
|
-
# resource_type: "ResourceType",
|
20
|
-
# backup_options: {
|
21
|
-
# "BackupOptionKey" => "BackupOptionValue",
|
22
|
-
# },
|
23
|
-
# }
|
24
|
-
#
|
25
15
|
# @!attribute [rw] resource_type
|
26
16
|
# Specifies an object containing resource type and backup options. The
|
27
17
|
# only supported resource type is Amazon EC2 instances with Windows
|
@@ -238,6 +228,11 @@ module Aws::Backup
|
|
238
228
|
# backup job.
|
239
229
|
# @return [Boolean]
|
240
230
|
#
|
231
|
+
# @!attribute [rw] resource_name
|
232
|
+
# This is the non-unique name of the resource that belongs to the
|
233
|
+
# specified backup.
|
234
|
+
# @return [String]
|
235
|
+
#
|
241
236
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/BackupJob AWS API Documentation
|
242
237
|
#
|
243
238
|
class BackupJob < Struct.new(
|
@@ -262,7 +257,8 @@ module Aws::Backup
|
|
262
257
|
:backup_options,
|
263
258
|
:backup_type,
|
264
259
|
:parent_job_id,
|
265
|
-
:is_parent
|
260
|
+
:is_parent,
|
261
|
+
:resource_name)
|
266
262
|
SENSITIVE = []
|
267
263
|
include Aws::Structure
|
268
264
|
end
|
@@ -300,47 +296,6 @@ module Aws::Backup
|
|
300
296
|
# `BackupRule` objects, each of which specifies a backup rule. Each rule
|
301
297
|
# in a backup plan is a separate scheduled task.
|
302
298
|
#
|
303
|
-
# @note When making an API call, you may pass BackupPlanInput
|
304
|
-
# data as a hash:
|
305
|
-
#
|
306
|
-
# {
|
307
|
-
# backup_plan_name: "BackupPlanName", # required
|
308
|
-
# rules: [ # required
|
309
|
-
# {
|
310
|
-
# rule_name: "BackupRuleName", # required
|
311
|
-
# target_backup_vault_name: "BackupVaultName", # required
|
312
|
-
# schedule_expression: "CronExpression",
|
313
|
-
# start_window_minutes: 1,
|
314
|
-
# completion_window_minutes: 1,
|
315
|
-
# lifecycle: {
|
316
|
-
# move_to_cold_storage_after_days: 1,
|
317
|
-
# delete_after_days: 1,
|
318
|
-
# },
|
319
|
-
# recovery_point_tags: {
|
320
|
-
# "TagKey" => "TagValue",
|
321
|
-
# },
|
322
|
-
# copy_actions: [
|
323
|
-
# {
|
324
|
-
# lifecycle: {
|
325
|
-
# move_to_cold_storage_after_days: 1,
|
326
|
-
# delete_after_days: 1,
|
327
|
-
# },
|
328
|
-
# destination_backup_vault_arn: "ARN", # required
|
329
|
-
# },
|
330
|
-
# ],
|
331
|
-
# enable_continuous_backup: false,
|
332
|
-
# },
|
333
|
-
# ],
|
334
|
-
# advanced_backup_settings: [
|
335
|
-
# {
|
336
|
-
# resource_type: "ResourceType",
|
337
|
-
# backup_options: {
|
338
|
-
# "BackupOptionKey" => "BackupOptionValue",
|
339
|
-
# },
|
340
|
-
# },
|
341
|
-
# ],
|
342
|
-
# }
|
343
|
-
#
|
344
299
|
# @!attribute [rw] backup_plan_name
|
345
300
|
# The display name of a backup plan. Must contain 1 to 50 alphanumeric
|
346
301
|
# or '-\_.' characters.
|
@@ -562,34 +517,6 @@ module Aws::Backup
|
|
562
517
|
|
563
518
|
# Specifies a scheduled task used to back up a selection of resources.
|
564
519
|
#
|
565
|
-
# @note When making an API call, you may pass BackupRuleInput
|
566
|
-
# data as a hash:
|
567
|
-
#
|
568
|
-
# {
|
569
|
-
# rule_name: "BackupRuleName", # required
|
570
|
-
# target_backup_vault_name: "BackupVaultName", # required
|
571
|
-
# schedule_expression: "CronExpression",
|
572
|
-
# start_window_minutes: 1,
|
573
|
-
# completion_window_minutes: 1,
|
574
|
-
# lifecycle: {
|
575
|
-
# move_to_cold_storage_after_days: 1,
|
576
|
-
# delete_after_days: 1,
|
577
|
-
# },
|
578
|
-
# recovery_point_tags: {
|
579
|
-
# "TagKey" => "TagValue",
|
580
|
-
# },
|
581
|
-
# copy_actions: [
|
582
|
-
# {
|
583
|
-
# lifecycle: {
|
584
|
-
# move_to_cold_storage_after_days: 1,
|
585
|
-
# delete_after_days: 1,
|
586
|
-
# },
|
587
|
-
# destination_backup_vault_arn: "ARN", # required
|
588
|
-
# },
|
589
|
-
# ],
|
590
|
-
# enable_continuous_backup: false,
|
591
|
-
# }
|
592
|
-
#
|
593
520
|
# @!attribute [rw] rule_name
|
594
521
|
# A display name for a backup rule. Must contain 1 to 50 alphanumeric
|
595
522
|
# or '-\_.' characters.
|
@@ -681,49 +608,6 @@ module Aws::Backup
|
|
681
608
|
# Backup will attempt to select all supported and opted-in storage
|
682
609
|
# resources, which could have unintended cost implications.
|
683
610
|
#
|
684
|
-
# @note When making an API call, you may pass BackupSelection
|
685
|
-
# data as a hash:
|
686
|
-
#
|
687
|
-
# {
|
688
|
-
# selection_name: "BackupSelectionName", # required
|
689
|
-
# iam_role_arn: "IAMRoleArn", # required
|
690
|
-
# resources: ["ARN"],
|
691
|
-
# list_of_tags: [
|
692
|
-
# {
|
693
|
-
# condition_type: "STRINGEQUALS", # required, accepts STRINGEQUALS
|
694
|
-
# condition_key: "ConditionKey", # required
|
695
|
-
# condition_value: "ConditionValue", # required
|
696
|
-
# },
|
697
|
-
# ],
|
698
|
-
# not_resources: ["ARN"],
|
699
|
-
# conditions: {
|
700
|
-
# string_equals: [
|
701
|
-
# {
|
702
|
-
# condition_key: "ConditionKey",
|
703
|
-
# condition_value: "ConditionValue",
|
704
|
-
# },
|
705
|
-
# ],
|
706
|
-
# string_not_equals: [
|
707
|
-
# {
|
708
|
-
# condition_key: "ConditionKey",
|
709
|
-
# condition_value: "ConditionValue",
|
710
|
-
# },
|
711
|
-
# ],
|
712
|
-
# string_like: [
|
713
|
-
# {
|
714
|
-
# condition_key: "ConditionKey",
|
715
|
-
# condition_value: "ConditionValue",
|
716
|
-
# },
|
717
|
-
# ],
|
718
|
-
# string_not_like: [
|
719
|
-
# {
|
720
|
-
# condition_key: "ConditionKey",
|
721
|
-
# condition_value: "ConditionValue",
|
722
|
-
# },
|
723
|
-
# ],
|
724
|
-
# },
|
725
|
-
# }
|
726
|
-
#
|
727
611
|
# @!attribute [rw] selection_name
|
728
612
|
# The display name of a resource selection document. Must contain 1 to
|
729
613
|
# 50 alphanumeric or '-\_.' characters.
|
@@ -1010,15 +894,6 @@ module Aws::Backup
|
|
1010
894
|
include Aws::Structure
|
1011
895
|
end
|
1012
896
|
|
1013
|
-
# @note When making an API call, you may pass CancelLegalHoldInput
|
1014
|
-
# data as a hash:
|
1015
|
-
#
|
1016
|
-
# {
|
1017
|
-
# legal_hold_id: "string", # required
|
1018
|
-
# cancel_description: "string", # required
|
1019
|
-
# retain_record_in_days: 1,
|
1020
|
-
# }
|
1021
|
-
#
|
1022
897
|
# @!attribute [rw] legal_hold_id
|
1023
898
|
# Legal hold ID required to remove the specified legal hold on a
|
1024
899
|
# recovery point.
|
@@ -1051,15 +926,6 @@ module Aws::Backup
|
|
1051
926
|
# `StringEquals`), a key, and a value. Used to filter resources using
|
1052
927
|
# their tags and assign them to a backup plan. Case sensitive.
|
1053
928
|
#
|
1054
|
-
# @note When making an API call, you may pass Condition
|
1055
|
-
# data as a hash:
|
1056
|
-
#
|
1057
|
-
# {
|
1058
|
-
# condition_type: "STRINGEQUALS", # required, accepts STRINGEQUALS
|
1059
|
-
# condition_key: "ConditionKey", # required
|
1060
|
-
# condition_value: "ConditionValue", # required
|
1061
|
-
# }
|
1062
|
-
#
|
1063
929
|
# @!attribute [rw] condition_type
|
1064
930
|
# An operation applied to a key-value pair used to assign resources to
|
1065
931
|
# your backup plan. Condition only supports `StringEquals`. For more
|
@@ -1095,14 +961,6 @@ module Aws::Backup
|
|
1095
961
|
# Includes information about tags you define to assign tagged resources
|
1096
962
|
# to a backup plan.
|
1097
963
|
#
|
1098
|
-
# @note When making an API call, you may pass ConditionParameter
|
1099
|
-
# data as a hash:
|
1100
|
-
#
|
1101
|
-
# {
|
1102
|
-
# condition_key: "ConditionKey",
|
1103
|
-
# condition_value: "ConditionValue",
|
1104
|
-
# }
|
1105
|
-
#
|
1106
964
|
# @!attribute [rw] condition_key
|
1107
965
|
# The key in a key-value pair. For example, in the tag `Department:
|
1108
966
|
# Accounting`, `Department` is the key.
|
@@ -1125,36 +983,6 @@ module Aws::Backup
|
|
1125
983
|
# Contains information about which resources to include or exclude from
|
1126
984
|
# a backup plan using their tags. Conditions are case sensitive.
|
1127
985
|
#
|
1128
|
-
# @note When making an API call, you may pass Conditions
|
1129
|
-
# data as a hash:
|
1130
|
-
#
|
1131
|
-
# {
|
1132
|
-
# string_equals: [
|
1133
|
-
# {
|
1134
|
-
# condition_key: "ConditionKey",
|
1135
|
-
# condition_value: "ConditionValue",
|
1136
|
-
# },
|
1137
|
-
# ],
|
1138
|
-
# string_not_equals: [
|
1139
|
-
# {
|
1140
|
-
# condition_key: "ConditionKey",
|
1141
|
-
# condition_value: "ConditionValue",
|
1142
|
-
# },
|
1143
|
-
# ],
|
1144
|
-
# string_like: [
|
1145
|
-
# {
|
1146
|
-
# condition_key: "ConditionKey",
|
1147
|
-
# condition_value: "ConditionValue",
|
1148
|
-
# },
|
1149
|
-
# ],
|
1150
|
-
# string_not_like: [
|
1151
|
-
# {
|
1152
|
-
# condition_key: "ConditionKey",
|
1153
|
-
# condition_value: "ConditionValue",
|
1154
|
-
# },
|
1155
|
-
# ],
|
1156
|
-
# }
|
1157
|
-
#
|
1158
986
|
# @!attribute [rw] string_equals
|
1159
987
|
# Filters the values of your tagged resources for only those resources
|
1160
988
|
# that you tagged with the same value. Also called "exact matching."
|
@@ -1222,14 +1050,6 @@ module Aws::Backup
|
|
1222
1050
|
# period is at least `1 year`". The first parameter is `daily`. The
|
1223
1051
|
# second parameter is `1 year`.
|
1224
1052
|
#
|
1225
|
-
# @note When making an API call, you may pass ControlInputParameter
|
1226
|
-
# data as a hash:
|
1227
|
-
#
|
1228
|
-
# {
|
1229
|
-
# parameter_name: "ParameterName",
|
1230
|
-
# parameter_value: "ParameterValue",
|
1231
|
-
# }
|
1232
|
-
#
|
1233
1053
|
# @!attribute [rw] parameter_name
|
1234
1054
|
# The name of a parameter, for example, `BackupPlanFrequency`.
|
1235
1055
|
# @return [String]
|
@@ -1260,17 +1080,6 @@ module Aws::Backup
|
|
1260
1080
|
#
|
1261
1081
|
# </note>
|
1262
1082
|
#
|
1263
|
-
# @note When making an API call, you may pass ControlScope
|
1264
|
-
# data as a hash:
|
1265
|
-
#
|
1266
|
-
# {
|
1267
|
-
# compliance_resource_ids: ["string"],
|
1268
|
-
# compliance_resource_types: ["ARN"],
|
1269
|
-
# tags: {
|
1270
|
-
# "string" => "string",
|
1271
|
-
# },
|
1272
|
-
# }
|
1273
|
-
#
|
1274
1083
|
# @!attribute [rw] compliance_resource_ids
|
1275
1084
|
# The ID of the only Amazon Web Services resource that you want your
|
1276
1085
|
# control scope to contain.
|
@@ -1301,17 +1110,6 @@ module Aws::Backup
|
|
1301
1110
|
|
1302
1111
|
# The details of the copy operation.
|
1303
1112
|
#
|
1304
|
-
# @note When making an API call, you may pass CopyAction
|
1305
|
-
# data as a hash:
|
1306
|
-
#
|
1307
|
-
# {
|
1308
|
-
# lifecycle: {
|
1309
|
-
# move_to_cold_storage_after_days: 1,
|
1310
|
-
# delete_after_days: 1,
|
1311
|
-
# },
|
1312
|
-
# destination_backup_vault_arn: "ARN", # required
|
1313
|
-
# }
|
1314
|
-
#
|
1315
1113
|
# @!attribute [rw] lifecycle
|
1316
1114
|
# Contains an array of `Transition` objects specifying how long in
|
1317
1115
|
# days before a recovery point transitions to cold storage or is
|
@@ -1461,6 +1259,11 @@ module Aws::Backup
|
|
1461
1259
|
# jobs.
|
1462
1260
|
# @return [Hash<String,Integer>]
|
1463
1261
|
#
|
1262
|
+
# @!attribute [rw] resource_name
|
1263
|
+
# This is the non-unique name of the resource that belongs to the
|
1264
|
+
# specified backup.
|
1265
|
+
# @return [String]
|
1266
|
+
#
|
1464
1267
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/CopyJob AWS API Documentation
|
1465
1268
|
#
|
1466
1269
|
class CopyJob < Struct.new(
|
@@ -1483,58 +1286,12 @@ module Aws::Backup
|
|
1483
1286
|
:is_parent,
|
1484
1287
|
:composite_member_identifier,
|
1485
1288
|
:number_of_child_jobs,
|
1486
|
-
:child_jobs_in_state
|
1487
|
-
|
1488
|
-
|
1489
|
-
|
1490
|
-
|
1491
|
-
|
1492
|
-
# data as a hash:
|
1493
|
-
#
|
1494
|
-
# {
|
1495
|
-
# backup_plan: { # required
|
1496
|
-
# backup_plan_name: "BackupPlanName", # required
|
1497
|
-
# rules: [ # required
|
1498
|
-
# {
|
1499
|
-
# rule_name: "BackupRuleName", # required
|
1500
|
-
# target_backup_vault_name: "BackupVaultName", # required
|
1501
|
-
# schedule_expression: "CronExpression",
|
1502
|
-
# start_window_minutes: 1,
|
1503
|
-
# completion_window_minutes: 1,
|
1504
|
-
# lifecycle: {
|
1505
|
-
# move_to_cold_storage_after_days: 1,
|
1506
|
-
# delete_after_days: 1,
|
1507
|
-
# },
|
1508
|
-
# recovery_point_tags: {
|
1509
|
-
# "TagKey" => "TagValue",
|
1510
|
-
# },
|
1511
|
-
# copy_actions: [
|
1512
|
-
# {
|
1513
|
-
# lifecycle: {
|
1514
|
-
# move_to_cold_storage_after_days: 1,
|
1515
|
-
# delete_after_days: 1,
|
1516
|
-
# },
|
1517
|
-
# destination_backup_vault_arn: "ARN", # required
|
1518
|
-
# },
|
1519
|
-
# ],
|
1520
|
-
# enable_continuous_backup: false,
|
1521
|
-
# },
|
1522
|
-
# ],
|
1523
|
-
# advanced_backup_settings: [
|
1524
|
-
# {
|
1525
|
-
# resource_type: "ResourceType",
|
1526
|
-
# backup_options: {
|
1527
|
-
# "BackupOptionKey" => "BackupOptionValue",
|
1528
|
-
# },
|
1529
|
-
# },
|
1530
|
-
# ],
|
1531
|
-
# },
|
1532
|
-
# backup_plan_tags: {
|
1533
|
-
# "TagKey" => "TagValue",
|
1534
|
-
# },
|
1535
|
-
# creator_request_id: "string",
|
1536
|
-
# }
|
1537
|
-
#
|
1289
|
+
:child_jobs_in_state,
|
1290
|
+
:resource_name)
|
1291
|
+
SENSITIVE = []
|
1292
|
+
include Aws::Structure
|
1293
|
+
end
|
1294
|
+
|
1538
1295
|
# @!attribute [rw] backup_plan
|
1539
1296
|
# Specifies the body of a backup plan. Includes a `BackupPlanName` and
|
1540
1297
|
# one or more sets of `Rules`.
|
@@ -1606,53 +1363,6 @@ module Aws::Backup
|
|
1606
1363
|
include Aws::Structure
|
1607
1364
|
end
|
1608
1365
|
|
1609
|
-
# @note When making an API call, you may pass CreateBackupSelectionInput
|
1610
|
-
# data as a hash:
|
1611
|
-
#
|
1612
|
-
# {
|
1613
|
-
# backup_plan_id: "string", # required
|
1614
|
-
# backup_selection: { # required
|
1615
|
-
# selection_name: "BackupSelectionName", # required
|
1616
|
-
# iam_role_arn: "IAMRoleArn", # required
|
1617
|
-
# resources: ["ARN"],
|
1618
|
-
# list_of_tags: [
|
1619
|
-
# {
|
1620
|
-
# condition_type: "STRINGEQUALS", # required, accepts STRINGEQUALS
|
1621
|
-
# condition_key: "ConditionKey", # required
|
1622
|
-
# condition_value: "ConditionValue", # required
|
1623
|
-
# },
|
1624
|
-
# ],
|
1625
|
-
# not_resources: ["ARN"],
|
1626
|
-
# conditions: {
|
1627
|
-
# string_equals: [
|
1628
|
-
# {
|
1629
|
-
# condition_key: "ConditionKey",
|
1630
|
-
# condition_value: "ConditionValue",
|
1631
|
-
# },
|
1632
|
-
# ],
|
1633
|
-
# string_not_equals: [
|
1634
|
-
# {
|
1635
|
-
# condition_key: "ConditionKey",
|
1636
|
-
# condition_value: "ConditionValue",
|
1637
|
-
# },
|
1638
|
-
# ],
|
1639
|
-
# string_like: [
|
1640
|
-
# {
|
1641
|
-
# condition_key: "ConditionKey",
|
1642
|
-
# condition_value: "ConditionValue",
|
1643
|
-
# },
|
1644
|
-
# ],
|
1645
|
-
# string_not_like: [
|
1646
|
-
# {
|
1647
|
-
# condition_key: "ConditionKey",
|
1648
|
-
# condition_value: "ConditionValue",
|
1649
|
-
# },
|
1650
|
-
# ],
|
1651
|
-
# },
|
1652
|
-
# },
|
1653
|
-
# creator_request_id: "string",
|
1654
|
-
# }
|
1655
|
-
#
|
1656
1366
|
# @!attribute [rw] backup_plan_id
|
1657
1367
|
# Uniquely identifies the backup plan to be associated with the
|
1658
1368
|
# selection of resources.
|
@@ -1708,18 +1418,6 @@ module Aws::Backup
|
|
1708
1418
|
include Aws::Structure
|
1709
1419
|
end
|
1710
1420
|
|
1711
|
-
# @note When making an API call, you may pass CreateBackupVaultInput
|
1712
|
-
# data as a hash:
|
1713
|
-
#
|
1714
|
-
# {
|
1715
|
-
# backup_vault_name: "BackupVaultName", # required
|
1716
|
-
# backup_vault_tags: {
|
1717
|
-
# "TagKey" => "TagValue",
|
1718
|
-
# },
|
1719
|
-
# encryption_key_arn: "ARN",
|
1720
|
-
# creator_request_id: "string",
|
1721
|
-
# }
|
1722
|
-
#
|
1723
1421
|
# @!attribute [rw] backup_vault_name
|
1724
1422
|
# The name of a logical container where backups are stored. Backup
|
1725
1423
|
# vaults are identified by names that are unique to the account used
|
@@ -1788,36 +1486,6 @@ module Aws::Backup
|
|
1788
1486
|
include Aws::Structure
|
1789
1487
|
end
|
1790
1488
|
|
1791
|
-
# @note When making an API call, you may pass CreateFrameworkInput
|
1792
|
-
# data as a hash:
|
1793
|
-
#
|
1794
|
-
# {
|
1795
|
-
# framework_name: "FrameworkName", # required
|
1796
|
-
# framework_description: "FrameworkDescription",
|
1797
|
-
# framework_controls: [ # required
|
1798
|
-
# {
|
1799
|
-
# control_name: "ControlName", # required
|
1800
|
-
# control_input_parameters: [
|
1801
|
-
# {
|
1802
|
-
# parameter_name: "ParameterName",
|
1803
|
-
# parameter_value: "ParameterValue",
|
1804
|
-
# },
|
1805
|
-
# ],
|
1806
|
-
# control_scope: {
|
1807
|
-
# compliance_resource_ids: ["string"],
|
1808
|
-
# compliance_resource_types: ["ARN"],
|
1809
|
-
# tags: {
|
1810
|
-
# "string" => "string",
|
1811
|
-
# },
|
1812
|
-
# },
|
1813
|
-
# },
|
1814
|
-
# ],
|
1815
|
-
# idempotency_token: "string",
|
1816
|
-
# framework_tags: {
|
1817
|
-
# "string" => "string",
|
1818
|
-
# },
|
1819
|
-
# }
|
1820
|
-
#
|
1821
1489
|
# @!attribute [rw] framework_name
|
1822
1490
|
# The unique name of the framework. The name must be between 1 and 256
|
1823
1491
|
# characters, starting with a letter, and consisting of letters (a-z,
|
@@ -1881,26 +1549,6 @@ module Aws::Backup
|
|
1881
1549
|
include Aws::Structure
|
1882
1550
|
end
|
1883
1551
|
|
1884
|
-
# @note When making an API call, you may pass CreateLegalHoldInput
|
1885
|
-
# data as a hash:
|
1886
|
-
#
|
1887
|
-
# {
|
1888
|
-
# title: "string", # required
|
1889
|
-
# description: "string", # required
|
1890
|
-
# idempotency_token: "string",
|
1891
|
-
# recovery_point_selection: {
|
1892
|
-
# vault_names: ["string"],
|
1893
|
-
# resource_identifiers: ["string"],
|
1894
|
-
# date_range: {
|
1895
|
-
# from_date: Time.now, # required
|
1896
|
-
# to_date: Time.now, # required
|
1897
|
-
# },
|
1898
|
-
# },
|
1899
|
-
# tags: {
|
1900
|
-
# "TagKey" => "TagValue",
|
1901
|
-
# },
|
1902
|
-
# }
|
1903
|
-
#
|
1904
1552
|
# @!attribute [rw] title
|
1905
1553
|
# This is the string title of the legal hold.
|
1906
1554
|
# @return [String]
|
@@ -1986,31 +1634,6 @@ module Aws::Backup
|
|
1986
1634
|
include Aws::Structure
|
1987
1635
|
end
|
1988
1636
|
|
1989
|
-
# @note When making an API call, you may pass CreateReportPlanInput
|
1990
|
-
# data as a hash:
|
1991
|
-
#
|
1992
|
-
# {
|
1993
|
-
# report_plan_name: "ReportPlanName", # required
|
1994
|
-
# report_plan_description: "ReportPlanDescription",
|
1995
|
-
# report_delivery_channel: { # required
|
1996
|
-
# s3_bucket_name: "string", # required
|
1997
|
-
# s3_key_prefix: "string",
|
1998
|
-
# formats: ["string"],
|
1999
|
-
# },
|
2000
|
-
# report_setting: { # required
|
2001
|
-
# report_template: "string", # required
|
2002
|
-
# framework_arns: ["string"],
|
2003
|
-
# number_of_frameworks: 1,
|
2004
|
-
# accounts: ["string"],
|
2005
|
-
# organization_units: ["string"],
|
2006
|
-
# regions: ["string"],
|
2007
|
-
# },
|
2008
|
-
# report_plan_tags: {
|
2009
|
-
# "string" => "string",
|
2010
|
-
# },
|
2011
|
-
# idempotency_token: "string",
|
2012
|
-
# }
|
2013
|
-
#
|
2014
1637
|
# @!attribute [rw] report_plan_name
|
2015
1638
|
# The unique name of the report plan. The name must be between 1 and
|
2016
1639
|
# 256 characters, starting with a letter, and consisting of letters
|
@@ -2103,14 +1726,6 @@ module Aws::Backup
|
|
2103
1726
|
# optional). For example, the value 1516925490.087 represents Friday,
|
2104
1727
|
# January 26, 2018 12:11:30.087 AM.
|
2105
1728
|
#
|
2106
|
-
# @note When making an API call, you may pass DateRange
|
2107
|
-
# data as a hash:
|
2108
|
-
#
|
2109
|
-
# {
|
2110
|
-
# from_date: Time.now, # required
|
2111
|
-
# to_date: Time.now, # required
|
2112
|
-
# }
|
2113
|
-
#
|
2114
1729
|
# @!attribute [rw] from_date
|
2115
1730
|
# This value is the beginning date, inclusive.
|
2116
1731
|
#
|
@@ -2136,13 +1751,6 @@ module Aws::Backup
|
|
2136
1751
|
include Aws::Structure
|
2137
1752
|
end
|
2138
1753
|
|
2139
|
-
# @note When making an API call, you may pass DeleteBackupPlanInput
|
2140
|
-
# data as a hash:
|
2141
|
-
#
|
2142
|
-
# {
|
2143
|
-
# backup_plan_id: "string", # required
|
2144
|
-
# }
|
2145
|
-
#
|
2146
1754
|
# @!attribute [rw] backup_plan_id
|
2147
1755
|
# Uniquely identifies a backup plan.
|
2148
1756
|
# @return [String]
|
@@ -2188,14 +1796,6 @@ module Aws::Backup
|
|
2188
1796
|
include Aws::Structure
|
2189
1797
|
end
|
2190
1798
|
|
2191
|
-
# @note When making an API call, you may pass DeleteBackupSelectionInput
|
2192
|
-
# data as a hash:
|
2193
|
-
#
|
2194
|
-
# {
|
2195
|
-
# backup_plan_id: "string", # required
|
2196
|
-
# selection_id: "string", # required
|
2197
|
-
# }
|
2198
|
-
#
|
2199
1799
|
# @!attribute [rw] backup_plan_id
|
2200
1800
|
# Uniquely identifies a backup plan.
|
2201
1801
|
# @return [String]
|
@@ -2214,13 +1814,6 @@ module Aws::Backup
|
|
2214
1814
|
include Aws::Structure
|
2215
1815
|
end
|
2216
1816
|
|
2217
|
-
# @note When making an API call, you may pass DeleteBackupVaultAccessPolicyInput
|
2218
|
-
# data as a hash:
|
2219
|
-
#
|
2220
|
-
# {
|
2221
|
-
# backup_vault_name: "BackupVaultName", # required
|
2222
|
-
# }
|
2223
|
-
#
|
2224
1817
|
# @!attribute [rw] backup_vault_name
|
2225
1818
|
# The name of a logical container where backups are stored. Backup
|
2226
1819
|
# vaults are identified by names that are unique to the account used
|
@@ -2236,13 +1829,6 @@ module Aws::Backup
|
|
2236
1829
|
include Aws::Structure
|
2237
1830
|
end
|
2238
1831
|
|
2239
|
-
# @note When making an API call, you may pass DeleteBackupVaultInput
|
2240
|
-
# data as a hash:
|
2241
|
-
#
|
2242
|
-
# {
|
2243
|
-
# backup_vault_name: "string", # required
|
2244
|
-
# }
|
2245
|
-
#
|
2246
1832
|
# @!attribute [rw] backup_vault_name
|
2247
1833
|
# The name of a logical container where backups are stored. Backup
|
2248
1834
|
# vaults are identified by names that are unique to the account used
|
@@ -2258,13 +1844,6 @@ module Aws::Backup
|
|
2258
1844
|
include Aws::Structure
|
2259
1845
|
end
|
2260
1846
|
|
2261
|
-
# @note When making an API call, you may pass DeleteBackupVaultLockConfigurationInput
|
2262
|
-
# data as a hash:
|
2263
|
-
#
|
2264
|
-
# {
|
2265
|
-
# backup_vault_name: "BackupVaultName", # required
|
2266
|
-
# }
|
2267
|
-
#
|
2268
1847
|
# @!attribute [rw] backup_vault_name
|
2269
1848
|
# The name of the backup vault from which to delete Backup Vault Lock.
|
2270
1849
|
# @return [String]
|
@@ -2277,13 +1856,6 @@ module Aws::Backup
|
|
2277
1856
|
include Aws::Structure
|
2278
1857
|
end
|
2279
1858
|
|
2280
|
-
# @note When making an API call, you may pass DeleteBackupVaultNotificationsInput
|
2281
|
-
# data as a hash:
|
2282
|
-
#
|
2283
|
-
# {
|
2284
|
-
# backup_vault_name: "BackupVaultName", # required
|
2285
|
-
# }
|
2286
|
-
#
|
2287
1859
|
# @!attribute [rw] backup_vault_name
|
2288
1860
|
# The name of a logical container where backups are stored. Backup
|
2289
1861
|
# vaults are identified by names that are unique to the account used
|
@@ -2299,13 +1871,6 @@ module Aws::Backup
|
|
2299
1871
|
include Aws::Structure
|
2300
1872
|
end
|
2301
1873
|
|
2302
|
-
# @note When making an API call, you may pass DeleteFrameworkInput
|
2303
|
-
# data as a hash:
|
2304
|
-
#
|
2305
|
-
# {
|
2306
|
-
# framework_name: "FrameworkName", # required
|
2307
|
-
# }
|
2308
|
-
#
|
2309
1874
|
# @!attribute [rw] framework_name
|
2310
1875
|
# The unique name of a framework.
|
2311
1876
|
# @return [String]
|
@@ -2318,14 +1883,6 @@ module Aws::Backup
|
|
2318
1883
|
include Aws::Structure
|
2319
1884
|
end
|
2320
1885
|
|
2321
|
-
# @note When making an API call, you may pass DeleteRecoveryPointInput
|
2322
|
-
# data as a hash:
|
2323
|
-
#
|
2324
|
-
# {
|
2325
|
-
# backup_vault_name: "BackupVaultName", # required
|
2326
|
-
# recovery_point_arn: "ARN", # required
|
2327
|
-
# }
|
2328
|
-
#
|
2329
1886
|
# @!attribute [rw] backup_vault_name
|
2330
1887
|
# The name of a logical container where backups are stored. Backup
|
2331
1888
|
# vaults are identified by names that are unique to the account used
|
@@ -2348,13 +1905,6 @@ module Aws::Backup
|
|
2348
1905
|
include Aws::Structure
|
2349
1906
|
end
|
2350
1907
|
|
2351
|
-
# @note When making an API call, you may pass DeleteReportPlanInput
|
2352
|
-
# data as a hash:
|
2353
|
-
#
|
2354
|
-
# {
|
2355
|
-
# report_plan_name: "ReportPlanName", # required
|
2356
|
-
# }
|
2357
|
-
#
|
2358
1908
|
# @!attribute [rw] report_plan_name
|
2359
1909
|
# The unique name of a report plan.
|
2360
1910
|
# @return [String]
|
@@ -2393,13 +1943,6 @@ module Aws::Backup
|
|
2393
1943
|
include Aws::Structure
|
2394
1944
|
end
|
2395
1945
|
|
2396
|
-
# @note When making an API call, you may pass DescribeBackupJobInput
|
2397
|
-
# data as a hash:
|
2398
|
-
#
|
2399
|
-
# {
|
2400
|
-
# backup_job_id: "string", # required
|
2401
|
-
# }
|
2402
|
-
#
|
2403
1946
|
# @!attribute [rw] backup_job_id
|
2404
1947
|
# Uniquely identifies a request to Backup to back up a resource.
|
2405
1948
|
# @return [String]
|
@@ -2546,6 +2089,11 @@ module Aws::Backup
|
|
2546
2089
|
# jobs.
|
2547
2090
|
# @return [Hash<String,Integer>]
|
2548
2091
|
#
|
2092
|
+
# @!attribute [rw] resource_name
|
2093
|
+
# This is the non-unique name of the resource that belongs to the
|
2094
|
+
# specified backup.
|
2095
|
+
# @return [String]
|
2096
|
+
#
|
2549
2097
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/DescribeBackupJobOutput AWS API Documentation
|
2550
2098
|
#
|
2551
2099
|
class DescribeBackupJobOutput < Struct.new(
|
@@ -2572,18 +2120,12 @@ module Aws::Backup
|
|
2572
2120
|
:parent_job_id,
|
2573
2121
|
:is_parent,
|
2574
2122
|
:number_of_child_jobs,
|
2575
|
-
:child_jobs_in_state
|
2123
|
+
:child_jobs_in_state,
|
2124
|
+
:resource_name)
|
2576
2125
|
SENSITIVE = []
|
2577
2126
|
include Aws::Structure
|
2578
2127
|
end
|
2579
2128
|
|
2580
|
-
# @note When making an API call, you may pass DescribeBackupVaultInput
|
2581
|
-
# data as a hash:
|
2582
|
-
#
|
2583
|
-
# {
|
2584
|
-
# backup_vault_name: "string", # required
|
2585
|
-
# }
|
2586
|
-
#
|
2587
2129
|
# @!attribute [rw] backup_vault_name
|
2588
2130
|
# The name of a logical container where backups are stored. Backup
|
2589
2131
|
# vaults are identified by names that are unique to the account used
|
@@ -2703,13 +2245,6 @@ module Aws::Backup
|
|
2703
2245
|
include Aws::Structure
|
2704
2246
|
end
|
2705
2247
|
|
2706
|
-
# @note When making an API call, you may pass DescribeCopyJobInput
|
2707
|
-
# data as a hash:
|
2708
|
-
#
|
2709
|
-
# {
|
2710
|
-
# copy_job_id: "string", # required
|
2711
|
-
# }
|
2712
|
-
#
|
2713
2248
|
# @!attribute [rw] copy_job_id
|
2714
2249
|
# Uniquely identifies a copy job.
|
2715
2250
|
# @return [String]
|
@@ -2734,13 +2269,6 @@ module Aws::Backup
|
|
2734
2269
|
include Aws::Structure
|
2735
2270
|
end
|
2736
2271
|
|
2737
|
-
# @note When making an API call, you may pass DescribeFrameworkInput
|
2738
|
-
# data as a hash:
|
2739
|
-
#
|
2740
|
-
# {
|
2741
|
-
# framework_name: "FrameworkName", # required
|
2742
|
-
# }
|
2743
|
-
#
|
2744
2272
|
# @!attribute [rw] framework_name
|
2745
2273
|
# The unique name of a framework.
|
2746
2274
|
# @return [String]
|
@@ -2853,13 +2381,6 @@ module Aws::Backup
|
|
2853
2381
|
include Aws::Structure
|
2854
2382
|
end
|
2855
2383
|
|
2856
|
-
# @note When making an API call, you may pass DescribeProtectedResourceInput
|
2857
|
-
# data as a hash:
|
2858
|
-
#
|
2859
|
-
# {
|
2860
|
-
# resource_arn: "ARN", # required
|
2861
|
-
# }
|
2862
|
-
#
|
2863
2384
|
# @!attribute [rw] resource_arn
|
2864
2385
|
# An Amazon Resource Name (ARN) that uniquely identifies a resource.
|
2865
2386
|
# The format of the ARN depends on the resource type.
|
@@ -2890,24 +2411,22 @@ module Aws::Backup
|
|
2890
2411
|
# represents Friday, January 26, 2018 12:11:30.087 AM.
|
2891
2412
|
# @return [Time]
|
2892
2413
|
#
|
2414
|
+
# @!attribute [rw] resource_name
|
2415
|
+
# This is the non-unique name of the resource that belongs to the
|
2416
|
+
# specified backup.
|
2417
|
+
# @return [String]
|
2418
|
+
#
|
2893
2419
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/DescribeProtectedResourceOutput AWS API Documentation
|
2894
2420
|
#
|
2895
2421
|
class DescribeProtectedResourceOutput < Struct.new(
|
2896
2422
|
:resource_arn,
|
2897
2423
|
:resource_type,
|
2898
|
-
:last_backup_time
|
2424
|
+
:last_backup_time,
|
2425
|
+
:resource_name)
|
2899
2426
|
SENSITIVE = []
|
2900
2427
|
include Aws::Structure
|
2901
2428
|
end
|
2902
2429
|
|
2903
|
-
# @note When making an API call, you may pass DescribeRecoveryPointInput
|
2904
|
-
# data as a hash:
|
2905
|
-
#
|
2906
|
-
# {
|
2907
|
-
# backup_vault_name: "BackupVaultName", # required
|
2908
|
-
# recovery_point_arn: "ARN", # required
|
2909
|
-
# }
|
2910
|
-
#
|
2911
2430
|
# @!attribute [rw] backup_vault_name
|
2912
2431
|
# The name of a logical container where backups are stored. Backup
|
2913
2432
|
# vaults are identified by names that are unique to the account used
|
@@ -3109,6 +2628,11 @@ module Aws::Backup
|
|
3109
2628
|
# (composite) job.
|
3110
2629
|
# @return [Boolean]
|
3111
2630
|
#
|
2631
|
+
# @!attribute [rw] resource_name
|
2632
|
+
# This is the non-unique name of the resource that belongs to the
|
2633
|
+
# specified backup.
|
2634
|
+
# @return [String]
|
2635
|
+
#
|
3112
2636
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/DescribeRecoveryPointOutput AWS API Documentation
|
3113
2637
|
#
|
3114
2638
|
class DescribeRecoveryPointOutput < Struct.new(
|
@@ -3133,7 +2657,8 @@ module Aws::Backup
|
|
3133
2657
|
:last_restore_time,
|
3134
2658
|
:parent_recovery_point_arn,
|
3135
2659
|
:composite_member_identifier,
|
3136
|
-
:is_parent
|
2660
|
+
:is_parent,
|
2661
|
+
:resource_name)
|
3137
2662
|
SENSITIVE = []
|
3138
2663
|
include Aws::Structure
|
3139
2664
|
end
|
@@ -3179,13 +2704,6 @@ module Aws::Backup
|
|
3179
2704
|
include Aws::Structure
|
3180
2705
|
end
|
3181
2706
|
|
3182
|
-
# @note When making an API call, you may pass DescribeReportJobInput
|
3183
|
-
# data as a hash:
|
3184
|
-
#
|
3185
|
-
# {
|
3186
|
-
# report_job_id: "ReportJobId", # required
|
3187
|
-
# }
|
3188
|
-
#
|
3189
2707
|
# @!attribute [rw] report_job_id
|
3190
2708
|
# The identifier of the report job. A unique, randomly generated,
|
3191
2709
|
# Unicode, UTF-8 encoded string that is at most 1,024 bytes long. The
|
@@ -3214,13 +2732,6 @@ module Aws::Backup
|
|
3214
2732
|
include Aws::Structure
|
3215
2733
|
end
|
3216
2734
|
|
3217
|
-
# @note When making an API call, you may pass DescribeReportPlanInput
|
3218
|
-
# data as a hash:
|
3219
|
-
#
|
3220
|
-
# {
|
3221
|
-
# report_plan_name: "ReportPlanName", # required
|
3222
|
-
# }
|
3223
|
-
#
|
3224
2735
|
# @!attribute [rw] report_plan_name
|
3225
2736
|
# The unique name of a report plan.
|
3226
2737
|
# @return [String]
|
@@ -3248,13 +2759,6 @@ module Aws::Backup
|
|
3248
2759
|
include Aws::Structure
|
3249
2760
|
end
|
3250
2761
|
|
3251
|
-
# @note When making an API call, you may pass DescribeRestoreJobInput
|
3252
|
-
# data as a hash:
|
3253
|
-
#
|
3254
|
-
# {
|
3255
|
-
# restore_job_id: "RestoreJobId", # required
|
3256
|
-
# }
|
3257
|
-
#
|
3258
2762
|
# @!attribute [rw] restore_job_id
|
3259
2763
|
# Uniquely identifies the job that restores a recovery point.
|
3260
2764
|
# @return [String]
|
@@ -3354,14 +2858,6 @@ module Aws::Backup
|
|
3354
2858
|
include Aws::Structure
|
3355
2859
|
end
|
3356
2860
|
|
3357
|
-
# @note When making an API call, you may pass DisassociateRecoveryPointFromParentInput
|
3358
|
-
# data as a hash:
|
3359
|
-
#
|
3360
|
-
# {
|
3361
|
-
# backup_vault_name: "BackupVaultName", # required
|
3362
|
-
# recovery_point_arn: "ARN", # required
|
3363
|
-
# }
|
3364
|
-
#
|
3365
2861
|
# @!attribute [rw] backup_vault_name
|
3366
2862
|
# This is the name of a logical container where the child (nested)
|
3367
2863
|
# recovery point is stored. Backup vaults are identified by names that
|
@@ -3385,14 +2881,6 @@ module Aws::Backup
|
|
3385
2881
|
include Aws::Structure
|
3386
2882
|
end
|
3387
2883
|
|
3388
|
-
# @note When making an API call, you may pass DisassociateRecoveryPointInput
|
3389
|
-
# data as a hash:
|
3390
|
-
#
|
3391
|
-
# {
|
3392
|
-
# backup_vault_name: "BackupVaultName", # required
|
3393
|
-
# recovery_point_arn: "ARN", # required
|
3394
|
-
# }
|
3395
|
-
#
|
3396
2884
|
# @!attribute [rw] backup_vault_name
|
3397
2885
|
# The unique name of an Backup vault.
|
3398
2886
|
# @return [String]
|
@@ -3411,13 +2899,6 @@ module Aws::Backup
|
|
3411
2899
|
include Aws::Structure
|
3412
2900
|
end
|
3413
2901
|
|
3414
|
-
# @note When making an API call, you may pass ExportBackupPlanTemplateInput
|
3415
|
-
# data as a hash:
|
3416
|
-
#
|
3417
|
-
# {
|
3418
|
-
# backup_plan_id: "string", # required
|
3419
|
-
# }
|
3420
|
-
#
|
3421
2902
|
# @!attribute [rw] backup_plan_id
|
3422
2903
|
# Uniquely identifies a backup plan.
|
3423
2904
|
# @return [String]
|
@@ -3501,26 +2982,6 @@ module Aws::Backup
|
|
3501
2982
|
# Contains detailed information about all of the controls of a
|
3502
2983
|
# framework. Each framework must contain at least one control.
|
3503
2984
|
#
|
3504
|
-
# @note When making an API call, you may pass FrameworkControl
|
3505
|
-
# data as a hash:
|
3506
|
-
#
|
3507
|
-
# {
|
3508
|
-
# control_name: "ControlName", # required
|
3509
|
-
# control_input_parameters: [
|
3510
|
-
# {
|
3511
|
-
# parameter_name: "ParameterName",
|
3512
|
-
# parameter_value: "ParameterValue",
|
3513
|
-
# },
|
3514
|
-
# ],
|
3515
|
-
# control_scope: {
|
3516
|
-
# compliance_resource_ids: ["string"],
|
3517
|
-
# compliance_resource_types: ["ARN"],
|
3518
|
-
# tags: {
|
3519
|
-
# "string" => "string",
|
3520
|
-
# },
|
3521
|
-
# },
|
3522
|
-
# }
|
3523
|
-
#
|
3524
2985
|
# @!attribute [rw] control_name
|
3525
2986
|
# The name of a control. This name is between 1 and 256 characters.
|
3526
2987
|
# @return [String]
|
@@ -3547,13 +3008,6 @@ module Aws::Backup
|
|
3547
3008
|
include Aws::Structure
|
3548
3009
|
end
|
3549
3010
|
|
3550
|
-
# @note When making an API call, you may pass GetBackupPlanFromJSONInput
|
3551
|
-
# data as a hash:
|
3552
|
-
#
|
3553
|
-
# {
|
3554
|
-
# backup_plan_template_json: "string", # required
|
3555
|
-
# }
|
3556
|
-
#
|
3557
3011
|
# @!attribute [rw] backup_plan_template_json
|
3558
3012
|
# A customer-supplied backup plan document in JSON format.
|
3559
3013
|
# @return [String]
|
@@ -3579,13 +3033,6 @@ module Aws::Backup
|
|
3579
3033
|
include Aws::Structure
|
3580
3034
|
end
|
3581
3035
|
|
3582
|
-
# @note When making an API call, you may pass GetBackupPlanFromTemplateInput
|
3583
|
-
# data as a hash:
|
3584
|
-
#
|
3585
|
-
# {
|
3586
|
-
# backup_plan_template_id: "string", # required
|
3587
|
-
# }
|
3588
|
-
#
|
3589
3036
|
# @!attribute [rw] backup_plan_template_id
|
3590
3037
|
# Uniquely identifies a stored backup plan template.
|
3591
3038
|
# @return [String]
|
@@ -3611,14 +3058,6 @@ module Aws::Backup
|
|
3611
3058
|
include Aws::Structure
|
3612
3059
|
end
|
3613
3060
|
|
3614
|
-
# @note When making an API call, you may pass GetBackupPlanInput
|
3615
|
-
# data as a hash:
|
3616
|
-
#
|
3617
|
-
# {
|
3618
|
-
# backup_plan_id: "string", # required
|
3619
|
-
# version_id: "string",
|
3620
|
-
# }
|
3621
|
-
#
|
3622
3061
|
# @!attribute [rw] backup_plan_id
|
3623
3062
|
# Uniquely identifies a backup plan.
|
3624
3063
|
# @return [String]
|
@@ -3706,14 +3145,6 @@ module Aws::Backup
|
|
3706
3145
|
include Aws::Structure
|
3707
3146
|
end
|
3708
3147
|
|
3709
|
-
# @note When making an API call, you may pass GetBackupSelectionInput
|
3710
|
-
# data as a hash:
|
3711
|
-
#
|
3712
|
-
# {
|
3713
|
-
# backup_plan_id: "string", # required
|
3714
|
-
# selection_id: "string", # required
|
3715
|
-
# }
|
3716
|
-
#
|
3717
3148
|
# @!attribute [rw] backup_plan_id
|
3718
3149
|
# Uniquely identifies a backup plan.
|
3719
3150
|
# @return [String]
|
@@ -3771,13 +3202,6 @@ module Aws::Backup
|
|
3771
3202
|
include Aws::Structure
|
3772
3203
|
end
|
3773
3204
|
|
3774
|
-
# @note When making an API call, you may pass GetBackupVaultAccessPolicyInput
|
3775
|
-
# data as a hash:
|
3776
|
-
#
|
3777
|
-
# {
|
3778
|
-
# backup_vault_name: "BackupVaultName", # required
|
3779
|
-
# }
|
3780
|
-
#
|
3781
3205
|
# @!attribute [rw] backup_vault_name
|
3782
3206
|
# The name of a logical container where backups are stored. Backup
|
3783
3207
|
# vaults are identified by names that are unique to the account used
|
@@ -3820,13 +3244,6 @@ module Aws::Backup
|
|
3820
3244
|
include Aws::Structure
|
3821
3245
|
end
|
3822
3246
|
|
3823
|
-
# @note When making an API call, you may pass GetBackupVaultNotificationsInput
|
3824
|
-
# data as a hash:
|
3825
|
-
#
|
3826
|
-
# {
|
3827
|
-
# backup_vault_name: "BackupVaultName", # required
|
3828
|
-
# }
|
3829
|
-
#
|
3830
3247
|
# @!attribute [rw] backup_vault_name
|
3831
3248
|
# The name of a logical container where backups are stored. Backup
|
3832
3249
|
# vaults are identified by names that are unique to the account used
|
@@ -3877,13 +3294,6 @@ module Aws::Backup
|
|
3877
3294
|
include Aws::Structure
|
3878
3295
|
end
|
3879
3296
|
|
3880
|
-
# @note When making an API call, you may pass GetLegalHoldInput
|
3881
|
-
# data as a hash:
|
3882
|
-
#
|
3883
|
-
# {
|
3884
|
-
# legal_hold_id: "string", # required
|
3885
|
-
# }
|
3886
|
-
#
|
3887
3297
|
# @!attribute [rw] legal_hold_id
|
3888
3298
|
# This is the ID required to use `GetLegalHold`. This unique ID is
|
3889
3299
|
# associated with a specific legal hold.
|
@@ -3959,14 +3369,6 @@ module Aws::Backup
|
|
3959
3369
|
include Aws::Structure
|
3960
3370
|
end
|
3961
3371
|
|
3962
|
-
# @note When making an API call, you may pass GetRecoveryPointRestoreMetadataInput
|
3963
|
-
# data as a hash:
|
3964
|
-
#
|
3965
|
-
# {
|
3966
|
-
# backup_vault_name: "BackupVaultName", # required
|
3967
|
-
# recovery_point_arn: "ARN", # required
|
3968
|
-
# }
|
3969
|
-
#
|
3970
3372
|
# @!attribute [rw] backup_vault_name
|
3971
3373
|
# The name of a logical container where backups are stored. Backup
|
3972
3374
|
# vaults are identified by names that are unique to the account used
|
@@ -4199,14 +3601,6 @@ module Aws::Backup
|
|
4199
3601
|
#
|
4200
3602
|
# [1]: https://docs.aws.amazon.com/aws-backup/latest/devguide/whatisbackup.html#features-by-resource
|
4201
3603
|
#
|
4202
|
-
# @note When making an API call, you may pass Lifecycle
|
4203
|
-
# data as a hash:
|
4204
|
-
#
|
4205
|
-
# {
|
4206
|
-
# move_to_cold_storage_after_days: 1,
|
4207
|
-
# delete_after_days: 1,
|
4208
|
-
# }
|
4209
|
-
#
|
4210
3604
|
# @!attribute [rw] move_to_cold_storage_after_days
|
4211
3605
|
# Specifies the number of days after creation that a recovery point is
|
4212
3606
|
# moved to cold storage.
|
@@ -4253,24 +3647,6 @@ module Aws::Backup
|
|
4253
3647
|
include Aws::Structure
|
4254
3648
|
end
|
4255
3649
|
|
4256
|
-
# @note When making an API call, you may pass ListBackupJobsInput
|
4257
|
-
# data as a hash:
|
4258
|
-
#
|
4259
|
-
# {
|
4260
|
-
# next_token: "string",
|
4261
|
-
# max_results: 1,
|
4262
|
-
# by_resource_arn: "ARN",
|
4263
|
-
# by_state: "CREATED", # accepts CREATED, PENDING, RUNNING, ABORTING, ABORTED, COMPLETED, FAILED, EXPIRED, PARTIAL
|
4264
|
-
# by_backup_vault_name: "BackupVaultName",
|
4265
|
-
# by_created_before: Time.now,
|
4266
|
-
# by_created_after: Time.now,
|
4267
|
-
# by_resource_type: "ResourceType",
|
4268
|
-
# by_account_id: "AccountId",
|
4269
|
-
# by_complete_after: Time.now,
|
4270
|
-
# by_complete_before: Time.now,
|
4271
|
-
# by_parent_job_id: "string",
|
4272
|
-
# }
|
4273
|
-
#
|
4274
3650
|
# @!attribute [rw] next_token
|
4275
3651
|
# The next item following a partial list of returned items. For
|
4276
3652
|
# example, if a request is made to return `maxResults` number of
|
@@ -4398,14 +3774,6 @@ module Aws::Backup
|
|
4398
3774
|
include Aws::Structure
|
4399
3775
|
end
|
4400
3776
|
|
4401
|
-
# @note When making an API call, you may pass ListBackupPlanTemplatesInput
|
4402
|
-
# data as a hash:
|
4403
|
-
#
|
4404
|
-
# {
|
4405
|
-
# next_token: "string",
|
4406
|
-
# max_results: 1,
|
4407
|
-
# }
|
4408
|
-
#
|
4409
3777
|
# @!attribute [rw] next_token
|
4410
3778
|
# The next item following a partial list of returned items. For
|
4411
3779
|
# example, if a request is made to return `maxResults` number of
|
@@ -4447,15 +3815,6 @@ module Aws::Backup
|
|
4447
3815
|
include Aws::Structure
|
4448
3816
|
end
|
4449
3817
|
|
4450
|
-
# @note When making an API call, you may pass ListBackupPlanVersionsInput
|
4451
|
-
# data as a hash:
|
4452
|
-
#
|
4453
|
-
# {
|
4454
|
-
# backup_plan_id: "string", # required
|
4455
|
-
# next_token: "string",
|
4456
|
-
# max_results: 1,
|
4457
|
-
# }
|
4458
|
-
#
|
4459
3818
|
# @!attribute [rw] backup_plan_id
|
4460
3819
|
# Uniquely identifies a backup plan.
|
4461
3820
|
# @return [String]
|
@@ -4502,15 +3861,6 @@ module Aws::Backup
|
|
4502
3861
|
include Aws::Structure
|
4503
3862
|
end
|
4504
3863
|
|
4505
|
-
# @note When making an API call, you may pass ListBackupPlansInput
|
4506
|
-
# data as a hash:
|
4507
|
-
#
|
4508
|
-
# {
|
4509
|
-
# next_token: "string",
|
4510
|
-
# max_results: 1,
|
4511
|
-
# include_deleted: false,
|
4512
|
-
# }
|
4513
|
-
#
|
4514
3864
|
# @!attribute [rw] next_token
|
4515
3865
|
# The next item following a partial list of returned items. For
|
4516
3866
|
# example, if a request is made to return `maxResults` number of
|
@@ -4558,15 +3908,6 @@ module Aws::Backup
|
|
4558
3908
|
include Aws::Structure
|
4559
3909
|
end
|
4560
3910
|
|
4561
|
-
# @note When making an API call, you may pass ListBackupSelectionsInput
|
4562
|
-
# data as a hash:
|
4563
|
-
#
|
4564
|
-
# {
|
4565
|
-
# backup_plan_id: "string", # required
|
4566
|
-
# next_token: "string",
|
4567
|
-
# max_results: 1,
|
4568
|
-
# }
|
4569
|
-
#
|
4570
3911
|
# @!attribute [rw] backup_plan_id
|
4571
3912
|
# Uniquely identifies a backup plan.
|
4572
3913
|
# @return [String]
|
@@ -4613,14 +3954,6 @@ module Aws::Backup
|
|
4613
3954
|
include Aws::Structure
|
4614
3955
|
end
|
4615
3956
|
|
4616
|
-
# @note When making an API call, you may pass ListBackupVaultsInput
|
4617
|
-
# data as a hash:
|
4618
|
-
#
|
4619
|
-
# {
|
4620
|
-
# next_token: "string",
|
4621
|
-
# max_results: 1,
|
4622
|
-
# }
|
4623
|
-
#
|
4624
3957
|
# @!attribute [rw] next_token
|
4625
3958
|
# The next item following a partial list of returned items. For
|
4626
3959
|
# example, if a request is made to return `maxResults` number of
|
@@ -4664,24 +3997,6 @@ module Aws::Backup
|
|
4664
3997
|
include Aws::Structure
|
4665
3998
|
end
|
4666
3999
|
|
4667
|
-
# @note When making an API call, you may pass ListCopyJobsInput
|
4668
|
-
# data as a hash:
|
4669
|
-
#
|
4670
|
-
# {
|
4671
|
-
# next_token: "string",
|
4672
|
-
# max_results: 1,
|
4673
|
-
# by_resource_arn: "ARN",
|
4674
|
-
# by_state: "CREATED", # accepts CREATED, RUNNING, COMPLETED, FAILED, PARTIAL
|
4675
|
-
# by_created_before: Time.now,
|
4676
|
-
# by_created_after: Time.now,
|
4677
|
-
# by_resource_type: "ResourceType",
|
4678
|
-
# by_destination_vault_arn: "string",
|
4679
|
-
# by_account_id: "AccountId",
|
4680
|
-
# by_complete_before: Time.now,
|
4681
|
-
# by_complete_after: Time.now,
|
4682
|
-
# by_parent_job_id: "string",
|
4683
|
-
# }
|
4684
|
-
#
|
4685
4000
|
# @!attribute [rw] next_token
|
4686
4001
|
# The next item following a partial list of returned items. For
|
4687
4002
|
# example, if a request is made to return maxResults number of items,
|
@@ -4803,14 +4118,6 @@ module Aws::Backup
|
|
4803
4118
|
include Aws::Structure
|
4804
4119
|
end
|
4805
4120
|
|
4806
|
-
# @note When making an API call, you may pass ListFrameworksInput
|
4807
|
-
# data as a hash:
|
4808
|
-
#
|
4809
|
-
# {
|
4810
|
-
# max_results: 1,
|
4811
|
-
# next_token: "string",
|
4812
|
-
# }
|
4813
|
-
#
|
4814
4121
|
# @!attribute [rw] max_results
|
4815
4122
|
# The number of desired results from 1 to 1000. Optional. If
|
4816
4123
|
# unspecified, the query will return 1 MB of data.
|
@@ -4852,14 +4159,6 @@ module Aws::Backup
|
|
4852
4159
|
include Aws::Structure
|
4853
4160
|
end
|
4854
4161
|
|
4855
|
-
# @note When making an API call, you may pass ListLegalHoldsInput
|
4856
|
-
# data as a hash:
|
4857
|
-
#
|
4858
|
-
# {
|
4859
|
-
# next_token: "string",
|
4860
|
-
# max_results: 1,
|
4861
|
-
# }
|
4862
|
-
#
|
4863
4162
|
# @!attribute [rw] next_token
|
4864
4163
|
# The next item following a partial list of returned resources. For
|
4865
4164
|
# example, if a request is made to return `maxResults` number of
|
@@ -4900,14 +4199,6 @@ module Aws::Backup
|
|
4900
4199
|
include Aws::Structure
|
4901
4200
|
end
|
4902
4201
|
|
4903
|
-
# @note When making an API call, you may pass ListProtectedResourcesInput
|
4904
|
-
# data as a hash:
|
4905
|
-
#
|
4906
|
-
# {
|
4907
|
-
# next_token: "string",
|
4908
|
-
# max_results: 1,
|
4909
|
-
# }
|
4910
|
-
#
|
4911
4202
|
# @!attribute [rw] next_token
|
4912
4203
|
# The next item following a partial list of returned items. For
|
4913
4204
|
# example, if a request is made to return `maxResults` number of
|
@@ -4950,21 +4241,6 @@ module Aws::Backup
|
|
4950
4241
|
include Aws::Structure
|
4951
4242
|
end
|
4952
4243
|
|
4953
|
-
# @note When making an API call, you may pass ListRecoveryPointsByBackupVaultInput
|
4954
|
-
# data as a hash:
|
4955
|
-
#
|
4956
|
-
# {
|
4957
|
-
# backup_vault_name: "BackupVaultName", # required
|
4958
|
-
# next_token: "string",
|
4959
|
-
# max_results: 1,
|
4960
|
-
# by_resource_arn: "ARN",
|
4961
|
-
# by_resource_type: "ResourceType",
|
4962
|
-
# by_backup_plan_id: "string",
|
4963
|
-
# by_created_before: Time.now,
|
4964
|
-
# by_created_after: Time.now,
|
4965
|
-
# by_parent_recovery_point_arn: "ARN",
|
4966
|
-
# }
|
4967
|
-
#
|
4968
4244
|
# @!attribute [rw] backup_vault_name
|
4969
4245
|
# The name of a logical container where backups are stored. Backup
|
4970
4246
|
# vaults are identified by names that are unique to the account used
|
@@ -5054,15 +4330,6 @@ module Aws::Backup
|
|
5054
4330
|
include Aws::Structure
|
5055
4331
|
end
|
5056
4332
|
|
5057
|
-
# @note When making an API call, you may pass ListRecoveryPointsByLegalHoldInput
|
5058
|
-
# data as a hash:
|
5059
|
-
#
|
5060
|
-
# {
|
5061
|
-
# legal_hold_id: "string", # required
|
5062
|
-
# next_token: "string",
|
5063
|
-
# max_results: 1,
|
5064
|
-
# }
|
5065
|
-
#
|
5066
4333
|
# @!attribute [rw] legal_hold_id
|
5067
4334
|
# This is the ID of the legal hold.
|
5068
4335
|
# @return [String]
|
@@ -5107,15 +4374,6 @@ module Aws::Backup
|
|
5107
4374
|
include Aws::Structure
|
5108
4375
|
end
|
5109
4376
|
|
5110
|
-
# @note When making an API call, you may pass ListRecoveryPointsByResourceInput
|
5111
|
-
# data as a hash:
|
5112
|
-
#
|
5113
|
-
# {
|
5114
|
-
# resource_arn: "ARN", # required
|
5115
|
-
# next_token: "string",
|
5116
|
-
# max_results: 1,
|
5117
|
-
# }
|
5118
|
-
#
|
5119
4377
|
# @!attribute [rw] resource_arn
|
5120
4378
|
# An ARN that uniquely identifies a resource. The format of the ARN
|
5121
4379
|
# depends on the resource type.
|
@@ -5172,18 +4430,6 @@ module Aws::Backup
|
|
5172
4430
|
include Aws::Structure
|
5173
4431
|
end
|
5174
4432
|
|
5175
|
-
# @note When making an API call, you may pass ListReportJobsInput
|
5176
|
-
# data as a hash:
|
5177
|
-
#
|
5178
|
-
# {
|
5179
|
-
# by_report_plan_name: "ReportPlanName",
|
5180
|
-
# by_creation_before: Time.now,
|
5181
|
-
# by_creation_after: Time.now,
|
5182
|
-
# by_status: "string",
|
5183
|
-
# max_results: 1,
|
5184
|
-
# next_token: "string",
|
5185
|
-
# }
|
5186
|
-
#
|
5187
4433
|
# @!attribute [rw] by_report_plan_name
|
5188
4434
|
# Returns only report jobs with the specified report plan name.
|
5189
4435
|
# @return [String]
|
@@ -5252,14 +4498,6 @@ module Aws::Backup
|
|
5252
4498
|
include Aws::Structure
|
5253
4499
|
end
|
5254
4500
|
|
5255
|
-
# @note When making an API call, you may pass ListReportPlansInput
|
5256
|
-
# data as a hash:
|
5257
|
-
#
|
5258
|
-
# {
|
5259
|
-
# max_results: 1,
|
5260
|
-
# next_token: "string",
|
5261
|
-
# }
|
5262
|
-
#
|
5263
4501
|
# @!attribute [rw] max_results
|
5264
4502
|
# The number of desired results from 1 to 1000. Optional. If
|
5265
4503
|
# unspecified, the query will return 1 MB of data.
|
@@ -5303,20 +4541,6 @@ module Aws::Backup
|
|
5303
4541
|
include Aws::Structure
|
5304
4542
|
end
|
5305
4543
|
|
5306
|
-
# @note When making an API call, you may pass ListRestoreJobsInput
|
5307
|
-
# data as a hash:
|
5308
|
-
#
|
5309
|
-
# {
|
5310
|
-
# next_token: "string",
|
5311
|
-
# max_results: 1,
|
5312
|
-
# by_account_id: "AccountId",
|
5313
|
-
# by_created_before: Time.now,
|
5314
|
-
# by_created_after: Time.now,
|
5315
|
-
# by_status: "PENDING", # accepts PENDING, RUNNING, COMPLETED, ABORTED, FAILED
|
5316
|
-
# by_complete_before: Time.now,
|
5317
|
-
# by_complete_after: Time.now,
|
5318
|
-
# }
|
5319
|
-
#
|
5320
4544
|
# @!attribute [rw] next_token
|
5321
4545
|
# The next item following a partial list of returned items. For
|
5322
4546
|
# example, if a request is made to return `maxResults` number of
|
@@ -5393,15 +4617,6 @@ module Aws::Backup
|
|
5393
4617
|
include Aws::Structure
|
5394
4618
|
end
|
5395
4619
|
|
5396
|
-
# @note When making an API call, you may pass ListTagsInput
|
5397
|
-
# data as a hash:
|
5398
|
-
#
|
5399
|
-
# {
|
5400
|
-
# resource_arn: "ARN", # required
|
5401
|
-
# next_token: "string",
|
5402
|
-
# max_results: 1,
|
5403
|
-
# }
|
5404
|
-
#
|
5405
4620
|
# @!attribute [rw] resource_arn
|
5406
4621
|
# An Amazon Resource Name (ARN) that uniquely identifies a resource.
|
5407
4622
|
# The format of the ARN depends on the type of resource. Valid targets
|
@@ -5497,24 +4712,22 @@ module Aws::Backup
|
|
5497
4712
|
# represents Friday, January 26, 2018 12:11:30.087 AM.
|
5498
4713
|
# @return [Time]
|
5499
4714
|
#
|
4715
|
+
# @!attribute [rw] resource_name
|
4716
|
+
# This is the non-unique name of the resource that belongs to the
|
4717
|
+
# specified backup.
|
4718
|
+
# @return [String]
|
4719
|
+
#
|
5500
4720
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ProtectedResource AWS API Documentation
|
5501
4721
|
#
|
5502
4722
|
class ProtectedResource < Struct.new(
|
5503
4723
|
:resource_arn,
|
5504
4724
|
:resource_type,
|
5505
|
-
:last_backup_time
|
4725
|
+
:last_backup_time,
|
4726
|
+
:resource_name)
|
5506
4727
|
SENSITIVE = []
|
5507
4728
|
include Aws::Structure
|
5508
4729
|
end
|
5509
4730
|
|
5510
|
-
# @note When making an API call, you may pass PutBackupVaultAccessPolicyInput
|
5511
|
-
# data as a hash:
|
5512
|
-
#
|
5513
|
-
# {
|
5514
|
-
# backup_vault_name: "BackupVaultName", # required
|
5515
|
-
# policy: "IAMPolicy",
|
5516
|
-
# }
|
5517
|
-
#
|
5518
4731
|
# @!attribute [rw] backup_vault_name
|
5519
4732
|
# The name of a logical container where backups are stored. Backup
|
5520
4733
|
# vaults are identified by names that are unique to the account used
|
@@ -5535,16 +4748,6 @@ module Aws::Backup
|
|
5535
4748
|
include Aws::Structure
|
5536
4749
|
end
|
5537
4750
|
|
5538
|
-
# @note When making an API call, you may pass PutBackupVaultLockConfigurationInput
|
5539
|
-
# data as a hash:
|
5540
|
-
#
|
5541
|
-
# {
|
5542
|
-
# backup_vault_name: "BackupVaultName", # required
|
5543
|
-
# min_retention_days: 1,
|
5544
|
-
# max_retention_days: 1,
|
5545
|
-
# changeable_for_days: 1,
|
5546
|
-
# }
|
5547
|
-
#
|
5548
4751
|
# @!attribute [rw] backup_vault_name
|
5549
4752
|
# The Backup Vault Lock configuration that specifies the name of the
|
5550
4753
|
# backup vault it protects.
|
@@ -5626,15 +4829,6 @@ module Aws::Backup
|
|
5626
4829
|
include Aws::Structure
|
5627
4830
|
end
|
5628
4831
|
|
5629
|
-
# @note When making an API call, you may pass PutBackupVaultNotificationsInput
|
5630
|
-
# data as a hash:
|
5631
|
-
#
|
5632
|
-
# {
|
5633
|
-
# backup_vault_name: "BackupVaultName", # required
|
5634
|
-
# sns_topic_arn: "ARN", # required
|
5635
|
-
# backup_vault_events: ["BACKUP_JOB_STARTED"], # required, accepts BACKUP_JOB_STARTED, BACKUP_JOB_COMPLETED, BACKUP_JOB_SUCCESSFUL, BACKUP_JOB_FAILED, BACKUP_JOB_EXPIRED, RESTORE_JOB_STARTED, RESTORE_JOB_COMPLETED, RESTORE_JOB_SUCCESSFUL, RESTORE_JOB_FAILED, COPY_JOB_STARTED, COPY_JOB_SUCCESSFUL, COPY_JOB_FAILED, RECOVERY_POINT_MODIFIED, BACKUP_PLAN_CREATED, BACKUP_PLAN_MODIFIED, S3_BACKUP_OBJECT_FAILED, S3_RESTORE_OBJECT_FAILED
|
5636
|
-
# }
|
5637
|
-
#
|
5638
4832
|
# @!attribute [rw] backup_vault_name
|
5639
4833
|
# The name of a logical container where backups are stored. Backup
|
5640
4834
|
# vaults are identified by names that are unique to the account used
|
@@ -5833,6 +5027,11 @@ module Aws::Backup
|
|
5833
5027
|
# recovery point.
|
5834
5028
|
# @return [Boolean]
|
5835
5029
|
#
|
5030
|
+
# @!attribute [rw] resource_name
|
5031
|
+
# This is the non-unique name of the resource that belongs to the
|
5032
|
+
# specified backup.
|
5033
|
+
# @return [String]
|
5034
|
+
#
|
5836
5035
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/RecoveryPointByBackupVault AWS API Documentation
|
5837
5036
|
#
|
5838
5037
|
class RecoveryPointByBackupVault < Struct.new(
|
@@ -5856,7 +5055,8 @@ module Aws::Backup
|
|
5856
5055
|
:last_restore_time,
|
5857
5056
|
:parent_recovery_point_arn,
|
5858
5057
|
:composite_member_identifier,
|
5859
|
-
:is_parent
|
5058
|
+
:is_parent,
|
5059
|
+
:resource_name)
|
5860
5060
|
SENSITIVE = []
|
5861
5061
|
include Aws::Structure
|
5862
5062
|
end
|
@@ -5912,6 +5112,11 @@ module Aws::Backup
|
|
5912
5112
|
# recovery point.
|
5913
5113
|
# @return [String]
|
5914
5114
|
#
|
5115
|
+
# @!attribute [rw] resource_name
|
5116
|
+
# This is the non-unique name of the resource that belongs to the
|
5117
|
+
# specified backup.
|
5118
|
+
# @return [String]
|
5119
|
+
#
|
5915
5120
|
# @see http://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/RecoveryPointByResource AWS API Documentation
|
5916
5121
|
#
|
5917
5122
|
class RecoveryPointByResource < Struct.new(
|
@@ -5923,7 +5128,8 @@ module Aws::Backup
|
|
5923
5128
|
:backup_size_bytes,
|
5924
5129
|
:backup_vault_name,
|
5925
5130
|
:is_parent,
|
5926
|
-
:parent_recovery_point_arn
|
5131
|
+
:parent_recovery_point_arn,
|
5132
|
+
:resource_name)
|
5927
5133
|
SENSITIVE = []
|
5928
5134
|
include Aws::Structure
|
5929
5135
|
end
|
@@ -5983,18 +5189,6 @@ module Aws::Backup
|
|
5983
5189
|
# This specifies criteria to assign a set of resources, such as resource
|
5984
5190
|
# types or backup vaults.
|
5985
5191
|
#
|
5986
|
-
# @note When making an API call, you may pass RecoveryPointSelection
|
5987
|
-
# data as a hash:
|
5988
|
-
#
|
5989
|
-
# {
|
5990
|
-
# vault_names: ["string"],
|
5991
|
-
# resource_identifiers: ["string"],
|
5992
|
-
# date_range: {
|
5993
|
-
# from_date: Time.now, # required
|
5994
|
-
# to_date: Time.now, # required
|
5995
|
-
# },
|
5996
|
-
# }
|
5997
|
-
#
|
5998
5192
|
# @!attribute [rw] vault_names
|
5999
5193
|
# These are the names of the vaults in which the selected recovery
|
6000
5194
|
# points are contained.
|
@@ -6030,15 +5224,6 @@ module Aws::Backup
|
|
6030
5224
|
# reports, specifically your Amazon S3 bucket name, S3 key prefix, and
|
6031
5225
|
# the formats of your reports.
|
6032
5226
|
#
|
6033
|
-
# @note When making an API call, you may pass ReportDeliveryChannel
|
6034
|
-
# data as a hash:
|
6035
|
-
#
|
6036
|
-
# {
|
6037
|
-
# s3_bucket_name: "string", # required
|
6038
|
-
# s3_key_prefix: "string",
|
6039
|
-
# formats: ["string"],
|
6040
|
-
# }
|
6041
|
-
#
|
6042
5227
|
# @!attribute [rw] s3_bucket_name
|
6043
5228
|
# The unique name of the S3 bucket that receives your reports.
|
6044
5229
|
# @return [String]
|
@@ -6241,18 +5426,6 @@ module Aws::Backup
|
|
6241
5426
|
|
6242
5427
|
# Contains detailed information about a report setting.
|
6243
5428
|
#
|
6244
|
-
# @note When making an API call, you may pass ReportSetting
|
6245
|
-
# data as a hash:
|
6246
|
-
#
|
6247
|
-
# {
|
6248
|
-
# report_template: "string", # required
|
6249
|
-
# framework_arns: ["string"],
|
6250
|
-
# number_of_frameworks: 1,
|
6251
|
-
# accounts: ["string"],
|
6252
|
-
# organization_units: ["string"],
|
6253
|
-
# regions: ["string"],
|
6254
|
-
# }
|
6255
|
-
#
|
6256
5429
|
# @!attribute [rw] report_template
|
6257
5430
|
# Identifies the report template for the report. Reports are built
|
6258
5431
|
# using a report template. The report templates are:
|
@@ -6435,28 +5608,6 @@ module Aws::Backup
|
|
6435
5608
|
include Aws::Structure
|
6436
5609
|
end
|
6437
5610
|
|
6438
|
-
# @note When making an API call, you may pass StartBackupJobInput
|
6439
|
-
# data as a hash:
|
6440
|
-
#
|
6441
|
-
# {
|
6442
|
-
# backup_vault_name: "BackupVaultName", # required
|
6443
|
-
# resource_arn: "ARN", # required
|
6444
|
-
# iam_role_arn: "IAMRoleArn", # required
|
6445
|
-
# idempotency_token: "string",
|
6446
|
-
# start_window_minutes: 1,
|
6447
|
-
# complete_window_minutes: 1,
|
6448
|
-
# lifecycle: {
|
6449
|
-
# move_to_cold_storage_after_days: 1,
|
6450
|
-
# delete_after_days: 1,
|
6451
|
-
# },
|
6452
|
-
# recovery_point_tags: {
|
6453
|
-
# "TagKey" => "TagValue",
|
6454
|
-
# },
|
6455
|
-
# backup_options: {
|
6456
|
-
# "BackupOptionKey" => "BackupOptionValue",
|
6457
|
-
# },
|
6458
|
-
# }
|
6459
|
-
#
|
6460
5611
|
# @!attribute [rw] backup_vault_name
|
6461
5612
|
# The name of a logical container where backups are stored. Backup
|
6462
5613
|
# vaults are identified by names that are unique to the account used
|
@@ -6554,6 +5705,9 @@ module Aws::Backup
|
|
6554
5705
|
# @return [String]
|
6555
5706
|
#
|
6556
5707
|
# @!attribute [rw] recovery_point_arn
|
5708
|
+
# *Note: This field is only returned for Amazon EFS and Advanced
|
5709
|
+
# DynamoDB resources.*
|
5710
|
+
#
|
6557
5711
|
# An ARN that uniquely identifies a recovery point; for example,
|
6558
5712
|
# `arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45`.
|
6559
5713
|
# @return [String]
|
@@ -6581,21 +5735,6 @@ module Aws::Backup
|
|
6581
5735
|
include Aws::Structure
|
6582
5736
|
end
|
6583
5737
|
|
6584
|
-
# @note When making an API call, you may pass StartCopyJobInput
|
6585
|
-
# data as a hash:
|
6586
|
-
#
|
6587
|
-
# {
|
6588
|
-
# recovery_point_arn: "ARN", # required
|
6589
|
-
# source_backup_vault_name: "BackupVaultName", # required
|
6590
|
-
# destination_backup_vault_arn: "ARN", # required
|
6591
|
-
# iam_role_arn: "IAMRoleArn", # required
|
6592
|
-
# idempotency_token: "string",
|
6593
|
-
# lifecycle: {
|
6594
|
-
# move_to_cold_storage_after_days: 1,
|
6595
|
-
# delete_after_days: 1,
|
6596
|
-
# },
|
6597
|
-
# }
|
6598
|
-
#
|
6599
5738
|
# @!attribute [rw] recovery_point_arn
|
6600
5739
|
# An ARN that uniquely identifies a recovery point to use for the copy
|
6601
5740
|
# job; for example,
|
@@ -6688,14 +5827,6 @@ module Aws::Backup
|
|
6688
5827
|
include Aws::Structure
|
6689
5828
|
end
|
6690
5829
|
|
6691
|
-
# @note When making an API call, you may pass StartReportJobInput
|
6692
|
-
# data as a hash:
|
6693
|
-
#
|
6694
|
-
# {
|
6695
|
-
# report_plan_name: "ReportPlanName", # required
|
6696
|
-
# idempotency_token: "string",
|
6697
|
-
# }
|
6698
|
-
#
|
6699
5830
|
# @!attribute [rw] report_plan_name
|
6700
5831
|
# The unique name of a report plan.
|
6701
5832
|
# @return [String]
|
@@ -6733,19 +5864,6 @@ module Aws::Backup
|
|
6733
5864
|
include Aws::Structure
|
6734
5865
|
end
|
6735
5866
|
|
6736
|
-
# @note When making an API call, you may pass StartRestoreJobInput
|
6737
|
-
# data as a hash:
|
6738
|
-
#
|
6739
|
-
# {
|
6740
|
-
# recovery_point_arn: "ARN", # required
|
6741
|
-
# metadata: { # required
|
6742
|
-
# "MetadataKey" => "MetadataValue",
|
6743
|
-
# },
|
6744
|
-
# iam_role_arn: "IAMRoleArn",
|
6745
|
-
# idempotency_token: "string",
|
6746
|
-
# resource_type: "ResourceType",
|
6747
|
-
# }
|
6748
|
-
#
|
6749
5867
|
# @!attribute [rw] recovery_point_arn
|
6750
5868
|
# An ARN that uniquely identifies a recovery point; for example,
|
6751
5869
|
# `arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45`.
|
@@ -6860,13 +5978,6 @@ module Aws::Backup
|
|
6860
5978
|
include Aws::Structure
|
6861
5979
|
end
|
6862
5980
|
|
6863
|
-
# @note When making an API call, you may pass StopBackupJobInput
|
6864
|
-
# data as a hash:
|
6865
|
-
#
|
6866
|
-
# {
|
6867
|
-
# backup_job_id: "string", # required
|
6868
|
-
# }
|
6869
|
-
#
|
6870
5981
|
# @!attribute [rw] backup_job_id
|
6871
5982
|
# Uniquely identifies a request to Backup to back up a resource.
|
6872
5983
|
# @return [String]
|
@@ -6879,16 +5990,6 @@ module Aws::Backup
|
|
6879
5990
|
include Aws::Structure
|
6880
5991
|
end
|
6881
5992
|
|
6882
|
-
# @note When making an API call, you may pass TagResourceInput
|
6883
|
-
# data as a hash:
|
6884
|
-
#
|
6885
|
-
# {
|
6886
|
-
# resource_arn: "ARN", # required
|
6887
|
-
# tags: { # required
|
6888
|
-
# "TagKey" => "TagValue",
|
6889
|
-
# },
|
6890
|
-
# }
|
6891
|
-
#
|
6892
5993
|
# @!attribute [rw] resource_arn
|
6893
5994
|
# An ARN that uniquely identifies a resource. The format of the ARN
|
6894
5995
|
# depends on the type of the tagged resource.
|
@@ -6910,14 +6011,6 @@ module Aws::Backup
|
|
6910
6011
|
include Aws::Structure
|
6911
6012
|
end
|
6912
6013
|
|
6913
|
-
# @note When making an API call, you may pass UntagResourceInput
|
6914
|
-
# data as a hash:
|
6915
|
-
#
|
6916
|
-
# {
|
6917
|
-
# resource_arn: "ARN", # required
|
6918
|
-
# tag_key_list: ["string"], # required
|
6919
|
-
# }
|
6920
|
-
#
|
6921
6014
|
# @!attribute [rw] resource_arn
|
6922
6015
|
# An ARN that uniquely identifies a resource. The format of the ARN
|
6923
6016
|
# depends on the type of the tagged resource.
|
@@ -6937,50 +6030,6 @@ module Aws::Backup
|
|
6937
6030
|
include Aws::Structure
|
6938
6031
|
end
|
6939
6032
|
|
6940
|
-
# @note When making an API call, you may pass UpdateBackupPlanInput
|
6941
|
-
# data as a hash:
|
6942
|
-
#
|
6943
|
-
# {
|
6944
|
-
# backup_plan_id: "string", # required
|
6945
|
-
# backup_plan: { # required
|
6946
|
-
# backup_plan_name: "BackupPlanName", # required
|
6947
|
-
# rules: [ # required
|
6948
|
-
# {
|
6949
|
-
# rule_name: "BackupRuleName", # required
|
6950
|
-
# target_backup_vault_name: "BackupVaultName", # required
|
6951
|
-
# schedule_expression: "CronExpression",
|
6952
|
-
# start_window_minutes: 1,
|
6953
|
-
# completion_window_minutes: 1,
|
6954
|
-
# lifecycle: {
|
6955
|
-
# move_to_cold_storage_after_days: 1,
|
6956
|
-
# delete_after_days: 1,
|
6957
|
-
# },
|
6958
|
-
# recovery_point_tags: {
|
6959
|
-
# "TagKey" => "TagValue",
|
6960
|
-
# },
|
6961
|
-
# copy_actions: [
|
6962
|
-
# {
|
6963
|
-
# lifecycle: {
|
6964
|
-
# move_to_cold_storage_after_days: 1,
|
6965
|
-
# delete_after_days: 1,
|
6966
|
-
# },
|
6967
|
-
# destination_backup_vault_arn: "ARN", # required
|
6968
|
-
# },
|
6969
|
-
# ],
|
6970
|
-
# enable_continuous_backup: false,
|
6971
|
-
# },
|
6972
|
-
# ],
|
6973
|
-
# advanced_backup_settings: [
|
6974
|
-
# {
|
6975
|
-
# resource_type: "ResourceType",
|
6976
|
-
# backup_options: {
|
6977
|
-
# "BackupOptionKey" => "BackupOptionValue",
|
6978
|
-
# },
|
6979
|
-
# },
|
6980
|
-
# ],
|
6981
|
-
# },
|
6982
|
-
# }
|
6983
|
-
#
|
6984
6033
|
# @!attribute [rw] backup_plan_id
|
6985
6034
|
# Uniquely identifies a backup plan.
|
6986
6035
|
# @return [String]
|
@@ -7037,33 +6086,6 @@ module Aws::Backup
|
|
7037
6086
|
include Aws::Structure
|
7038
6087
|
end
|
7039
6088
|
|
7040
|
-
# @note When making an API call, you may pass UpdateFrameworkInput
|
7041
|
-
# data as a hash:
|
7042
|
-
#
|
7043
|
-
# {
|
7044
|
-
# framework_name: "FrameworkName", # required
|
7045
|
-
# framework_description: "FrameworkDescription",
|
7046
|
-
# framework_controls: [
|
7047
|
-
# {
|
7048
|
-
# control_name: "ControlName", # required
|
7049
|
-
# control_input_parameters: [
|
7050
|
-
# {
|
7051
|
-
# parameter_name: "ParameterName",
|
7052
|
-
# parameter_value: "ParameterValue",
|
7053
|
-
# },
|
7054
|
-
# ],
|
7055
|
-
# control_scope: {
|
7056
|
-
# compliance_resource_ids: ["string"],
|
7057
|
-
# compliance_resource_types: ["ARN"],
|
7058
|
-
# tags: {
|
7059
|
-
# "string" => "string",
|
7060
|
-
# },
|
7061
|
-
# },
|
7062
|
-
# },
|
7063
|
-
# ],
|
7064
|
-
# idempotency_token: "string",
|
7065
|
-
# }
|
7066
|
-
#
|
7067
6089
|
# @!attribute [rw] framework_name
|
7068
6090
|
# The unique name of a framework. This name is between 1 and 256
|
7069
6091
|
# characters, starting with a letter, and consisting of letters (a-z,
|
@@ -7129,15 +6151,6 @@ module Aws::Backup
|
|
7129
6151
|
include Aws::Structure
|
7130
6152
|
end
|
7131
6153
|
|
7132
|
-
# @note When making an API call, you may pass UpdateGlobalSettingsInput
|
7133
|
-
# data as a hash:
|
7134
|
-
#
|
7135
|
-
# {
|
7136
|
-
# global_settings: {
|
7137
|
-
# "GlobalSettingsName" => "GlobalSettingsValue",
|
7138
|
-
# },
|
7139
|
-
# }
|
7140
|
-
#
|
7141
6154
|
# @!attribute [rw] global_settings
|
7142
6155
|
# A value for `isCrossAccountBackupEnabled` and a Region. Example:
|
7143
6156
|
# `update-global-settings --global-settings
|
@@ -7152,18 +6165,6 @@ module Aws::Backup
|
|
7152
6165
|
include Aws::Structure
|
7153
6166
|
end
|
7154
6167
|
|
7155
|
-
# @note When making an API call, you may pass UpdateRecoveryPointLifecycleInput
|
7156
|
-
# data as a hash:
|
7157
|
-
#
|
7158
|
-
# {
|
7159
|
-
# backup_vault_name: "BackupVaultName", # required
|
7160
|
-
# recovery_point_arn: "ARN", # required
|
7161
|
-
# lifecycle: {
|
7162
|
-
# move_to_cold_storage_after_days: 1,
|
7163
|
-
# delete_after_days: 1,
|
7164
|
-
# },
|
7165
|
-
# }
|
7166
|
-
#
|
7167
6168
|
# @!attribute [rw] backup_vault_name
|
7168
6169
|
# The name of a logical container where backups are stored. Backup
|
7169
6170
|
# vaults are identified by names that are unique to the account used
|
@@ -7247,18 +6248,6 @@ module Aws::Backup
|
|
7247
6248
|
include Aws::Structure
|
7248
6249
|
end
|
7249
6250
|
|
7250
|
-
# @note When making an API call, you may pass UpdateRegionSettingsInput
|
7251
|
-
# data as a hash:
|
7252
|
-
#
|
7253
|
-
# {
|
7254
|
-
# resource_type_opt_in_preference: {
|
7255
|
-
# "ResourceType" => false,
|
7256
|
-
# },
|
7257
|
-
# resource_type_management_preference: {
|
7258
|
-
# "ResourceType" => false,
|
7259
|
-
# },
|
7260
|
-
# }
|
7261
|
-
#
|
7262
6251
|
# @!attribute [rw] resource_type_opt_in_preference
|
7263
6252
|
# Updates the list of services along with the opt-in preferences for
|
7264
6253
|
# the Region.
|
@@ -7285,28 +6274,6 @@ module Aws::Backup
|
|
7285
6274
|
include Aws::Structure
|
7286
6275
|
end
|
7287
6276
|
|
7288
|
-
# @note When making an API call, you may pass UpdateReportPlanInput
|
7289
|
-
# data as a hash:
|
7290
|
-
#
|
7291
|
-
# {
|
7292
|
-
# report_plan_name: "ReportPlanName", # required
|
7293
|
-
# report_plan_description: "ReportPlanDescription",
|
7294
|
-
# report_delivery_channel: {
|
7295
|
-
# s3_bucket_name: "string", # required
|
7296
|
-
# s3_key_prefix: "string",
|
7297
|
-
# formats: ["string"],
|
7298
|
-
# },
|
7299
|
-
# report_setting: {
|
7300
|
-
# report_template: "string", # required
|
7301
|
-
# framework_arns: ["string"],
|
7302
|
-
# number_of_frameworks: 1,
|
7303
|
-
# accounts: ["string"],
|
7304
|
-
# organization_units: ["string"],
|
7305
|
-
# regions: ["string"],
|
7306
|
-
# },
|
7307
|
-
# idempotency_token: "string",
|
7308
|
-
# }
|
7309
|
-
#
|
7310
6277
|
# @!attribute [rw] report_plan_name
|
7311
6278
|
# The unique name of the report plan. This name is between 1 and 256
|
7312
6279
|
# characters, starting with a letter, and consisting of letters (a-z,
|