aws-sdk-synthetics 1.86.0 → 1.87.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: 78b60937482c6e7fc8dff904d90150e842c29c4addc46e83fdb4746bb977a18e
4
- data.tar.gz: e98947fa21ca13a76eb698b4da24e771630823c9b8bddcf4b5a755592ce9b1e4
3
+ metadata.gz: 82fa8321583b31b4bef961e19f368fe4900143d2459271c638ab2b9069aaaaad
4
+ data.tar.gz: 8df54f31178a990ee5b0c10bd2c1c06f5ac39b8f1e5e1e39aeec0f73fb82936c
5
5
  SHA512:
6
- metadata.gz: 4d093f9ef2a8ad4be7b1ac3f1c1e8cc00c836277fd231d966c6d3408aa6a45cf1ac7a0e2de0b4bab2f4a694d1d72744cf4ad808ac77d48fa481da43aae5656f8
7
- data.tar.gz: 6194cab3c07e1527cb63d38f32171614927c03bb34fe1a9e22275dc300b03e3a2ad550d28747d53868a3a3bafa84b5c0a8b6c2f259c75086895ba5a790f7dbb9
6
+ metadata.gz: fb78118243cce6ce040e96eaaa607509d4722c536028b7ba85fd26f8c728b572960c6a2fc5032768a635bb9e9bd629691f1ac8c80afaf9f196a67849ca14ec92
7
+ data.tar.gz: b9da350fdd06617e8f261453ba9bbf823f02981e27ce16aaaea52b6ca835c7218d31fe36cd9803db3e7c614d688e1f95bb025ea1b1efd42bb328533603dae785
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.87.0 (2026-07-09)
5
+ ------------------
6
+
7
+ * Feature - CloudWatch Synthetics adds support for customer managed KMS keys for canary environment variables. Customers can now encrypt their canary's Lambda function environment variables at rest using their own AWS KMS key, providing additional control over data protection.
8
+
4
9
  1.86.0 (2026-06-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.86.0
1
+ 1.87.0
@@ -689,6 +689,12 @@ module Aws::Synthetics
689
689
  # including the encryption-at-rest settings for artifacts that the
690
690
  # canary uploads to Amazon S3.
691
691
  #
692
+ # @option params [String] :kms_key_arn
693
+ # The Amazon Resource Name (ARN) of the customer-managed AWS Key
694
+ # Management Service (AWS KMS) key used to encrypt the canary's AWS
695
+ # Lambda function environment variables at rest. If you don't specify a
696
+ # value, the service uses an AWS-managed key.
697
+ #
692
698
  # @return [Types::CreateCanaryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
693
699
  #
694
700
  # * {Types::CreateCanaryResponse#canary #canary} => Types::Canary
@@ -752,6 +758,7 @@ module Aws::Synthetics
752
758
  # security_group_ids: ["SecurityGroupId"],
753
759
  # ipv_6_allowed_for_dual_stack: false,
754
760
  # },
761
+ # kms_key_arn: "KmsKeyArn",
755
762
  # },
756
763
  # ],
757
764
  # tags: {
@@ -763,6 +770,7 @@ module Aws::Synthetics
763
770
  # kms_key_arn: "KmsKeyArn",
764
771
  # },
765
772
  # },
773
+ # kms_key_arn: "KmsKeyArn",
766
774
  # })
767
775
  #
768
776
  # @example Response structure
@@ -841,6 +849,7 @@ module Aws::Synthetics
841
849
  # resp.canary.tags["TagKey"] #=> String
842
850
  # resp.canary.artifact_config.s3_encryption.encryption_mode #=> String, one of "SSE_S3", "SSE_KMS"
843
851
  # resp.canary.artifact_config.s3_encryption.kms_key_arn #=> String
852
+ # resp.canary.kms_key_arn #=> String
844
853
  # resp.canary.dry_run_config.dry_run_id #=> String
845
854
  # resp.canary.dry_run_config.last_dry_run_execution_status #=> String
846
855
  #
@@ -1161,6 +1170,7 @@ module Aws::Synthetics
1161
1170
  # resp.canaries[0].tags["TagKey"] #=> String
1162
1171
  # resp.canaries[0].artifact_config.s3_encryption.encryption_mode #=> String, one of "SSE_S3", "SSE_KMS"
1163
1172
  # resp.canaries[0].artifact_config.s3_encryption.kms_key_arn #=> String
1173
+ # resp.canaries[0].kms_key_arn #=> String
1164
1174
  # resp.canaries[0].dry_run_config.dry_run_id #=> String
1165
1175
  # resp.canaries[0].dry_run_config.last_dry_run_execution_status #=> String
1166
1176
  # resp.next_token #=> String
@@ -1450,6 +1460,7 @@ module Aws::Synthetics
1450
1460
  # resp.canary.tags["TagKey"] #=> String
1451
1461
  # resp.canary.artifact_config.s3_encryption.encryption_mode #=> String, one of "SSE_S3", "SSE_KMS"
1452
1462
  # resp.canary.artifact_config.s3_encryption.kms_key_arn #=> String
1463
+ # resp.canary.kms_key_arn #=> String
1453
1464
  # resp.canary.dry_run_config.dry_run_id #=> String
1454
1465
  # resp.canary.dry_run_config.last_dry_run_execution_status #=> String
1455
1466
  #
@@ -2355,6 +2366,14 @@ module Aws::Synthetics
2355
2366
  # remove. All replicas can be removed in a single API call and you
2356
2367
  # cannot remove the primary location.
2357
2368
  #
2369
+ # @option params [String] :kms_key_arn
2370
+ # The Amazon Resource Name (ARN) of the customer-managed AWS Key
2371
+ # Management Service (AWS KMS) key used to encrypt the canary's AWS
2372
+ # Lambda function environment variables at rest. If you don't specify a
2373
+ # value, the service uses an AWS-managed key. If you omit this
2374
+ # parameter, the service retains the existing value. To revert to the
2375
+ # AWS-managed key, set this parameter to an empty string.
2376
+ #
2358
2377
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2359
2378
  #
2360
2379
  # @example Request syntax with placeholder values
@@ -2444,9 +2463,11 @@ module Aws::Synthetics
2444
2463
  # security_group_ids: ["SecurityGroupId"],
2445
2464
  # ipv_6_allowed_for_dual_stack: false,
2446
2465
  # },
2466
+ # kms_key_arn: "KmsKeyArn",
2447
2467
  # },
2448
2468
  # ],
2449
2469
  # remove_replica_locations: ["Location"],
2470
+ # kms_key_arn: "KmsKeyArn",
2450
2471
  # })
2451
2472
  #
2452
2473
  # @see http://docs.aws.amazon.com/goto/WebAPI/synthetics-2017-10-11/UpdateCanary AWS API Documentation
@@ -2476,7 +2497,7 @@ module Aws::Synthetics
2476
2497
  tracer: tracer
2477
2498
  )
2478
2499
  context[:gem_name] = 'aws-sdk-synthetics'
2479
- context[:gem_version] = '1.86.0'
2500
+ context[:gem_version] = '1.87.0'
2480
2501
  Seahorse::Client::Request.new(handlers, context)
2481
2502
  end
2482
2503
 
@@ -187,6 +187,7 @@ module Aws::Synthetics
187
187
 
188
188
  AddReplicaLocationInput.add_member(:location, Shapes::ShapeRef.new(shape: Location, required: true, location_name: "Location"))
189
189
  AddReplicaLocationInput.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfigInput, location_name: "VpcConfig"))
190
+ AddReplicaLocationInput.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "KmsKeyArn"))
190
191
  AddReplicaLocationInput.struct_class = Types::AddReplicaLocationInput
191
192
 
192
193
  AddReplicaLocations.member = Shapes::ShapeRef.new(shape: AddReplicaLocationInput)
@@ -247,6 +248,7 @@ module Aws::Synthetics
247
248
  Canary.add_member(:multi_location_config, Shapes::ShapeRef.new(shape: MultiLocationConfig, location_name: "MultiLocationConfig"))
248
249
  Canary.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
249
250
  Canary.add_member(:artifact_config, Shapes::ShapeRef.new(shape: ArtifactConfigOutput, location_name: "ArtifactConfig"))
251
+ Canary.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "KmsKeyArn"))
250
252
  Canary.add_member(:dry_run_config, Shapes::ShapeRef.new(shape: DryRunConfigOutput, location_name: "DryRunConfig"))
251
253
  Canary.struct_class = Types::Canary
252
254
 
@@ -350,6 +352,7 @@ module Aws::Synthetics
350
352
  CreateCanaryRequest.add_member(:add_replica_locations, Shapes::ShapeRef.new(shape: AddReplicaLocations, location_name: "AddReplicaLocations"))
351
353
  CreateCanaryRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
352
354
  CreateCanaryRequest.add_member(:artifact_config, Shapes::ShapeRef.new(shape: ArtifactConfigInput, location_name: "ArtifactConfig"))
355
+ CreateCanaryRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "KmsKeyArn"))
353
356
  CreateCanaryRequest.struct_class = Types::CreateCanaryRequest
354
357
 
355
358
  CreateCanaryResponse.add_member(:canary, Shapes::ShapeRef.new(shape: Canary, location_name: "Canary"))
@@ -633,6 +636,7 @@ module Aws::Synthetics
633
636
  UpdateCanaryRequest.add_member(:browser_configs, Shapes::ShapeRef.new(shape: BrowserConfigs, location_name: "BrowserConfigs"))
634
637
  UpdateCanaryRequest.add_member(:add_replica_locations, Shapes::ShapeRef.new(shape: AddReplicaLocations, location_name: "AddReplicaLocations"))
635
638
  UpdateCanaryRequest.add_member(:remove_replica_locations, Shapes::ShapeRef.new(shape: RemoveReplicaLocations, location_name: "RemoveReplicaLocations"))
639
+ UpdateCanaryRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "KmsKeyArn"))
636
640
  UpdateCanaryRequest.struct_class = Types::UpdateCanaryRequest
637
641
 
638
642
  UpdateCanaryResponse.struct_class = Types::UpdateCanaryResponse
@@ -37,11 +37,19 @@ module Aws::Synthetics
37
37
  # connectivity.
38
38
  # @return [Types::VpcConfigInput]
39
39
  #
40
+ # @!attribute [rw] kms_key_arn
41
+ # The Amazon Resource Name (ARN) of the customer-managed AWS Key
42
+ # Management Service (AWS KMS) key used to encrypt the canary
43
+ # replica's AWS Lambda function environment variables at rest. If you
44
+ # don't specify a value, the service uses an AWS-managed key.
45
+ # @return [String]
46
+ #
40
47
  # @see http://docs.aws.amazon.com/goto/WebAPI/synthetics-2017-10-11/AddReplicaLocationInput AWS API Documentation
41
48
  #
42
49
  class AddReplicaLocationInput < Struct.new(
43
50
  :location,
44
- :vpc_config)
51
+ :vpc_config,
52
+ :kms_key_arn)
45
53
  SENSITIVE = []
46
54
  include Aws::Structure
47
55
  end
@@ -344,6 +352,13 @@ module Aws::Synthetics
344
352
  # canary uploads to Amazon S3.
345
353
  # @return [Types::ArtifactConfigOutput]
346
354
  #
355
+ # @!attribute [rw] kms_key_arn
356
+ # The Amazon Resource Name (ARN) of the customer-managed AWS Key
357
+ # Management Service (AWS KMS) key used to encrypt the canary's AWS
358
+ # Lambda function environment variables at rest. If you don't specify
359
+ # a value, the service uses an AWS-managed key.
360
+ # @return [String]
361
+ #
347
362
  # @!attribute [rw] dry_run_config
348
363
  # Returns the dry run configurations for a canary.
349
364
  # @return [Types::DryRunConfigOutput]
@@ -373,6 +388,7 @@ module Aws::Synthetics
373
388
  :multi_location_config,
374
389
  :tags,
375
390
  :artifact_config,
391
+ :kms_key_arn,
376
392
  :dry_run_config)
377
393
  SENSITIVE = []
378
394
  include Aws::Structure
@@ -1154,6 +1170,13 @@ module Aws::Synthetics
1154
1170
  # canary uploads to Amazon S3.
1155
1171
  # @return [Types::ArtifactConfigInput]
1156
1172
  #
1173
+ # @!attribute [rw] kms_key_arn
1174
+ # The Amazon Resource Name (ARN) of the customer-managed AWS Key
1175
+ # Management Service (AWS KMS) key used to encrypt the canary's AWS
1176
+ # Lambda function environment variables at rest. If you don't specify
1177
+ # a value, the service uses an AWS-managed key.
1178
+ # @return [String]
1179
+ #
1157
1180
  # @see http://docs.aws.amazon.com/goto/WebAPI/synthetics-2017-10-11/CreateCanaryRequest AWS API Documentation
1158
1181
  #
1159
1182
  class CreateCanaryRequest < Struct.new(
@@ -1172,7 +1195,8 @@ module Aws::Synthetics
1172
1195
  :browser_configs,
1173
1196
  :add_replica_locations,
1174
1197
  :tags,
1175
- :artifact_config)
1198
+ :artifact_config,
1199
+ :kms_key_arn)
1176
1200
  SENSITIVE = []
1177
1201
  include Aws::Structure
1178
1202
  end
@@ -2704,6 +2728,15 @@ module Aws::Synthetics
2704
2728
  # cannot remove the primary location.
2705
2729
  # @return [Array<String>]
2706
2730
  #
2731
+ # @!attribute [rw] kms_key_arn
2732
+ # The Amazon Resource Name (ARN) of the customer-managed AWS Key
2733
+ # Management Service (AWS KMS) key used to encrypt the canary's AWS
2734
+ # Lambda function environment variables at rest. If you don't specify
2735
+ # a value, the service uses an AWS-managed key. If you omit this
2736
+ # parameter, the service retains the existing value. To revert to the
2737
+ # AWS-managed key, set this parameter to an empty string.
2738
+ # @return [String]
2739
+ #
2707
2740
  # @see http://docs.aws.amazon.com/goto/WebAPI/synthetics-2017-10-11/UpdateCanaryRequest AWS API Documentation
2708
2741
  #
2709
2742
  class UpdateCanaryRequest < Struct.new(
@@ -2724,7 +2757,8 @@ module Aws::Synthetics
2724
2757
  :visual_references,
2725
2758
  :browser_configs,
2726
2759
  :add_replica_locations,
2727
- :remove_replica_locations)
2760
+ :remove_replica_locations,
2761
+ :kms_key_arn)
2728
2762
  SENSITIVE = []
2729
2763
  include Aws::Structure
2730
2764
  end
@@ -54,7 +54,7 @@ module Aws::Synthetics
54
54
  autoload :EndpointProvider, 'aws-sdk-synthetics/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-synthetics/endpoints'
56
56
 
57
- GEM_VERSION = '1.86.0'
57
+ GEM_VERSION = '1.87.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -136,7 +136,8 @@ module Aws
136
136
  encryption_mode: ("SSE_S3" | "SSE_KMS")?,
137
137
  kms_key_arn: ::String?
138
138
  }?
139
- }
139
+ },
140
+ ?kms_key_arn: ::String
140
141
  ) -> _CreateCanaryResponseSuccess
141
142
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCanaryResponseSuccess
142
143
 
@@ -436,7 +437,8 @@ module Aws
436
437
  ?add_replica_locations: Array[
437
438
  Params::add_replica_location_input
438
439
  ],
439
- ?remove_replica_locations: Array[::String]
440
+ ?remove_replica_locations: Array[::String],
441
+ ?kms_key_arn: ::String
440
442
  ) -> _UpdateCanaryResponseSuccess
441
443
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCanaryResponseSuccess
442
444
  end
data/sig/params.rbs CHANGED
@@ -29,7 +29,8 @@ module Aws
29
29
  subnet_ids: Array[::String]?,
30
30
  security_group_ids: Array[::String]?,
31
31
  ipv_6_allowed_for_dual_stack: bool?
32
- }?
32
+ }?,
33
+ kms_key_arn: ::String?
33
34
  }
34
35
 
35
36
  type visual_reference_input = {
data/sig/types.rbs CHANGED
@@ -16,6 +16,7 @@ module Aws::Synthetics
16
16
  class AddReplicaLocationInput
17
17
  attr_accessor location: ::String
18
18
  attr_accessor vpc_config: Types::VpcConfigInput
19
+ attr_accessor kms_key_arn: ::String
19
20
  SENSITIVE: []
20
21
  end
21
22
 
@@ -77,6 +78,7 @@ module Aws::Synthetics
77
78
  attr_accessor multi_location_config: Types::MultiLocationConfig
78
79
  attr_accessor tags: ::Hash[::String, ::String]
79
80
  attr_accessor artifact_config: Types::ArtifactConfigOutput
81
+ attr_accessor kms_key_arn: ::String
80
82
  attr_accessor dry_run_config: Types::DryRunConfigOutput
81
83
  SENSITIVE: []
82
84
  end
@@ -208,6 +210,7 @@ module Aws::Synthetics
208
210
  attr_accessor add_replica_locations: ::Array[Types::AddReplicaLocationInput]
209
211
  attr_accessor tags: ::Hash[::String, ::String]
210
212
  attr_accessor artifact_config: Types::ArtifactConfigInput
213
+ attr_accessor kms_key_arn: ::String
211
214
  SENSITIVE: []
212
215
  end
213
216
 
@@ -570,6 +573,7 @@ module Aws::Synthetics
570
573
  attr_accessor browser_configs: ::Array[Types::BrowserConfig]
571
574
  attr_accessor add_replica_locations: ::Array[Types::AddReplicaLocationInput]
572
575
  attr_accessor remove_replica_locations: ::Array[::String]
576
+ attr_accessor kms_key_arn: ::String
573
577
  SENSITIVE: []
574
578
  end
575
579
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-synthetics
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.86.0
4
+ version: 1.87.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.248.0
21
+ version: 3.254.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.248.0
31
+ version: 3.254.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement