aws-sdk-resiliencehub 1.44.0 → 1.46.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 87010d42b020473dd45b8f96a6b7de9fd8e21698fb2d5a4c9702f6d0e36c92cd
4
- data.tar.gz: 2e4baedf3dee170db1a470baad45adb1534b36ab236759452aadfb538be982ff
3
+ metadata.gz: c332edc270d26f74f7f4cbf2aa25432ebcdae043cf1e4d35b6ad20b612ea84d4
4
+ data.tar.gz: f137a66842c78beb7a08b9aeec652b321a129be838f21f0c126307915071ca17
5
5
  SHA512:
6
- metadata.gz: 1491bb4e8a68ff9c33daaa783bf310e51fe93093da2a1ffe8aca1bd6e392d506756bcf189fe1b363dcde7f7029717e5b3d512ab46f42c46aa105138112157f9d
7
- data.tar.gz: 431bd1cafde6b2665fbc35698258f2ce58192af248dacf39f6704fd432e10b06d7f3a165bff2cc7ea992c45a6bb12d073dc67c0237f9062b9db1824d8dea9f74
6
+ metadata.gz: 0ffc9e13145f762d685d9376d5692e71d44ac8f8f1b2aa94e843c76cb16aa0ccdad62d90b15e86fc55326179e2b0bff1d70940bf934efb33b60cd80a6472b37d
7
+ data.tar.gz: 3193396099f6cc63e0b7b3fcd24d52581b2bae314a534fc320c47e4d0030988562abe6c2859e244ae2dbdad9143fe4379ac858cc1b7c06dd37bdf765e22f5037
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.46.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.45.0 (2024-12-18)
10
+ ------------------
11
+
12
+ * Feature - AWS Resilience Hub now automatically detects already configured CloudWatch alarms and FIS experiments as part of the assessment process and returns the discovered resources in the corresponding list API responses. It also allows you to include or exclude test recommendations for an AppComponent.
13
+
4
14
  1.44.0 (2024-11-21)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.44.0
1
+ 1.46.0
@@ -257,11 +257,34 @@ module Aws::ResilienceHub
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -613,6 +636,7 @@ module Aws::ResilienceHub
613
636
  # app_arn: "Arn", # required
614
637
  # request_entries: [ # required
615
638
  # {
639
+ # app_component_id: "EntityName255",
616
640
  # entry_id: "String255", # required
617
641
  # exclude_reason: "AlreadyImplemented", # accepts AlreadyImplemented, NotRelevant, ComplexityOfImplementation
618
642
  # excluded: false, # required
@@ -633,6 +657,7 @@ module Aws::ResilienceHub
633
657
  # resp.failed_entries[0].entry_id #=> String
634
658
  # resp.failed_entries[0].error_message #=> String
635
659
  # resp.successful_entries #=> Array
660
+ # resp.successful_entries[0].app_component_id #=> String
636
661
  # resp.successful_entries[0].entry_id #=> String
637
662
  # resp.successful_entries[0].exclude_reason #=> String, one of "AlreadyImplemented", "NotRelevant", "ComplexityOfImplementation"
638
663
  # resp.successful_entries[0].excluded #=> Boolean
@@ -2424,8 +2449,12 @@ module Aws::ResilienceHub
2424
2449
  # resp.alarm_recommendations[0].description #=> String
2425
2450
  # resp.alarm_recommendations[0].items #=> Array
2426
2451
  # resp.alarm_recommendations[0].items[0].already_implemented #=> Boolean
2452
+ # resp.alarm_recommendations[0].items[0].discovered_alarm.alarm_arn #=> String
2453
+ # resp.alarm_recommendations[0].items[0].discovered_alarm.source #=> String
2427
2454
  # resp.alarm_recommendations[0].items[0].exclude_reason #=> String, one of "AlreadyImplemented", "NotRelevant", "ComplexityOfImplementation"
2428
2455
  # resp.alarm_recommendations[0].items[0].excluded #=> Boolean
2456
+ # resp.alarm_recommendations[0].items[0].latest_discovered_experiment.experiment_arn #=> String
2457
+ # resp.alarm_recommendations[0].items[0].latest_discovered_experiment.experiment_template_id #=> String
2429
2458
  # resp.alarm_recommendations[0].items[0].resource_id #=> String
2430
2459
  # resp.alarm_recommendations[0].items[0].target_account_id #=> String
2431
2460
  # resp.alarm_recommendations[0].items[0].target_region #=> String
@@ -3630,8 +3659,12 @@ module Aws::ResilienceHub
3630
3659
  # resp.sop_recommendations[0].description #=> String
3631
3660
  # resp.sop_recommendations[0].items #=> Array
3632
3661
  # resp.sop_recommendations[0].items[0].already_implemented #=> Boolean
3662
+ # resp.sop_recommendations[0].items[0].discovered_alarm.alarm_arn #=> String
3663
+ # resp.sop_recommendations[0].items[0].discovered_alarm.source #=> String
3633
3664
  # resp.sop_recommendations[0].items[0].exclude_reason #=> String, one of "AlreadyImplemented", "NotRelevant", "ComplexityOfImplementation"
3634
3665
  # resp.sop_recommendations[0].items[0].excluded #=> Boolean
3666
+ # resp.sop_recommendations[0].items[0].latest_discovered_experiment.experiment_arn #=> String
3667
+ # resp.sop_recommendations[0].items[0].latest_discovered_experiment.experiment_template_id #=> String
3635
3668
  # resp.sop_recommendations[0].items[0].resource_id #=> String
3636
3669
  # resp.sop_recommendations[0].items[0].target_account_id #=> String
3637
3670
  # resp.sop_recommendations[0].items[0].target_region #=> String
@@ -3774,6 +3807,7 @@ module Aws::ResilienceHub
3774
3807
  #
3775
3808
  # resp.next_token #=> String
3776
3809
  # resp.test_recommendations #=> Array
3810
+ # resp.test_recommendations[0].app_component_id #=> String
3777
3811
  # resp.test_recommendations[0].app_component_name #=> String
3778
3812
  # resp.test_recommendations[0].depends_on_alarms #=> Array
3779
3813
  # resp.test_recommendations[0].depends_on_alarms[0] #=> String
@@ -3781,8 +3815,12 @@ module Aws::ResilienceHub
3781
3815
  # resp.test_recommendations[0].intent #=> String
3782
3816
  # resp.test_recommendations[0].items #=> Array
3783
3817
  # resp.test_recommendations[0].items[0].already_implemented #=> Boolean
3818
+ # resp.test_recommendations[0].items[0].discovered_alarm.alarm_arn #=> String
3819
+ # resp.test_recommendations[0].items[0].discovered_alarm.source #=> String
3784
3820
  # resp.test_recommendations[0].items[0].exclude_reason #=> String, one of "AlreadyImplemented", "NotRelevant", "ComplexityOfImplementation"
3785
3821
  # resp.test_recommendations[0].items[0].excluded #=> Boolean
3822
+ # resp.test_recommendations[0].items[0].latest_discovered_experiment.experiment_arn #=> String
3823
+ # resp.test_recommendations[0].items[0].latest_discovered_experiment.experiment_template_id #=> String
3786
3824
  # resp.test_recommendations[0].items[0].resource_id #=> String
3787
3825
  # resp.test_recommendations[0].items[0].target_account_id #=> String
3788
3826
  # resp.test_recommendations[0].items[0].target_region #=> String
@@ -5104,7 +5142,7 @@ module Aws::ResilienceHub
5104
5142
  tracer: tracer
5105
5143
  )
5106
5144
  context[:gem_name] = 'aws-sdk-resiliencehub'
5107
- context[:gem_version] = '1.44.0'
5145
+ context[:gem_version] = '1.46.0'
5108
5146
  Seahorse::Client::Request.new(handlers, context)
5109
5147
  end
5110
5148
 
@@ -23,6 +23,7 @@ module Aws::ResilienceHub
23
23
  AddDraftAppVersionResourceMappingsResponse = Shapes::StructureShape.new(name: 'AddDraftAppVersionResourceMappingsResponse')
24
24
  AdditionalInfoMap = Shapes::MapShape.new(name: 'AdditionalInfoMap')
25
25
  AdditionalInfoValueList = Shapes::ListShape.new(name: 'AdditionalInfoValueList')
26
+ Alarm = Shapes::StructureShape.new(name: 'Alarm')
26
27
  AlarmRecommendation = Shapes::StructureShape.new(name: 'AlarmRecommendation')
27
28
  AlarmRecommendationList = Shapes::ListShape.new(name: 'AlarmRecommendationList')
28
29
  AlarmReferenceIdList = Shapes::ListShape.new(name: 'AlarmReferenceIdList')
@@ -156,6 +157,7 @@ module Aws::ResilienceHub
156
157
  EventSubscriptionList = Shapes::ListShape.new(name: 'EventSubscriptionList')
157
158
  EventType = Shapes::StringShape.new(name: 'EventType')
158
159
  ExcludeRecommendationReason = Shapes::StringShape.new(name: 'ExcludeRecommendationReason')
160
+ Experiment = Shapes::StructureShape.new(name: 'Experiment')
159
161
  FailedGroupingRecommendationEntries = Shapes::ListShape.new(name: 'FailedGroupingRecommendationEntries')
160
162
  FailedGroupingRecommendationEntry = Shapes::StructureShape.new(name: 'FailedGroupingRecommendationEntry')
161
163
  FailurePolicy = Shapes::StructureShape.new(name: 'FailurePolicy')
@@ -373,6 +375,10 @@ module Aws::ResilienceHub
373
375
 
374
376
  AdditionalInfoValueList.member = Shapes::ShapeRef.new(shape: String1024)
375
377
 
378
+ Alarm.add_member(:alarm_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "alarmArn"))
379
+ Alarm.add_member(:source, Shapes::ShapeRef.new(shape: String255, location_name: "source"))
380
+ Alarm.struct_class = Types::Alarm
381
+
376
382
  AlarmRecommendation.add_member(:app_component_name, Shapes::ShapeRef.new(shape: EntityId, deprecated: true, location_name: "appComponentName", metadata: {"deprecatedMessage"=>"An alarm recommendation can be attached to multiple Application Components, hence this property will be replaced by the new property 'appComponentNames'."}))
377
383
  AlarmRecommendation.add_member(:app_component_names, Shapes::ShapeRef.new(shape: AppComponentNameList, location_name: "appComponentNames"))
378
384
  AlarmRecommendation.add_member(:description, Shapes::ShapeRef.new(shape: EntityDescription, location_name: "description"))
@@ -537,6 +543,7 @@ module Aws::ResilienceHub
537
543
 
538
544
  BatchUpdateRecommendationStatusSuccessfulEntries.member = Shapes::ShapeRef.new(shape: BatchUpdateRecommendationStatusSuccessfulEntry)
539
545
 
546
+ BatchUpdateRecommendationStatusSuccessfulEntry.add_member(:app_component_id, Shapes::ShapeRef.new(shape: EntityName255, location_name: "appComponentId"))
540
547
  BatchUpdateRecommendationStatusSuccessfulEntry.add_member(:entry_id, Shapes::ShapeRef.new(shape: String255, required: true, location_name: "entryId"))
541
548
  BatchUpdateRecommendationStatusSuccessfulEntry.add_member(:exclude_reason, Shapes::ShapeRef.new(shape: ExcludeRecommendationReason, location_name: "excludeReason"))
542
549
  BatchUpdateRecommendationStatusSuccessfulEntry.add_member(:excluded, Shapes::ShapeRef.new(shape: BooleanOptional, required: true, location_name: "excluded"))
@@ -878,6 +885,10 @@ module Aws::ResilienceHub
878
885
 
879
886
  EventSubscriptionList.member = Shapes::ShapeRef.new(shape: EventSubscription)
880
887
 
888
+ Experiment.add_member(:experiment_arn, Shapes::ShapeRef.new(shape: String255, location_name: "experimentArn"))
889
+ Experiment.add_member(:experiment_template_id, Shapes::ShapeRef.new(shape: String255, location_name: "experimentTemplateId"))
890
+ Experiment.struct_class = Types::Experiment
891
+
881
892
  FailedGroupingRecommendationEntries.member = Shapes::ShapeRef.new(shape: FailedGroupingRecommendationEntry)
882
893
 
883
894
  FailedGroupingRecommendationEntry.add_member(:error_message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "errorMessage"))
@@ -1218,8 +1229,10 @@ module Aws::ResilienceHub
1218
1229
  RecommendationIdList.member = Shapes::ShapeRef.new(shape: Uuid)
1219
1230
 
1220
1231
  RecommendationItem.add_member(:already_implemented, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "alreadyImplemented"))
1232
+ RecommendationItem.add_member(:discovered_alarm, Shapes::ShapeRef.new(shape: Alarm, location_name: "discoveredAlarm"))
1221
1233
  RecommendationItem.add_member(:exclude_reason, Shapes::ShapeRef.new(shape: ExcludeRecommendationReason, location_name: "excludeReason"))
1222
1234
  RecommendationItem.add_member(:excluded, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "excluded"))
1235
+ RecommendationItem.add_member(:latest_discovered_experiment, Shapes::ShapeRef.new(shape: Experiment, location_name: "latestDiscoveredExperiment"))
1223
1236
  RecommendationItem.add_member(:resource_id, Shapes::ShapeRef.new(shape: String500, location_name: "resourceId"))
1224
1237
  RecommendationItem.add_member(:target_account_id, Shapes::ShapeRef.new(shape: CustomerId, location_name: "targetAccountId"))
1225
1238
  RecommendationItem.add_member(:target_region, Shapes::ShapeRef.new(shape: AwsRegion, location_name: "targetRegion"))
@@ -1431,6 +1444,7 @@ module Aws::ResilienceHub
1431
1444
 
1432
1445
  TerraformSourceList.member = Shapes::ShapeRef.new(shape: TerraformSource)
1433
1446
 
1447
+ TestRecommendation.add_member(:app_component_id, Shapes::ShapeRef.new(shape: EntityName255, location_name: "appComponentId"))
1434
1448
  TestRecommendation.add_member(:app_component_name, Shapes::ShapeRef.new(shape: EntityId, location_name: "appComponentName"))
1435
1449
  TestRecommendation.add_member(:depends_on_alarms, Shapes::ShapeRef.new(shape: AlarmReferenceIdList, location_name: "dependsOnAlarms"))
1436
1450
  TestRecommendation.add_member(:description, Shapes::ShapeRef.new(shape: String500, location_name: "description"))
@@ -1522,6 +1536,7 @@ module Aws::ResilienceHub
1522
1536
 
1523
1537
  UpdateRecommendationStatusRequestEntries.member = Shapes::ShapeRef.new(shape: UpdateRecommendationStatusRequestEntry)
1524
1538
 
1539
+ UpdateRecommendationStatusRequestEntry.add_member(:app_component_id, Shapes::ShapeRef.new(shape: EntityName255, location_name: "appComponentId"))
1525
1540
  UpdateRecommendationStatusRequestEntry.add_member(:entry_id, Shapes::ShapeRef.new(shape: String255, required: true, location_name: "entryId"))
1526
1541
  UpdateRecommendationStatusRequestEntry.add_member(:exclude_reason, Shapes::ShapeRef.new(shape: ExcludeRecommendationReason, location_name: "excludeReason"))
1527
1542
  UpdateRecommendationStatusRequestEntry.add_member(:excluded, Shapes::ShapeRef.new(shape: BooleanOptional, required: true, location_name: "excluded"))
@@ -155,6 +155,29 @@ module Aws::ResilienceHub
155
155
  include Aws::Structure
156
156
  end
157
157
 
158
+ # Indicates the Amazon CloudWatch alarm detected while running an
159
+ # assessment.
160
+ #
161
+ # @!attribute [rw] alarm_arn
162
+ # Amazon Resource Name (ARN) of the Amazon CloudWatch alarm.
163
+ # @return [String]
164
+ #
165
+ # @!attribute [rw] source
166
+ # Indicates the source of the Amazon CloudWatch alarm. That is, it
167
+ # indicates if the alarm was created using Resilience Hub
168
+ # recommendation (`AwsResilienceHub`), or if you had created the alarm
169
+ # in Amazon CloudWatch (`Customer`).
170
+ # @return [String]
171
+ #
172
+ # @see http://docs.aws.amazon.com/goto/WebAPI/resiliencehub-2020-04-30/Alarm AWS API Documentation
173
+ #
174
+ class Alarm < Struct.new(
175
+ :alarm_arn,
176
+ :source)
177
+ SENSITIVE = []
178
+ include Aws::Structure
179
+ end
180
+
158
181
  # Defines a recommendation for a CloudWatch alarm.
159
182
  #
160
183
  # @!attribute [rw] app_component_name
@@ -846,7 +869,7 @@ module Aws::ResilienceHub
846
869
  #
847
870
  # @!attribute [rw] app_components
848
871
  # Indicates the Application Components (AppComponents) that were
849
- # assessed as part of the assessnent and are associated with the
872
+ # assessed as part of the assessment and are associated with the
850
873
  # identified risk and recommendation.
851
874
  #
852
875
  # <note markdown="1"> This property is available only in the US East (N. Virginia) Region.
@@ -1005,6 +1028,10 @@ module Aws::ResilienceHub
1005
1028
  # List of operational recommendations that were successfully included or
1006
1029
  # excluded.
1007
1030
  #
1031
+ # @!attribute [rw] app_component_id
1032
+ # Indicates the identifier of an AppComponent.
1033
+ # @return [String]
1034
+ #
1008
1035
  # @!attribute [rw] entry_id
1009
1036
  # An identifier for an entry in this batch that is used to communicate
1010
1037
  # the result.
@@ -1035,6 +1062,7 @@ module Aws::ResilienceHub
1035
1062
  # @see http://docs.aws.amazon.com/goto/WebAPI/resiliencehub-2020-04-30/BatchUpdateRecommendationStatusSuccessfulEntry AWS API Documentation
1036
1063
  #
1037
1064
  class BatchUpdateRecommendationStatusSuccessfulEntry < Struct.new(
1065
+ :app_component_id,
1038
1066
  :entry_id,
1039
1067
  :exclude_reason,
1040
1068
  :excluded,
@@ -3149,6 +3177,25 @@ module Aws::ResilienceHub
3149
3177
  include Aws::Structure
3150
3178
  end
3151
3179
 
3180
+ # Indicates the FIS experiment detected while running an assessment.
3181
+ #
3182
+ # @!attribute [rw] experiment_arn
3183
+ # Amazon Resource Name (ARN) of the FIS experiment.
3184
+ # @return [String]
3185
+ #
3186
+ # @!attribute [rw] experiment_template_id
3187
+ # Identifier of the FIS experiment template.
3188
+ # @return [String]
3189
+ #
3190
+ # @see http://docs.aws.amazon.com/goto/WebAPI/resiliencehub-2020-04-30/Experiment AWS API Documentation
3191
+ #
3192
+ class Experiment < Struct.new(
3193
+ :experiment_arn,
3194
+ :experiment_template_id)
3195
+ SENSITIVE = []
3196
+ include Aws::Structure
3197
+ end
3198
+
3152
3199
  # Indicates the accepted grouping recommendation whose implementation
3153
3200
  # failed.
3154
3201
  #
@@ -4724,6 +4771,11 @@ module Aws::ResilienceHub
4724
4771
  # Principle to obtain a read-only access to your application resources
4725
4772
  # while running an assessment.
4726
4773
  #
4774
+ # If your IAM role includes a path, you must include the path in the
4775
+ # `invokerRoleName` parameter. For example, if your IAM role's ARN is
4776
+ # `arn:aws:iam:123456789012:role/my-path/role-name`, you should pass
4777
+ # `my-path/role-name`.
4778
+ #
4727
4779
  # <note markdown="1"> * You must have `iam:passRole` permission for this role while
4728
4780
  # creating or updating the application.
4729
4781
  #
@@ -5298,6 +5350,11 @@ module Aws::ResilienceHub
5298
5350
  # Specifies if the recommendation has already been implemented.
5299
5351
  # @return [Boolean]
5300
5352
  #
5353
+ # @!attribute [rw] discovered_alarm
5354
+ # Indicates the previously implemented Amazon CloudWatch alarm
5355
+ # discovered by Resilience Hub.
5356
+ # @return [Types::Alarm]
5357
+ #
5301
5358
  # @!attribute [rw] exclude_reason
5302
5359
  # Indicates the reason for excluding an operational recommendation.
5303
5360
  # @return [String]
@@ -5306,6 +5363,11 @@ module Aws::ResilienceHub
5306
5363
  # Indicates if an operational recommendation item is excluded.
5307
5364
  # @return [Boolean]
5308
5365
  #
5366
+ # @!attribute [rw] latest_discovered_experiment
5367
+ # Indicates the experiment created in FIS that was discovered by
5368
+ # Resilience Hub, which matches the recommendation.
5369
+ # @return [Types::Experiment]
5370
+ #
5309
5371
  # @!attribute [rw] resource_id
5310
5372
  # Identifier of the resource.
5311
5373
  # @return [String]
@@ -5322,8 +5384,10 @@ module Aws::ResilienceHub
5322
5384
  #
5323
5385
  class RecommendationItem < Struct.new(
5324
5386
  :already_implemented,
5387
+ :discovered_alarm,
5325
5388
  :exclude_reason,
5326
5389
  :excluded,
5390
+ :latest_discovered_experiment,
5327
5391
  :resource_id,
5328
5392
  :target_account_id,
5329
5393
  :target_region)
@@ -6317,6 +6381,10 @@ module Aws::ResilienceHub
6317
6381
 
6318
6382
  # Defines a test recommendation.
6319
6383
  #
6384
+ # @!attribute [rw] app_component_id
6385
+ # Indicates the identifier of the AppComponent.
6386
+ # @return [String]
6387
+ #
6320
6388
  # @!attribute [rw] app_component_name
6321
6389
  # Name of the Application Component.
6322
6390
  # @return [String]
@@ -6369,6 +6437,7 @@ module Aws::ResilienceHub
6369
6437
  # @see http://docs.aws.amazon.com/goto/WebAPI/resiliencehub-2020-04-30/TestRecommendation AWS API Documentation
6370
6438
  #
6371
6439
  class TestRecommendation < Struct.new(
6440
+ :app_component_id,
6372
6441
  :app_component_name,
6373
6442
  :depends_on_alarms,
6374
6443
  :description,
@@ -6824,6 +6893,10 @@ module Aws::ResilienceHub
6824
6893
  # Defines the operational recommendation item that is to be included or
6825
6894
  # excluded.
6826
6895
  #
6896
+ # @!attribute [rw] app_component_id
6897
+ # Indicates the identifier of the AppComponent.
6898
+ # @return [String]
6899
+ #
6827
6900
  # @!attribute [rw] entry_id
6828
6901
  # An identifier for an entry in this batch that is used to communicate
6829
6902
  # the result.
@@ -6854,6 +6927,7 @@ module Aws::ResilienceHub
6854
6927
  # @see http://docs.aws.amazon.com/goto/WebAPI/resiliencehub-2020-04-30/UpdateRecommendationStatusRequestEntry AWS API Documentation
6855
6928
  #
6856
6929
  class UpdateRecommendationStatusRequestEntry < Struct.new(
6930
+ :app_component_id,
6857
6931
  :entry_id,
6858
6932
  :exclude_reason,
6859
6933
  :excluded,
@@ -54,7 +54,7 @@ module Aws::ResilienceHub
54
54
  autoload :EndpointProvider, 'aws-sdk-resiliencehub/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-resiliencehub/endpoints'
56
56
 
57
- GEM_VERSION = '1.44.0'
57
+ GEM_VERSION = '1.46.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
@@ -131,6 +133,7 @@ module Aws
131
133
  app_arn: ::String,
132
134
  request_entries: Array[
133
135
  {
136
+ app_component_id: ::String?,
134
137
  entry_id: ::String,
135
138
  exclude_reason: ("AlreadyImplemented" | "NotRelevant" | "ComplexityOfImplementation")?,
136
139
  excluded: bool,
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/types.rbs CHANGED
@@ -43,6 +43,12 @@ module Aws::ResilienceHub
43
43
  SENSITIVE: []
44
44
  end
45
45
 
46
+ class Alarm
47
+ attr_accessor alarm_arn: ::String
48
+ attr_accessor source: ::String
49
+ SENSITIVE: []
50
+ end
51
+
46
52
  class AlarmRecommendation
47
53
  attr_accessor app_component_name: ::String
48
54
  attr_accessor app_component_names: ::Array[::String]
@@ -207,6 +213,7 @@ module Aws::ResilienceHub
207
213
  end
208
214
 
209
215
  class BatchUpdateRecommendationStatusSuccessfulEntry
216
+ attr_accessor app_component_id: ::String
210
217
  attr_accessor entry_id: ::String
211
218
  attr_accessor exclude_reason: ("AlreadyImplemented" | "NotRelevant" | "ComplexityOfImplementation")
212
219
  attr_accessor excluded: bool
@@ -637,6 +644,12 @@ module Aws::ResilienceHub
637
644
  SENSITIVE: []
638
645
  end
639
646
 
647
+ class Experiment
648
+ attr_accessor experiment_arn: ::String
649
+ attr_accessor experiment_template_id: ::String
650
+ SENSITIVE: []
651
+ end
652
+
640
653
  class FailedGroupingRecommendationEntry
641
654
  attr_accessor error_message: ::String
642
655
  attr_accessor grouping_recommendation_id: ::String
@@ -1081,8 +1094,10 @@ module Aws::ResilienceHub
1081
1094
 
1082
1095
  class RecommendationItem
1083
1096
  attr_accessor already_implemented: bool
1097
+ attr_accessor discovered_alarm: Types::Alarm
1084
1098
  attr_accessor exclude_reason: ("AlreadyImplemented" | "NotRelevant" | "ComplexityOfImplementation")
1085
1099
  attr_accessor excluded: bool
1100
+ attr_accessor latest_discovered_experiment: Types::Experiment
1086
1101
  attr_accessor resource_id: ::String
1087
1102
  attr_accessor target_account_id: ::String
1088
1103
  attr_accessor target_region: ::String
@@ -1315,6 +1330,7 @@ module Aws::ResilienceHub
1315
1330
  end
1316
1331
 
1317
1332
  class TestRecommendation
1333
+ attr_accessor app_component_id: ::String
1318
1334
  attr_accessor app_component_name: ::String
1319
1335
  attr_accessor depends_on_alarms: ::Array[::String]
1320
1336
  attr_accessor description: ::String
@@ -1427,6 +1443,7 @@ module Aws::ResilienceHub
1427
1443
  end
1428
1444
 
1429
1445
  class UpdateRecommendationStatusRequestEntry
1446
+ attr_accessor app_component_id: ::String
1430
1447
  attr_accessor entry_id: ::String
1431
1448
  attr_accessor exclude_reason: ("AlreadyImplemented" | "NotRelevant" | "ComplexityOfImplementation")
1432
1449
  attr_accessor excluded: bool
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-resiliencehub
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.44.0
4
+ version: 1.46.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: 2024-11-21 00:00:00.000000000 Z
11
+ date: 2025-01-15 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.210.0
22
+ version: 3.216.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.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement