aws-sdk-route53recoveryreadiness 1.4.0 → 1.8.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3537e12dbb83ac553497e42fe3a9b3ca3bcecda075be7793bac9764eb8e129a8
4
- data.tar.gz: c886ef898de5cb2c478e9214a885538089c856e9ceb2d1769d9f903740b77b9f
3
+ metadata.gz: 59027cb0ce970b80ea43af576200e28d5e46211e1593260cc5cee97f26e0962c
4
+ data.tar.gz: 48cfdc21d902d923e3e54caa37bd8f8d41b8207477e8c4f8f3a9fdd92773c8c8
5
5
  SHA512:
6
- metadata.gz: 43ebb59a40c2636dde32feec7e6a4788eb1cf2b21cde9b7040ffa033cc0bbfc4c1d3633f40ca7aa855fd26f81d9776db192cd86cf1441d6616550b4768f00965
7
- data.tar.gz: e98e9249e55135d1a206d7c0e96107a7d5e8c3565e67924355e48b5594605d38c3128f7b29d4931fabe730a73a542caa685616e9f1557fd33c378deb99a9fef4
6
+ metadata.gz: d95ff9f6bb47de8f7ffb0ce6a6371592d7fb899dad20a2ce6ec28fb818020baddfd6f5ee8e4b32f56d0980eac27b3bbcd7c9c3d969443c52c15bb558f94424ee
7
+ data.tar.gz: bef963c9cf94ddb5aeffec2364c3775c8f2f8b496e63261c7676a7c9ec273247e602c31b10a8b551b22b6555a46a207d6d86714eee18d61bec527a364afe5715
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.8.0 (2022-01-24)
5
+ ------------------
6
+
7
+ * Feature - Updated documentation for Route53 Recovery Readiness APIs.
8
+
9
+ 1.7.0 (2021-12-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.6.0 (2021-11-30)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.5.0 (2021-11-04)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.4.0 (2021-10-18)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.4.0
1
+ 1.8.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
32
33
 
@@ -73,6 +74,7 @@ module Aws::Route53RecoveryReadiness
73
74
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
75
  add_plugin(Aws::Plugins::TransferEncoding)
75
76
  add_plugin(Aws::Plugins::HttpChecksum)
77
+ add_plugin(Aws::Plugins::DefaultsMode)
76
78
  add_plugin(Aws::Plugins::SignatureV4)
77
79
  add_plugin(Aws::Plugins::Protocols::RestJson)
78
80
 
@@ -119,7 +121,9 @@ module Aws::Route53RecoveryReadiness
119
121
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
122
  # are very aggressive. Construct and pass an instance of
121
123
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
124
+ # enable retries and extended timeouts. Instance profile credential
125
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
126
+ # to true.
123
127
  #
124
128
  # @option options [required, String] :region
125
129
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +177,10 @@ module Aws::Route53RecoveryReadiness
173
177
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
178
  # a clock skew correction and retry requests with skewed client clocks.
175
179
  #
180
+ # @option options [String] :defaults_mode ("legacy")
181
+ # See {Aws::DefaultsModeConfiguration} for a list of the
182
+ # accepted modes and the configuration defaults that are included.
183
+ #
176
184
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
185
  # Set to true to disable SDK automatically adding host prefix
178
186
  # to default service endpoint when available.
@@ -275,6 +283,15 @@ module Aws::Route53RecoveryReadiness
275
283
  # ** Please note ** When response stubbing is enabled, no HTTP
276
284
  # requests are made, and retries are disabled.
277
285
  #
286
+ # @option options [Boolean] :use_dualstack_endpoint
287
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
288
+ # will be used if available.
289
+ #
290
+ # @option options [Boolean] :use_fips_endpoint
291
+ # When set to `true`, fips compatible endpoints will be used if available.
292
+ # When a `fips` region is used, the region is normalized and this config
293
+ # is set to `true`.
294
+ #
278
295
  # @option options [Boolean] :validate_params (true)
279
296
  # When `true`, request parameters are validated before
280
297
  # sending the request.
@@ -286,7 +303,7 @@ module Aws::Route53RecoveryReadiness
286
303
  # seconds to wait when opening a HTTP session before raising a
287
304
  # `Timeout::Error`.
288
305
  #
289
- # @option options [Integer] :http_read_timeout (60) The default
306
+ # @option options [Float] :http_read_timeout (60) The default
290
307
  # number of seconds to wait for response data. This value can
291
308
  # safely be set per-request on the session.
292
309
  #
@@ -302,6 +319,9 @@ module Aws::Route53RecoveryReadiness
302
319
  # disables this behaviour. This value can safely be set per
303
320
  # request on the session.
304
321
  #
322
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
323
+ # in seconds.
324
+ #
305
325
  # @option options [Boolean] :http_wire_trace (false) When `true`,
306
326
  # HTTP debug output will be sent to the `:logger`.
307
327
  #
@@ -327,14 +347,14 @@ module Aws::Route53RecoveryReadiness
327
347
 
328
348
  # @!group API Operations
329
349
 
330
- # Creates a new Cell.
350
+ # Creates a cell in an account.
331
351
  #
332
352
  # @option params [required, String] :cell_name
333
353
  #
334
354
  # @option params [Array<String>] :cells
335
355
  #
336
356
  # @option params [Hash<String,String>] :tags
337
- # A collection of tags associated with a resource
357
+ # A collection of tags associated with a resource.
338
358
  #
339
359
  # @return [Types::CreateCellResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
340
360
  #
@@ -374,10 +394,13 @@ module Aws::Route53RecoveryReadiness
374
394
  req.send_request(options)
375
395
  end
376
396
 
377
- # Create a new cross account readiness authorization.
397
+ # Creates a cross-account readiness authorization. This lets you
398
+ # authorize another account to work with Route 53 Application Recovery
399
+ # Controller, for example, to check the readiness status of resources in
400
+ # a separate account.
378
401
  #
379
402
  # @option params [required, String] :cross_account_authorization
380
- # A cross-account authorization, e.g. arn:aws:iam::123456789012:root
403
+ # CrossAccountAuthorization
381
404
  #
382
405
  # @return [Types::CreateCrossAccountAuthorizationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
383
406
  #
@@ -402,14 +425,18 @@ module Aws::Route53RecoveryReadiness
402
425
  req.send_request(options)
403
426
  end
404
427
 
405
- # Creates a new Readiness Check.
428
+ # Creates a readiness check in an account. A readiness check monitors a
429
+ # resource set in your application, such as a set of Amazon Aurora
430
+ # instances, that Application Recovery Controller is auditing recovery
431
+ # readiness for. The audits run once every minute on every resource
432
+ # that's associated with a readiness check.
406
433
  #
407
434
  # @option params [required, String] :readiness_check_name
408
435
  #
409
436
  # @option params [required, String] :resource_set_name
410
437
  #
411
438
  # @option params [Hash<String,String>] :tags
412
- # A collection of tags associated with a resource
439
+ # A collection of tags associated with a resource.
413
440
  #
414
441
  # @return [Types::CreateReadinessCheckResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
415
442
  #
@@ -445,14 +472,16 @@ module Aws::Route53RecoveryReadiness
445
472
  req.send_request(options)
446
473
  end
447
474
 
448
- # Creates a new Recovery Group.
475
+ # Creates a recovery group in an account. A recovery group corresponds
476
+ # to an application and includes a list of the cells that make up the
477
+ # application.
449
478
  #
450
479
  # @option params [Array<String>] :cells
451
480
  #
452
481
  # @option params [required, String] :recovery_group_name
453
482
  #
454
483
  # @option params [Hash<String,String>] :tags
455
- # A collection of tags associated with a resource
484
+ # A collection of tags associated with a resource.
456
485
  #
457
486
  # @return [Types::CreateRecoveryGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
458
487
  #
@@ -489,7 +518,9 @@ module Aws::Route53RecoveryReadiness
489
518
  req.send_request(options)
490
519
  end
491
520
 
492
- # Creates a new Resource Set.
521
+ # Creates a resource set. A resource set is a set of resources of one
522
+ # type that span multiple cells. You can associate a resource set with a
523
+ # readiness check to monitor the resources for failover readiness.
493
524
  #
494
525
  # @option params [required, String] :resource_set_name
495
526
  #
@@ -498,7 +529,7 @@ module Aws::Route53RecoveryReadiness
498
529
  # @option params [required, Array<Types::Resource>] :resources
499
530
  #
500
531
  # @option params [Hash<String,String>] :tags
501
- # A collection of tags associated with a resource
532
+ # A collection of tags associated with a resource.
502
533
  #
503
534
  # @return [Types::CreateResourceSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
504
535
  #
@@ -569,7 +600,8 @@ module Aws::Route53RecoveryReadiness
569
600
  req.send_request(options)
570
601
  end
571
602
 
572
- # Deletes an existing Cell.
603
+ # Delete a cell. When successful, the response code is 204, with no
604
+ # response body.
573
605
  #
574
606
  # @option params [required, String] :cell_name
575
607
  #
@@ -590,7 +622,7 @@ module Aws::Route53RecoveryReadiness
590
622
  req.send_request(options)
591
623
  end
592
624
 
593
- # Delete cross account readiness authorization
625
+ # Deletes cross account readiness authorization.
594
626
  #
595
627
  # @option params [required, String] :cross_account_authorization
596
628
  #
@@ -611,7 +643,7 @@ module Aws::Route53RecoveryReadiness
611
643
  req.send_request(options)
612
644
  end
613
645
 
614
- # Deletes an existing Readiness Check.
646
+ # Deletes a readiness check.
615
647
  #
616
648
  # @option params [required, String] :readiness_check_name
617
649
  #
@@ -632,7 +664,7 @@ module Aws::Route53RecoveryReadiness
632
664
  req.send_request(options)
633
665
  end
634
666
 
635
- # Deletes an existing Recovery Group.
667
+ # Deletes a recovery group.
636
668
  #
637
669
  # @option params [required, String] :recovery_group_name
638
670
  #
@@ -653,7 +685,7 @@ module Aws::Route53RecoveryReadiness
653
685
  req.send_request(options)
654
686
  end
655
687
 
656
- # Deletes an existing Resource Set.
688
+ # Deletes a resource set.
657
689
  #
658
690
  # @option params [required, String] :resource_set_name
659
691
  #
@@ -674,8 +706,8 @@ module Aws::Route53RecoveryReadiness
674
706
  req.send_request(options)
675
707
  end
676
708
 
677
- # Returns a collection of recommendations to improve resilliance and
678
- # readiness check quality for a Recovery Group.
709
+ # Gets recommendations about architecture designs for improving
710
+ # resiliency for an application, based on a recovery group.
679
711
  #
680
712
  # @option params [Integer] :max_results
681
713
  #
@@ -713,7 +745,9 @@ module Aws::Route53RecoveryReadiness
713
745
  req.send_request(options)
714
746
  end
715
747
 
716
- # Returns information about a Cell.
748
+ # Gets information about a cell including cell name, cell Amazon
749
+ # Resource Name (ARN), ARNs of nested cells for this cell, and a list of
750
+ # those cell ARNs with their associated recovery group ARNs.
717
751
  #
718
752
  # @option params [required, String] :cell_name
719
753
  #
@@ -751,7 +785,8 @@ module Aws::Route53RecoveryReadiness
751
785
  req.send_request(options)
752
786
  end
753
787
 
754
- # Returns information about readiness of a Cell.
788
+ # Gets readiness for a cell. Aggregates the readiness of all the
789
+ # resources that are associated with the cell into a single value.
755
790
  #
756
791
  # @option params [required, String] :cell_name
757
792
  #
@@ -792,7 +827,7 @@ module Aws::Route53RecoveryReadiness
792
827
  req.send_request(options)
793
828
  end
794
829
 
795
- # Returns information about a ReadinessCheck.
830
+ # Gets details about a readiness check.
796
831
  #
797
832
  # @option params [required, String] :readiness_check_name
798
833
  #
@@ -826,8 +861,10 @@ module Aws::Route53RecoveryReadiness
826
861
  req.send_request(options)
827
862
  end
828
863
 
829
- # Returns detailed information about the status of an individual
830
- # resource within a Readiness Check's Resource Set.
864
+ # Gets individual readiness status for a readiness check. To see the
865
+ # overall readiness status for a recovery group, that considers the
866
+ # readiness status for all the readiness checks in the recovery group,
867
+ # use GetRecoveryGroupReadinessSummary.
831
868
  #
832
869
  # @option params [Integer] :max_results
833
870
  #
@@ -874,7 +911,10 @@ module Aws::Route53RecoveryReadiness
874
911
  req.send_request(options)
875
912
  end
876
913
 
877
- # Returns information about the status of a Readiness Check.
914
+ # Gets the readiness status for an individual readiness check. To see
915
+ # the overall readiness status for a recovery group, that considers the
916
+ # readiness status for all the readiness checks in a recovery group, use
917
+ # GetRecoveryGroupReadinessSummary.
878
918
  #
879
919
  # @option params [Integer] :max_results
880
920
  #
@@ -920,7 +960,8 @@ module Aws::Route53RecoveryReadiness
920
960
  req.send_request(options)
921
961
  end
922
962
 
923
- # Returns information about a Recovery Group.
963
+ # Gets details about a recovery group, including a list of the cells
964
+ # that are included in it.
924
965
  #
925
966
  # @option params [required, String] :recovery_group_name
926
967
  #
@@ -955,7 +996,9 @@ module Aws::Route53RecoveryReadiness
955
996
  req.send_request(options)
956
997
  end
957
998
 
958
- # Returns information about a Recovery Group.
999
+ # Displays a summary of information about a recovery group's readiness
1000
+ # status. Includes the readiness checks for resources in the recovery
1001
+ # group and the readiness status of each one.
959
1002
  #
960
1003
  # @option params [Integer] :max_results
961
1004
  #
@@ -996,7 +1039,8 @@ module Aws::Route53RecoveryReadiness
996
1039
  req.send_request(options)
997
1040
  end
998
1041
 
999
- # Returns information about a Resource Set.
1042
+ # Displays the details about a resource set, including a list of the
1043
+ # resources in the set.
1000
1044
  #
1001
1045
  # @option params [required, String] :resource_set_name
1002
1046
  #
@@ -1043,7 +1087,7 @@ module Aws::Route53RecoveryReadiness
1043
1087
  req.send_request(options)
1044
1088
  end
1045
1089
 
1046
- # Returns a collection of Cells.
1090
+ # Lists the cells for an account.
1047
1091
  #
1048
1092
  # @option params [Integer] :max_results
1049
1093
  #
@@ -1085,7 +1129,8 @@ module Aws::Route53RecoveryReadiness
1085
1129
  req.send_request(options)
1086
1130
  end
1087
1131
 
1088
- # Returns a collection of cross account readiness authorizations.
1132
+ # Lists the cross-account readiness authorizations that are in place for
1133
+ # an account.
1089
1134
  #
1090
1135
  # @option params [Integer] :max_results
1091
1136
  #
@@ -1120,7 +1165,7 @@ module Aws::Route53RecoveryReadiness
1120
1165
  req.send_request(options)
1121
1166
  end
1122
1167
 
1123
- # Returns a collection of Readiness Checks.
1168
+ # Lists the readiness checks for an account.
1124
1169
  #
1125
1170
  # @option params [Integer] :max_results
1126
1171
  #
@@ -1159,7 +1204,7 @@ module Aws::Route53RecoveryReadiness
1159
1204
  req.send_request(options)
1160
1205
  end
1161
1206
 
1162
- # Returns a collection of Recovery Groups.
1207
+ # Lists the recovery groups in an account.
1163
1208
  #
1164
1209
  # @option params [Integer] :max_results
1165
1210
  #
@@ -1199,7 +1244,7 @@ module Aws::Route53RecoveryReadiness
1199
1244
  req.send_request(options)
1200
1245
  end
1201
1246
 
1202
- # Returns a collection of Resource Sets.
1247
+ # Lists the resource sets in an account.
1203
1248
  #
1204
1249
  # @option params [Integer] :max_results
1205
1250
  #
@@ -1250,8 +1295,8 @@ module Aws::Route53RecoveryReadiness
1250
1295
  req.send_request(options)
1251
1296
  end
1252
1297
 
1253
- # Returns a collection of rules that are applied as part of Readiness
1254
- # Checks.
1298
+ # Lists all readiness rules, or lists the readiness rules for a specific
1299
+ # resource type.
1255
1300
  #
1256
1301
  # @option params [Integer] :max_results
1257
1302
  #
@@ -1291,7 +1336,7 @@ module Aws::Route53RecoveryReadiness
1291
1336
  req.send_request(options)
1292
1337
  end
1293
1338
 
1294
- # Returns a list of the tags assigned to the specified resource.
1339
+ # Lists the tags for a resource.
1295
1340
  #
1296
1341
  # @option params [required, String] :resource_arn
1297
1342
  #
@@ -1319,13 +1364,12 @@ module Aws::Route53RecoveryReadiness
1319
1364
  req.send_request(options)
1320
1365
  end
1321
1366
 
1322
- # Adds tags to the specified resource. You can specify one or more tags
1323
- # to add.
1367
+ # Adds a tag to a resource.
1324
1368
  #
1325
1369
  # @option params [required, String] :resource_arn
1326
1370
  #
1327
1371
  # @option params [required, Hash<String,String>] :tags
1328
- # A collection of tags associated with a resource
1372
+ # A collection of tags associated with a resource.
1329
1373
  #
1330
1374
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1331
1375
  #
@@ -1347,8 +1391,7 @@ module Aws::Route53RecoveryReadiness
1347
1391
  req.send_request(options)
1348
1392
  end
1349
1393
 
1350
- # Removes tags from the specified resource. You can specify one or more
1351
- # tags to remove.
1394
+ # Removes a tag from a resource.
1352
1395
  #
1353
1396
  # @option params [required, String] :resource_arn
1354
1397
  #
@@ -1372,7 +1415,8 @@ module Aws::Route53RecoveryReadiness
1372
1415
  req.send_request(options)
1373
1416
  end
1374
1417
 
1375
- # Updates an existing Cell.
1418
+ # Updates a cell to replace the list of nested cells with a new list of
1419
+ # nested cells.
1376
1420
  #
1377
1421
  # @option params [required, String] :cell_name
1378
1422
  #
@@ -1413,7 +1457,7 @@ module Aws::Route53RecoveryReadiness
1413
1457
  req.send_request(options)
1414
1458
  end
1415
1459
 
1416
- # Updates an exisiting Readiness Check.
1460
+ # Updates a readiness check.
1417
1461
  #
1418
1462
  # @option params [required, String] :readiness_check_name
1419
1463
  #
@@ -1450,7 +1494,7 @@ module Aws::Route53RecoveryReadiness
1450
1494
  req.send_request(options)
1451
1495
  end
1452
1496
 
1453
- # Updates an existing Recovery Group.
1497
+ # Updates a recovery group.
1454
1498
  #
1455
1499
  # @option params [required, Array<String>] :cells
1456
1500
  #
@@ -1488,7 +1532,7 @@ module Aws::Route53RecoveryReadiness
1488
1532
  req.send_request(options)
1489
1533
  end
1490
1534
 
1491
- # Updates an existing Resource Set.
1535
+ # Updates a resource set.
1492
1536
  #
1493
1537
  # @option params [required, String] :resource_set_name
1494
1538
  #
@@ -1575,7 +1619,7 @@ module Aws::Route53RecoveryReadiness
1575
1619
  params: params,
1576
1620
  config: config)
1577
1621
  context[:gem_name] = 'aws-sdk-route53recoveryreadiness'
1578
- context[:gem_version] = '1.4.0'
1622
+ context[:gem_version] = '1.8.0'
1579
1623
  Seahorse::Client::Request.new(handlers, context)
1580
1624
  end
1581
1625
 
@@ -21,26 +21,28 @@ module Aws::Route53RecoveryReadiness
21
21
  include Aws::Structure
22
22
  end
23
23
 
24
- # A Cell and its properties
24
+ # Information about a cell.
25
25
  #
26
26
  # @!attribute [rw] cell_arn
27
- # The arn for the Cell
27
+ # The Amazon Resource Name (ARN) for the cell.
28
28
  # @return [String]
29
29
  #
30
30
  # @!attribute [rw] cell_name
31
- # The name of the Cell
31
+ # The name of the cell.
32
32
  # @return [String]
33
33
  #
34
34
  # @!attribute [rw] cells
35
- # A list of Cell arns
35
+ # A list of cell ARNs.
36
36
  # @return [Array<String>]
37
37
  #
38
38
  # @!attribute [rw] parent_readiness_scopes
39
- # A list of Cell ARNs and/or RecoveryGroup ARNs
39
+ # The readiness scope for the cell, which can be a cell Amazon
40
+ # Resource Name (ARN) or a recovery group ARN. This is a list but
41
+ # currently can have only one element.
40
42
  # @return [Array<String>]
41
43
  #
42
44
  # @!attribute [rw] tags
43
- # A collection of tags associated with a resource
45
+ # Tags on the resources.
44
46
  # @return [Hash<String,String>]
45
47
  #
46
48
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/CellOutput AWS API Documentation
@@ -84,7 +86,7 @@ module Aws::Route53RecoveryReadiness
84
86
  # @return [Array<String>]
85
87
  #
86
88
  # @!attribute [rw] tags
87
- # A collection of tags associated with a resource
89
+ # A collection of tags associated with a resource.
88
90
  # @return [Hash<String,String>]
89
91
  #
90
92
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/CreateCellRequest AWS API Documentation
@@ -110,7 +112,7 @@ module Aws::Route53RecoveryReadiness
110
112
  # @return [Array<String>]
111
113
  #
112
114
  # @!attribute [rw] tags
113
- # A collection of tags associated with a resource
115
+ # A collection of tags associated with a resource.
114
116
  # @return [Hash<String,String>]
115
117
  #
116
118
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/CreateCellResponse AWS API Documentation
@@ -133,7 +135,7 @@ module Aws::Route53RecoveryReadiness
133
135
  # }
134
136
  #
135
137
  # @!attribute [rw] cross_account_authorization
136
- # A cross-account authorization, e.g. arn:aws:iam::123456789012:root
138
+ # CrossAccountAuthorization
137
139
  # @return [String]
138
140
  #
139
141
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/CreateCrossAccountAuthorizationRequest AWS API Documentation
@@ -145,7 +147,7 @@ module Aws::Route53RecoveryReadiness
145
147
  end
146
148
 
147
149
  # @!attribute [rw] cross_account_authorization
148
- # A cross-account authorization, e.g. arn:aws:iam::123456789012:root
150
+ # CrossAccountAuthorization
149
151
  # @return [String]
150
152
  #
151
153
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/CreateCrossAccountAuthorizationResponse AWS API Documentation
@@ -174,7 +176,7 @@ module Aws::Route53RecoveryReadiness
174
176
  # @return [String]
175
177
  #
176
178
  # @!attribute [rw] tags
177
- # A collection of tags associated with a resource
179
+ # A collection of tags associated with a resource.
178
180
  # @return [Hash<String,String>]
179
181
  #
180
182
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/CreateReadinessCheckRequest AWS API Documentation
@@ -197,7 +199,7 @@ module Aws::Route53RecoveryReadiness
197
199
  # @return [String]
198
200
  #
199
201
  # @!attribute [rw] tags
200
- # A collection of tags associated with a resource
202
+ # A collection of tags associated with a resource.
201
203
  # @return [Hash<String,String>]
202
204
  #
203
205
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/CreateReadinessCheckResponse AWS API Documentation
@@ -229,7 +231,7 @@ module Aws::Route53RecoveryReadiness
229
231
  # @return [String]
230
232
  #
231
233
  # @!attribute [rw] tags
232
- # A collection of tags associated with a resource
234
+ # A collection of tags associated with a resource.
233
235
  # @return [Hash<String,String>]
234
236
  #
235
237
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/CreateRecoveryGroupRequest AWS API Documentation
@@ -252,7 +254,7 @@ module Aws::Route53RecoveryReadiness
252
254
  # @return [String]
253
255
  #
254
256
  # @!attribute [rw] tags
255
- # A collection of tags associated with a resource
257
+ # A collection of tags associated with a resource.
256
258
  # @return [Hash<String,String>]
257
259
  #
258
260
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/CreateRecoveryGroupResponse AWS API Documentation
@@ -309,7 +311,7 @@ module Aws::Route53RecoveryReadiness
309
311
  # @return [Array<Types::Resource>]
310
312
  #
311
313
  # @!attribute [rw] tags
312
- # A collection of tags associated with a resource
314
+ # A collection of tags associated with a resource.
313
315
  # @return [Hash<String,String>]
314
316
  #
315
317
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/CreateResourceSetRequest AWS API Documentation
@@ -336,7 +338,7 @@ module Aws::Route53RecoveryReadiness
336
338
  # @return [Array<Types::Resource>]
337
339
  #
338
340
  # @!attribute [rw] tags
339
- # A collection of tags associated with a resource
341
+ # A collection of tags associated with a resource.
340
342
  # @return [Hash<String,String>]
341
343
  #
342
344
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/CreateResourceSetResponse AWS API Documentation
@@ -351,7 +353,8 @@ module Aws::Route53RecoveryReadiness
351
353
  include Aws::Structure
352
354
  end
353
355
 
354
- # A component for DNS/Routing Control Readiness Checks
356
+ # A component for DNS/routing control readiness checks and architecture
357
+ # checks.
355
358
  #
356
359
  # @note When making an API call, you may pass DNSTargetResource
357
360
  # data as a hash:
@@ -373,24 +376,26 @@ module Aws::Route53RecoveryReadiness
373
376
  # }
374
377
  #
375
378
  # @!attribute [rw] domain_name
376
- # The DNS Name that acts as ingress point to a portion of application
379
+ # The domain name that acts as an ingress point to a portion of the
380
+ # customer application.
377
381
  # @return [String]
378
382
  #
379
383
  # @!attribute [rw] hosted_zone_arn
380
- # The Hosted Zone ARN that contains the DNS record with the provided
381
- # name of target resource.
384
+ # The hosted zone Amazon Resource Name (ARN) that contains the DNS
385
+ # record with the provided name of the target resource.
382
386
  # @return [String]
383
387
  #
384
388
  # @!attribute [rw] record_set_id
385
- # The R53 Set Id to uniquely identify a record given a Name and a Type
389
+ # The Route 53 record set ID that uniquely identifies a DNS record,
390
+ # given a name and a type.
386
391
  # @return [String]
387
392
  #
388
393
  # @!attribute [rw] record_type
389
- # The Type of DNS Record of target resource
394
+ # The type of DNS record of the target resource.
390
395
  # @return [String]
391
396
  #
392
397
  # @!attribute [rw] target_resource
393
- # The target resource the R53 record points to
398
+ # The target resource of the DNS target resource.
394
399
  # @return [Types::TargetResource]
395
400
  #
396
401
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/DNSTargetResource AWS API Documentation
@@ -528,8 +533,8 @@ module Aws::Route53RecoveryReadiness
528
533
  end
529
534
 
530
535
  # @!attribute [rw] last_audit_timestamp
531
- # The time a Recovery Group was last assessed for recommendations in
532
- # UTC ISO-8601 format
536
+ # The time that a recovery group was last assessed for
537
+ # recommendations, in UTC ISO-8601 format.
533
538
  # @return [Time]
534
539
  #
535
540
  # @!attribute [rw] next_token
@@ -580,8 +585,7 @@ module Aws::Route53RecoveryReadiness
580
585
  # @return [String]
581
586
  #
582
587
  # @!attribute [rw] readiness
583
- # The readiness of an entire ReadinessCheck or an individual resource
584
- # ARN.
588
+ # The readiness status.
585
589
  # @return [String]
586
590
  #
587
591
  # @!attribute [rw] readiness_checks
@@ -628,7 +632,7 @@ module Aws::Route53RecoveryReadiness
628
632
  # @return [Array<String>]
629
633
  #
630
634
  # @!attribute [rw] tags
631
- # A collection of tags associated with a resource
635
+ # A collection of tags associated with a resource.
632
636
  # @return [Hash<String,String>]
633
637
  #
634
638
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/GetCellResponse AWS API Documentation
@@ -698,8 +702,7 @@ module Aws::Route53RecoveryReadiness
698
702
  # @return [String]
699
703
  #
700
704
  # @!attribute [rw] readiness
701
- # The readiness of an entire ReadinessCheck or an individual resource
702
- # ARN.
705
+ # The readiness status.
703
706
  # @return [String]
704
707
  #
705
708
  # @!attribute [rw] rules
@@ -725,7 +728,7 @@ module Aws::Route53RecoveryReadiness
725
728
  # @return [String]
726
729
  #
727
730
  # @!attribute [rw] tags
728
- # A collection of tags associated with a resource
731
+ # A collection of tags associated with a resource.
729
732
  # @return [Hash<String,String>]
730
733
  #
731
734
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/GetReadinessCheckResponse AWS API Documentation
@@ -774,8 +777,7 @@ module Aws::Route53RecoveryReadiness
774
777
  # @return [String]
775
778
  #
776
779
  # @!attribute [rw] readiness
777
- # The readiness of an entire ReadinessCheck or an individual resource
778
- # ARN.
780
+ # The readiness status.
779
781
  # @return [String]
780
782
  #
781
783
  # @!attribute [rw] resources
@@ -824,8 +826,7 @@ module Aws::Route53RecoveryReadiness
824
826
  # @return [String]
825
827
  #
826
828
  # @!attribute [rw] readiness
827
- # The readiness of an entire ReadinessCheck or an individual resource
828
- # ARN.
829
+ # The readiness status.
829
830
  # @return [String]
830
831
  #
831
832
  # @!attribute [rw] readiness_checks
@@ -869,7 +870,7 @@ module Aws::Route53RecoveryReadiness
869
870
  # @return [String]
870
871
  #
871
872
  # @!attribute [rw] tags
872
- # A collection of tags associated with a resource
873
+ # A collection of tags associated with a resource.
873
874
  # @return [Hash<String,String>]
874
875
  #
875
876
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/GetRecoveryGroupResponse AWS API Documentation
@@ -914,7 +915,7 @@ module Aws::Route53RecoveryReadiness
914
915
  # @return [Array<Types::Resource>]
915
916
  #
916
917
  # @!attribute [rw] tags
917
- # A collection of tags associated with a resource
918
+ # A collection of tags associated with a resource.
918
919
  # @return [Hash<String,String>]
919
920
  #
920
921
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/GetResourceSetResponse AWS API Documentation
@@ -1130,18 +1131,19 @@ module Aws::Route53RecoveryReadiness
1130
1131
  include Aws::Structure
1131
1132
  end
1132
1133
 
1133
- # A collection of rules used in a readiness check
1134
+ # Readiness rule information, including the resource type, rule ID, and
1135
+ # rule description.
1134
1136
  #
1135
1137
  # @!attribute [rw] resource_type
1136
- # The resource type the rule applies to.
1138
+ # The resource type that the readiness rule applies to.
1137
1139
  # @return [String]
1138
1140
  #
1139
1141
  # @!attribute [rw] rule_description
1140
- # A description of the rule
1142
+ # The description of a readiness rule.
1141
1143
  # @return [String]
1142
1144
  #
1143
1145
  # @!attribute [rw] rule_id
1144
- # The Rule's ID.
1146
+ # The ID for the readiness rule.
1145
1147
  # @return [String]
1146
1148
  #
1147
1149
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/ListRulesOutput AWS API Documentation
@@ -1216,7 +1218,7 @@ module Aws::Route53RecoveryReadiness
1216
1218
  end
1217
1219
 
1218
1220
  # @!attribute [rw] tags
1219
- # A collection of tags associated with a resource
1221
+ # A collection of tags associated with a resource.
1220
1222
  # @return [Hash<String,String>]
1221
1223
  #
1222
1224
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/ListTagsForResourcesResponse AWS API Documentation
@@ -1227,10 +1229,10 @@ module Aws::Route53RecoveryReadiness
1227
1229
  include Aws::Structure
1228
1230
  end
1229
1231
 
1230
- # Information relating to readiness check status
1232
+ # Information relating to readiness check status.
1231
1233
  #
1232
1234
  # @!attribute [rw] message_text
1233
- # The text of a readiness check message
1235
+ # The text of a readiness check message.
1234
1236
  # @return [String]
1235
1237
  #
1236
1238
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/Message AWS API Documentation
@@ -1241,7 +1243,8 @@ module Aws::Route53RecoveryReadiness
1241
1243
  include Aws::Structure
1242
1244
  end
1243
1245
 
1244
- # The NLB resource a DNS Target Resource points to
1246
+ # The Network Load Balancer resource that a DNS target resource points
1247
+ # to.
1245
1248
  #
1246
1249
  # @note When making an API call, you may pass NLBResource
1247
1250
  # data as a hash:
@@ -1251,7 +1254,7 @@ module Aws::Route53RecoveryReadiness
1251
1254
  # }
1252
1255
  #
1253
1256
  # @!attribute [rw] arn
1254
- # An NLB resource arn
1257
+ # The Network Load Balancer resource Amazon Resource Name (ARN).
1255
1258
  # @return [String]
1256
1259
  #
1257
1260
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/NLBResource AWS API Documentation
@@ -1262,7 +1265,7 @@ module Aws::Route53RecoveryReadiness
1262
1265
  include Aws::Structure
1263
1266
  end
1264
1267
 
1265
- # The Route 53 resource a DNS Target Resource record points to
1268
+ # The Route 53 resource that a DNS target resource record points to.
1266
1269
  #
1267
1270
  # @note When making an API call, you may pass R53ResourceRecord
1268
1271
  # data as a hash:
@@ -1273,11 +1276,11 @@ module Aws::Route53RecoveryReadiness
1273
1276
  # }
1274
1277
  #
1275
1278
  # @!attribute [rw] domain_name
1276
- # The DNS target name
1279
+ # The DNS target domain name.
1277
1280
  # @return [String]
1278
1281
  #
1279
1282
  # @!attribute [rw] record_set_id
1280
- # The Resource Record set id
1283
+ # The Route 53 Resource Record Set ID.
1281
1284
  # @return [String]
1282
1285
  #
1283
1286
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/R53ResourceRecord AWS API Documentation
@@ -1289,22 +1292,22 @@ module Aws::Route53RecoveryReadiness
1289
1292
  include Aws::Structure
1290
1293
  end
1291
1294
 
1292
- # A resource used for checking the readiness of a Resource Set
1295
+ # A readiness check.
1293
1296
  #
1294
1297
  # @!attribute [rw] readiness_check_arn
1295
- # Arn associated with ReadinessCheck
1298
+ # The Amazon Resource Name (ARN) associated with a readiness check.
1296
1299
  # @return [String]
1297
1300
  #
1298
1301
  # @!attribute [rw] readiness_check_name
1299
- # Name for a ReadinessCheck
1302
+ # Name of a readiness check.
1300
1303
  # @return [String]
1301
1304
  #
1302
1305
  # @!attribute [rw] resource_set
1303
- # Name of the ResourceSet to be checked
1306
+ # Name of the resource set to be checked.
1304
1307
  # @return [String]
1305
1308
  #
1306
1309
  # @!attribute [rw] tags
1307
- # A collection of tags associated with a resource
1310
+ # A collection of tags associated with a resource.
1308
1311
  # @return [Hash<String,String>]
1309
1312
  #
1310
1313
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/ReadinessCheckOutput AWS API Documentation
@@ -1318,16 +1321,15 @@ module Aws::Route53RecoveryReadiness
1318
1321
  include Aws::Structure
1319
1322
  end
1320
1323
 
1321
- # Summary of ReadinessCheck status, paginated in
1322
- # GetRecoveryGroupReadinessSummary and GetCellReadinessSummary
1324
+ # Summary of all readiness check statuses in a recovery group, paginated
1325
+ # in GetRecoveryGroupReadinessSummary and GetCellReadinessSummary.
1323
1326
  #
1324
1327
  # @!attribute [rw] readiness
1325
- # The readiness of this ReadinessCheck
1328
+ # The readiness status of this readiness check.
1326
1329
  # @return [String]
1327
1330
  #
1328
1331
  # @!attribute [rw] readiness_check_name
1329
- # The name of a ReadinessCheck which is part of the given
1330
- # RecoveryGroup or Cell
1332
+ # The name of a readiness check.
1331
1333
  # @return [String]
1332
1334
  #
1333
1335
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/ReadinessCheckSummary AWS API Documentation
@@ -1339,10 +1341,12 @@ module Aws::Route53RecoveryReadiness
1339
1341
  include Aws::Structure
1340
1342
  end
1341
1343
 
1342
- # Guidance for improving Recovery Group resilliancy
1344
+ # Recommendations that are provided to make an application more recovery
1345
+ # resilient.
1343
1346
  #
1344
1347
  # @!attribute [rw] recommendation_text
1345
- # Guidance text for recommendation
1348
+ # Text of the recommendations that are provided to make an application
1349
+ # more recovery resilient.
1346
1350
  # @return [String]
1347
1351
  #
1348
1352
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/Recommendation AWS API Documentation
@@ -1353,22 +1357,23 @@ module Aws::Route53RecoveryReadiness
1353
1357
  include Aws::Structure
1354
1358
  end
1355
1359
 
1356
- # A Recovery Group generally containing multiple Cells
1360
+ # A representation of the application, typically containing multiple
1361
+ # cells.
1357
1362
  #
1358
1363
  # @!attribute [rw] cells
1359
- # A list of Cell arns
1364
+ # A list of a cell's Amazon Resource Names (ARNs).
1360
1365
  # @return [Array<String>]
1361
1366
  #
1362
1367
  # @!attribute [rw] recovery_group_arn
1363
- # The arn for the RecoveryGroup
1368
+ # The Amazon Resource Name (ARN) for the recovery group.
1364
1369
  # @return [String]
1365
1370
  #
1366
1371
  # @!attribute [rw] recovery_group_name
1367
- # The name of the RecoveryGroup
1372
+ # The name of the recovery group.
1368
1373
  # @return [String]
1369
1374
  #
1370
1375
  # @!attribute [rw] tags
1371
- # A collection of tags associated with a resource
1376
+ # The tags associated with the recovery group.
1372
1377
  # @return [Hash<String,String>]
1373
1378
  #
1374
1379
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/RecoveryGroupOutput AWS API Documentation
@@ -1382,7 +1387,7 @@ module Aws::Route53RecoveryReadiness
1382
1387
  include Aws::Structure
1383
1388
  end
1384
1389
 
1385
- # The resource element of a ResourceSet
1390
+ # The resource element of a resource set.
1386
1391
  #
1387
1392
  # @note When making an API call, you may pass Resource
1388
1393
  # data as a hash:
@@ -1409,22 +1414,21 @@ module Aws::Route53RecoveryReadiness
1409
1414
  # }
1410
1415
  #
1411
1416
  # @!attribute [rw] component_id
1412
- # The component id of the resource, generated by the service when
1413
- # dnsTargetResource is used
1417
+ # The component identifier of the resource, generated when DNS target
1418
+ # resource is used.
1414
1419
  # @return [String]
1415
1420
  #
1416
1421
  # @!attribute [rw] dns_target_resource
1417
- # A component for DNS/Routing Control Readiness Checks
1422
+ # The DNS target resource.
1418
1423
  # @return [Types::DNSTargetResource]
1419
1424
  #
1420
1425
  # @!attribute [rw] readiness_scopes
1421
- # A list of RecoveryGroup ARNs and/or Cell ARNs that this resource is
1422
- # contained within.
1426
+ # A list of recovery group Amazon Resource Names (ARNs) and cell ARNs
1427
+ # that this resource is contained within.
1423
1428
  # @return [Array<String>]
1424
1429
  #
1425
1430
  # @!attribute [rw] resource_arn
1426
- # The ARN of the AWS resource, can be skipped if dnsTargetResource is
1427
- # used
1431
+ # The Amazon Resource Name (ARN) of the Amazon Web Services resource.
1428
1432
  # @return [String]
1429
1433
  #
1430
1434
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/Resource AWS API Documentation
@@ -1449,23 +1453,24 @@ module Aws::Route53RecoveryReadiness
1449
1453
  include Aws::Structure
1450
1454
  end
1451
1455
 
1452
- # Result with status for an individual resource.
1456
+ # The result of a successful Resource request, with status for an
1457
+ # individual resource.
1453
1458
  #
1454
1459
  # @!attribute [rw] component_id
1455
- # The component id of the resource
1460
+ # The component id of the resource.
1456
1461
  # @return [String]
1457
1462
  #
1458
1463
  # @!attribute [rw] last_checked_timestamp
1459
- # The time the resource was last checked for readiness, in ISO-8601
1460
- # format, UTC.
1464
+ # The time (UTC) that the resource was last checked for readiness, in
1465
+ # ISO-8601 format.
1461
1466
  # @return [Time]
1462
1467
  #
1463
1468
  # @!attribute [rw] readiness
1464
- # The readiness of the resource.
1469
+ # The readiness of a resource.
1465
1470
  # @return [String]
1466
1471
  #
1467
1472
  # @!attribute [rw] resource_arn
1468
- # The ARN of the resource
1473
+ # The Amazon Resource Name (ARN) of the resource.
1469
1474
  # @return [String]
1470
1475
  #
1471
1476
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/ResourceResult AWS API Documentation
@@ -1479,26 +1484,37 @@ module Aws::Route53RecoveryReadiness
1479
1484
  include Aws::Structure
1480
1485
  end
1481
1486
 
1482
- # A collection of resources of the same type
1487
+ # A collection of resources of the same type.
1483
1488
  #
1484
1489
  # @!attribute [rw] resource_set_arn
1485
- # The arn for the ResourceSet
1490
+ # The Amazon Resource Name (ARN) for the resource set.
1486
1491
  # @return [String]
1487
1492
  #
1488
1493
  # @!attribute [rw] resource_set_name
1489
- # The name of the ResourceSet
1494
+ # The name of the resource set.
1490
1495
  # @return [String]
1491
1496
  #
1492
1497
  # @!attribute [rw] resource_set_type
1493
- # AWS Resource Type of the resources in the ResourceSet
1498
+ # The resource type of the resources in the resource set. Enter one of
1499
+ # the following values for resource type:
1500
+ #
1501
+ # AWS::ApiGateway::Stage, AWS::ApiGatewayV2::Stage,
1502
+ # AWS::AutoScaling::AutoScalingGroup, AWS::CloudWatch::Alarm,
1503
+ # AWS::EC2::CustomerGateway, AWS::DynamoDB::Table, AWS::EC2::Volume,
1504
+ # AWS::ElasticLoadBalancing::LoadBalancer,
1505
+ # AWS::ElasticLoadBalancingV2::LoadBalancer, AWS::Lambda::Function,
1506
+ # AWS::MSK::Cluster, AWS::RDS::DBCluster, AWS::Route53::HealthCheck,
1507
+ # AWS::SQS::Queue, AWS::SNS::Topic, AWS::SNS::Subscription,
1508
+ # AWS::EC2::VPC, AWS::EC2::VPNConnection, AWS::EC2::VPNGateway,
1509
+ # AWS::Route53RecoveryReadiness::DNSTargetResource
1494
1510
  # @return [String]
1495
1511
  #
1496
1512
  # @!attribute [rw] resources
1497
- # A list of Resource objects
1513
+ # A list of resource objects.
1498
1514
  # @return [Array<Types::Resource>]
1499
1515
  #
1500
1516
  # @!attribute [rw] tags
1501
- # A collection of tags associated with a resource
1517
+ # A collection of tags associated with a resource.
1502
1518
  # @return [Hash<String,String>]
1503
1519
  #
1504
1520
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/ResourceSetOutput AWS API Documentation
@@ -1513,7 +1529,8 @@ module Aws::Route53RecoveryReadiness
1513
1529
  include Aws::Structure
1514
1530
  end
1515
1531
 
1516
- # Result with status for an individual rule..
1532
+ # The result of a successful Rule request, with status for an individual
1533
+ # rule.
1517
1534
  #
1518
1535
  # @!attribute [rw] last_checked_timestamp
1519
1536
  # The time the resource was last checked for readiness, in ISO-8601
@@ -1521,7 +1538,7 @@ module Aws::Route53RecoveryReadiness
1521
1538
  # @return [Time]
1522
1539
  #
1523
1540
  # @!attribute [rw] messages
1524
- # Details about the resource's readiness
1541
+ # Details about the resource's readiness.
1525
1542
  # @return [Array<Types::Message>]
1526
1543
  #
1527
1544
  # @!attribute [rw] readiness
@@ -1557,7 +1574,7 @@ module Aws::Route53RecoveryReadiness
1557
1574
  # @return [String]
1558
1575
  #
1559
1576
  # @!attribute [rw] tags
1560
- # A collection of tags associated with a resource
1577
+ # A collection of tags associated with a resource.
1561
1578
  # @return [Hash<String,String>]
1562
1579
  #
1563
1580
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/TagResourceRequest AWS API Documentation
@@ -1573,7 +1590,7 @@ module Aws::Route53RecoveryReadiness
1573
1590
  #
1574
1591
  class TagResourceResponse < Aws::EmptyStructure; end
1575
1592
 
1576
- # The target resource the R53 record points to
1593
+ # The target resource that the Route 53 record points to.
1577
1594
  #
1578
1595
  # @note When making an API call, you may pass TargetResource
1579
1596
  # data as a hash:
@@ -1589,11 +1606,11 @@ module Aws::Route53RecoveryReadiness
1589
1606
  # }
1590
1607
  #
1591
1608
  # @!attribute [rw] nlb_resource
1592
- # The NLB resource a DNS Target Resource points to
1609
+ # The Network Load Balancer Resource.
1593
1610
  # @return [Types::NLBResource]
1594
1611
  #
1595
1612
  # @!attribute [rw] r53_resource
1596
- # The Route 53 resource a DNS Target Resource record points to
1613
+ # The Route 53 resource.
1597
1614
  # @return [Types::R53ResourceRecord]
1598
1615
  #
1599
1616
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/TargetResource AWS API Documentation
@@ -1675,7 +1692,7 @@ module Aws::Route53RecoveryReadiness
1675
1692
  # @return [Array<String>]
1676
1693
  #
1677
1694
  # @!attribute [rw] tags
1678
- # A collection of tags associated with a resource
1695
+ # A collection of tags associated with a resource.
1679
1696
  # @return [Hash<String,String>]
1680
1697
  #
1681
1698
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/UpdateCellResponse AWS API Documentation
@@ -1723,7 +1740,7 @@ module Aws::Route53RecoveryReadiness
1723
1740
  # @return [String]
1724
1741
  #
1725
1742
  # @!attribute [rw] tags
1726
- # A collection of tags associated with a resource
1743
+ # A collection of tags associated with a resource.
1727
1744
  # @return [Hash<String,String>]
1728
1745
  #
1729
1746
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/UpdateReadinessCheckResponse AWS API Documentation
@@ -1770,7 +1787,7 @@ module Aws::Route53RecoveryReadiness
1770
1787
  # @return [String]
1771
1788
  #
1772
1789
  # @!attribute [rw] tags
1773
- # A collection of tags associated with a resource
1790
+ # A collection of tags associated with a resource.
1774
1791
  # @return [Hash<String,String>]
1775
1792
  #
1776
1793
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/UpdateRecoveryGroupResponse AWS API Documentation
@@ -1846,7 +1863,7 @@ module Aws::Route53RecoveryReadiness
1846
1863
  # @return [Array<Types::Resource>]
1847
1864
  #
1848
1865
  # @!attribute [rw] tags
1849
- # A collection of tags associated with a resource
1866
+ # A collection of tags associated with a resource.
1850
1867
  # @return [Hash<String,String>]
1851
1868
  #
1852
1869
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-recovery-readiness-2019-12-02/UpdateResourceSetResponse AWS API Documentation
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-route53recoveryreadiness/customizations'
48
48
  # @!group service
49
49
  module Aws::Route53RecoveryReadiness
50
50
 
51
- GEM_VERSION = '1.4.0'
51
+ GEM_VERSION = '1.8.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-route53recoveryreadiness
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-10-18 00:00:00.000000000 Z
11
+ date: 2022-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.121.2
22
+ version: 3.125.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.121.2
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement