aws-sdk-synthetics 1.56.0 → 1.58.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: 6dff25d9cfc5d60c22b9baa9679458405ad7c3d7cbd25f1a5a32a0ce23ad6399
4
- data.tar.gz: 70defe569d9c94483043e041c01a9eee94ae95eaffeec9f341d71fc98bc7178b
3
+ metadata.gz: 145a221fc386e819d2d349b97ca9858f7daf4aec6d1c26268c7318524bd1e591
4
+ data.tar.gz: 772bf756ab83a3a88b62ea6fe8b5a4a7b9c606084305f955da70684c72c204cf
5
5
  SHA512:
6
- metadata.gz: c9084bfa5c2a96455ca7a7cb21f17aa69e1ffe39af50c5eba22214f9a927bd476ee7d42009b6cc2ae1b639526ff5e2f201af7edb18c10b09613d8f7cb329d311
7
- data.tar.gz: 70714a5af5a7fc0bf7a5e261ebf68889f7d47227462a1201eaf985ee049702a70743bb0f9ff07ee52135a8fe0107a00866aa2b36c934898dd8630e4b624d1b5b
6
+ metadata.gz: c185d0a8fa5c035bb9c84b2c0b2d443d0eb5d033b83fc151b159a39066ae0826edf49cb6562e5a95ce9e70c70e616f3d8e82d109f523875ed0d8e0a5f4542347
7
+ data.tar.gz: 80d03318d12d19e1eae1c2b67dbfbe4a7f7275a5415c061a9d9a50fcac0eb01ac78478e08706630b8401d0508d423d035c1f95e7e66a5a3cb9fb475689b7cec6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.58.0 (2024-12-17)
5
+ ------------------
6
+
7
+ * Feature - Add support to toggle outbound IPv6 traffic on canaries connected to dualstack subnets. This behavior can be controlled via the new Ipv6AllowedForDualStack parameter of the VpcConfig input object in CreateCanary and UpdateCanary APIs.
8
+
9
+ 1.57.0 (2024-11-07)
10
+ ------------------
11
+
12
+ * Feature - Add support to toggle if a canary will automatically delete provisioned canary resources such as Lambda functions and layers when a canary is deleted. This behavior can be controlled via the new ProvisionedResourceCleanup property exposed in the CreateCanary and UpdateCanary APIs.
13
+
4
14
  1.56.0 (2024-11-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.56.0
1
+ 1.58.0
@@ -596,6 +596,20 @@ module Aws::Synthetics
596
596
  # If you specify this parameter and don't specify any tags in the
597
597
  # `Tags` parameter, the canary creation fails.
598
598
  #
599
+ # @option params [String] :provisioned_resource_cleanup
600
+ # Specifies whether to also delete the Lambda functions and layers used
601
+ # by this canary when the canary is deleted. If you omit this parameter,
602
+ # the default of `AUTOMATIC` is used, which means that the Lambda
603
+ # functions and layers will be deleted when the canary is deleted.
604
+ #
605
+ # If the value of this parameter is `OFF`, then the value of the
606
+ # `DeleteLambda` parameter of the [DeleteCanary][1] operation determines
607
+ # whether the Lambda functions and layers will be deleted.
608
+ #
609
+ #
610
+ #
611
+ # [1]: https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_DeleteCanary.html
612
+ #
599
613
  # @option params [Hash<String,String>] :tags
600
614
  # A list of key-value pairs to associate with the canary. You can
601
615
  # associate as many as 50 tags with a canary.
@@ -648,8 +662,10 @@ module Aws::Synthetics
648
662
  # vpc_config: {
649
663
  # subnet_ids: ["SubnetId"],
650
664
  # security_group_ids: ["SecurityGroupId"],
665
+ # ipv_6_allowed_for_dual_stack: false,
651
666
  # },
652
667
  # resources_to_replicate_tags: ["lambda-function"], # accepts lambda-function
668
+ # provisioned_resource_cleanup: "AUTOMATIC", # accepts AUTOMATIC, OFF
653
669
  # tags: {
654
670
  # "TagKey" => "TagValue",
655
671
  # },
@@ -690,11 +706,13 @@ module Aws::Synthetics
690
706
  # resp.canary.vpc_config.subnet_ids[0] #=> String
691
707
  # resp.canary.vpc_config.security_group_ids #=> Array
692
708
  # resp.canary.vpc_config.security_group_ids[0] #=> String
709
+ # resp.canary.vpc_config.ipv_6_allowed_for_dual_stack #=> Boolean
693
710
  # resp.canary.visual_reference.base_screenshots #=> Array
694
711
  # resp.canary.visual_reference.base_screenshots[0].screenshot_name #=> String
695
712
  # resp.canary.visual_reference.base_screenshots[0].ignore_coordinates #=> Array
696
713
  # resp.canary.visual_reference.base_screenshots[0].ignore_coordinates[0] #=> String
697
714
  # resp.canary.visual_reference.base_canary_run_id #=> String
715
+ # resp.canary.provisioned_resource_cleanup #=> String, one of "AUTOMATIC", "OFF"
698
716
  # resp.canary.tags #=> Hash
699
717
  # resp.canary.tags["TagKey"] #=> String
700
718
  # resp.canary.artifact_config.s3_encryption.encryption_mode #=> String, one of "SSE_S3", "SSE_KMS"
@@ -782,12 +800,14 @@ module Aws::Synthetics
782
800
 
783
801
  # Permanently deletes the specified canary.
784
802
  #
785
- # If you specify `DeleteLambda` to `true`, CloudWatch Synthetics also
786
- # deletes the Lambda functions and layers that are used by the canary.
803
+ # If the canary's `ProvisionedResourceCleanup` field is set to
804
+ # `AUTOMATIC` or you specify `DeleteLambda` in this operation as `true`,
805
+ # CloudWatch Synthetics also deletes the Lambda functions and layers
806
+ # that are used by the canary.
787
807
  #
788
808
  # Other resources used and created by the canary are not automatically
789
- # deleted. After you delete a canary that you do not intend to use
790
- # again, you should also delete the following:
809
+ # deleted. After you delete a canary, you should also delete the
810
+ # following:
791
811
  #
792
812
  # * The CloudWatch alarms created for this canary. These alarms have a
793
813
  # name of
@@ -820,7 +840,12 @@ module Aws::Synthetics
820
840
  #
821
841
  # @option params [Boolean] :delete_lambda
822
842
  # Specifies whether to also delete the Lambda functions and layers used
823
- # by this canary. The default is false.
843
+ # by this canary. The default is `false`.
844
+ #
845
+ # Your setting for this parameter is used only if the canary doesn't
846
+ # have `AUTOMATIC` for its `ProvisionedResourceCleanup` field. If that
847
+ # field is set to `AUTOMATIC`, then the Lambda functions and layers will
848
+ # be deleted when this canary is deleted.
824
849
  #
825
850
  # Type: Boolean
826
851
  #
@@ -963,11 +988,13 @@ module Aws::Synthetics
963
988
  # resp.canaries[0].vpc_config.subnet_ids[0] #=> String
964
989
  # resp.canaries[0].vpc_config.security_group_ids #=> Array
965
990
  # resp.canaries[0].vpc_config.security_group_ids[0] #=> String
991
+ # resp.canaries[0].vpc_config.ipv_6_allowed_for_dual_stack #=> Boolean
966
992
  # resp.canaries[0].visual_reference.base_screenshots #=> Array
967
993
  # resp.canaries[0].visual_reference.base_screenshots[0].screenshot_name #=> String
968
994
  # resp.canaries[0].visual_reference.base_screenshots[0].ignore_coordinates #=> Array
969
995
  # resp.canaries[0].visual_reference.base_screenshots[0].ignore_coordinates[0] #=> String
970
996
  # resp.canaries[0].visual_reference.base_canary_run_id #=> String
997
+ # resp.canaries[0].provisioned_resource_cleanup #=> String, one of "AUTOMATIC", "OFF"
971
998
  # resp.canaries[0].tags #=> Hash
972
999
  # resp.canaries[0].tags["TagKey"] #=> String
973
1000
  # resp.canaries[0].artifact_config.s3_encryption.encryption_mode #=> String, one of "SSE_S3", "SSE_KMS"
@@ -1196,11 +1223,13 @@ module Aws::Synthetics
1196
1223
  # resp.canary.vpc_config.subnet_ids[0] #=> String
1197
1224
  # resp.canary.vpc_config.security_group_ids #=> Array
1198
1225
  # resp.canary.vpc_config.security_group_ids[0] #=> String
1226
+ # resp.canary.vpc_config.ipv_6_allowed_for_dual_stack #=> Boolean
1199
1227
  # resp.canary.visual_reference.base_screenshots #=> Array
1200
1228
  # resp.canary.visual_reference.base_screenshots[0].screenshot_name #=> String
1201
1229
  # resp.canary.visual_reference.base_screenshots[0].ignore_coordinates #=> Array
1202
1230
  # resp.canary.visual_reference.base_screenshots[0].ignore_coordinates[0] #=> String
1203
1231
  # resp.canary.visual_reference.base_canary_run_id #=> String
1232
+ # resp.canary.provisioned_resource_cleanup #=> String, one of "AUTOMATIC", "OFF"
1204
1233
  # resp.canary.tags #=> Hash
1205
1234
  # resp.canary.tags["TagKey"] #=> String
1206
1235
  # resp.canary.artifact_config.s3_encryption.encryption_mode #=> String, one of "SSE_S3", "SSE_KMS"
@@ -1732,6 +1761,18 @@ module Aws::Synthetics
1732
1761
  # including the encryption-at-rest settings for artifacts that the
1733
1762
  # canary uploads to Amazon S3.
1734
1763
  #
1764
+ # @option params [String] :provisioned_resource_cleanup
1765
+ # Specifies whether to also delete the Lambda functions and layers used
1766
+ # by this canary when the canary is deleted.
1767
+ #
1768
+ # If the value of this parameter is `OFF`, then the value of the
1769
+ # `DeleteLambda` parameter of the [DeleteCanary][1] operation determines
1770
+ # whether the Lambda functions and layers will be deleted.
1771
+ #
1772
+ #
1773
+ #
1774
+ # [1]: https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_DeleteCanary.html
1775
+ #
1735
1776
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1736
1777
  #
1737
1778
  # @example Request syntax with placeholder values
@@ -1764,6 +1805,7 @@ module Aws::Synthetics
1764
1805
  # vpc_config: {
1765
1806
  # subnet_ids: ["SubnetId"],
1766
1807
  # security_group_ids: ["SecurityGroupId"],
1808
+ # ipv_6_allowed_for_dual_stack: false,
1767
1809
  # },
1768
1810
  # visual_reference: {
1769
1811
  # base_screenshots: [
@@ -1781,6 +1823,7 @@ module Aws::Synthetics
1781
1823
  # kms_key_arn: "KmsKeyArn",
1782
1824
  # },
1783
1825
  # },
1826
+ # provisioned_resource_cleanup: "AUTOMATIC", # accepts AUTOMATIC, OFF
1784
1827
  # })
1785
1828
  #
1786
1829
  # @see http://docs.aws.amazon.com/goto/WebAPI/synthetics-2017-10-11/UpdateCanary AWS API Documentation
@@ -1810,7 +1853,7 @@ module Aws::Synthetics
1810
1853
  tracer: tracer
1811
1854
  )
1812
1855
  context[:gem_name] = 'aws-sdk-synthetics'
1813
- context[:gem_version] = '1.56.0'
1856
+ context[:gem_version] = '1.58.0'
1814
1857
  Seahorse::Client::Request.new(handlers, context)
1815
1858
  end
1816
1859
 
@@ -105,6 +105,7 @@ module Aws::Synthetics
105
105
  NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
106
106
  NullableBoolean = Shapes::BooleanShape.new(name: 'NullableBoolean')
107
107
  PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
108
+ ProvisionedResourceCleanupSetting = Shapes::StringShape.new(name: 'ProvisionedResourceCleanupSetting')
108
109
  RequestEntityTooLargeException = Shapes::StructureShape.new(name: 'RequestEntityTooLargeException')
109
110
  ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
110
111
  ResourceList = Shapes::ListShape.new(name: 'ResourceList')
@@ -189,6 +190,7 @@ module Aws::Synthetics
189
190
  Canary.add_member(:runtime_version, Shapes::ShapeRef.new(shape: String, location_name: "RuntimeVersion"))
190
191
  Canary.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfigOutput, location_name: "VpcConfig"))
191
192
  Canary.add_member(:visual_reference, Shapes::ShapeRef.new(shape: VisualReferenceOutput, location_name: "VisualReference"))
193
+ Canary.add_member(:provisioned_resource_cleanup, Shapes::ShapeRef.new(shape: ProvisionedResourceCleanupSetting, location_name: "ProvisionedResourceCleanup"))
192
194
  Canary.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
193
195
  Canary.add_member(:artifact_config, Shapes::ShapeRef.new(shape: ArtifactConfigOutput, location_name: "ArtifactConfig"))
194
196
  Canary.struct_class = Types::Canary
@@ -270,6 +272,7 @@ module Aws::Synthetics
270
272
  CreateCanaryRequest.add_member(:runtime_version, Shapes::ShapeRef.new(shape: String, required: true, location_name: "RuntimeVersion"))
271
273
  CreateCanaryRequest.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfigInput, location_name: "VpcConfig"))
272
274
  CreateCanaryRequest.add_member(:resources_to_replicate_tags, Shapes::ShapeRef.new(shape: ResourceList, location_name: "ResourcesToReplicateTags"))
275
+ CreateCanaryRequest.add_member(:provisioned_resource_cleanup, Shapes::ShapeRef.new(shape: ProvisionedResourceCleanupSetting, location_name: "ProvisionedResourceCleanup"))
273
276
  CreateCanaryRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
274
277
  CreateCanaryRequest.add_member(:artifact_config, Shapes::ShapeRef.new(shape: ArtifactConfigInput, location_name: "ArtifactConfig"))
275
278
  CreateCanaryRequest.struct_class = Types::CreateCanaryRequest
@@ -482,6 +485,7 @@ module Aws::Synthetics
482
485
  UpdateCanaryRequest.add_member(:visual_reference, Shapes::ShapeRef.new(shape: VisualReferenceInput, location_name: "VisualReference"))
483
486
  UpdateCanaryRequest.add_member(:artifact_s3_location, Shapes::ShapeRef.new(shape: String, location_name: "ArtifactS3Location"))
484
487
  UpdateCanaryRequest.add_member(:artifact_config, Shapes::ShapeRef.new(shape: ArtifactConfigInput, location_name: "ArtifactConfig"))
488
+ UpdateCanaryRequest.add_member(:provisioned_resource_cleanup, Shapes::ShapeRef.new(shape: ProvisionedResourceCleanupSetting, location_name: "ProvisionedResourceCleanup"))
485
489
  UpdateCanaryRequest.struct_class = Types::UpdateCanaryRequest
486
490
 
487
491
  UpdateCanaryResponse.struct_class = Types::UpdateCanaryResponse
@@ -499,11 +503,13 @@ module Aws::Synthetics
499
503
 
500
504
  VpcConfigInput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, location_name: "SubnetIds"))
501
505
  VpcConfigInput.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "SecurityGroupIds"))
506
+ VpcConfigInput.add_member(:ipv_6_allowed_for_dual_stack, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "Ipv6AllowedForDualStack"))
502
507
  VpcConfigInput.struct_class = Types::VpcConfigInput
503
508
 
504
509
  VpcConfigOutput.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "VpcId"))
505
510
  VpcConfigOutput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, location_name: "SubnetIds"))
506
511
  VpcConfigOutput.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "SecurityGroupIds"))
512
+ VpcConfigOutput.add_member(:ipv_6_allowed_for_dual_stack, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "Ipv6AllowedForDualStack"))
507
513
  VpcConfigOutput.struct_class = Types::VpcConfigOutput
508
514
 
509
515
 
@@ -209,6 +209,21 @@ module Aws::Synthetics
209
209
  # screen to ignore during the visual monitoring comparison.
210
210
  # @return [Types::VisualReferenceOutput]
211
211
  #
212
+ # @!attribute [rw] provisioned_resource_cleanup
213
+ # Specifies whether to also delete the Lambda functions and layers
214
+ # used by this canary when the canary is deleted. If it is
215
+ # `AUTOMATIC`, the Lambda functions and layers will be deleted when
216
+ # the canary is deleted.
217
+ #
218
+ # If the value of this parameter is `OFF`, then the value of the
219
+ # `DeleteLambda` parameter of the [DeleteCanary][1] operation
220
+ # determines whether the Lambda functions and layers will be deleted.
221
+ #
222
+ #
223
+ #
224
+ # [1]: https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_DeleteCanary.html
225
+ # @return [String]
226
+ #
212
227
  # @!attribute [rw] tags
213
228
  # The list of key-value pairs that are associated with the canary.
214
229
  # @return [Hash<String,String>]
@@ -237,6 +252,7 @@ module Aws::Synthetics
237
252
  :runtime_version,
238
253
  :vpc_config,
239
254
  :visual_reference,
255
+ :provisioned_resource_cleanup,
240
256
  :tags,
241
257
  :artifact_config)
242
258
  SENSITIVE = []
@@ -787,6 +803,22 @@ module Aws::Synthetics
787
803
  # `Tags` parameter, the canary creation fails.
788
804
  # @return [Array<String>]
789
805
  #
806
+ # @!attribute [rw] provisioned_resource_cleanup
807
+ # Specifies whether to also delete the Lambda functions and layers
808
+ # used by this canary when the canary is deleted. If you omit this
809
+ # parameter, the default of `AUTOMATIC` is used, which means that the
810
+ # Lambda functions and layers will be deleted when the canary is
811
+ # deleted.
812
+ #
813
+ # If the value of this parameter is `OFF`, then the value of the
814
+ # `DeleteLambda` parameter of the [DeleteCanary][1] operation
815
+ # determines whether the Lambda functions and layers will be deleted.
816
+ #
817
+ #
818
+ #
819
+ # [1]: https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_DeleteCanary.html
820
+ # @return [String]
821
+ #
790
822
  # @!attribute [rw] tags
791
823
  # A list of key-value pairs to associate with the canary. You can
792
824
  # associate as many as 50 tags with a canary.
@@ -821,6 +853,7 @@ module Aws::Synthetics
821
853
  :runtime_version,
822
854
  :vpc_config,
823
855
  :resources_to_replicate_tags,
856
+ :provisioned_resource_cleanup,
824
857
  :tags,
825
858
  :artifact_config)
826
859
  SENSITIVE = []
@@ -889,7 +922,12 @@ module Aws::Synthetics
889
922
  #
890
923
  # @!attribute [rw] delete_lambda
891
924
  # Specifies whether to also delete the Lambda functions and layers
892
- # used by this canary. The default is false.
925
+ # used by this canary. The default is `false`.
926
+ #
927
+ # Your setting for this parameter is used only if the canary doesn't
928
+ # have `AUTOMATIC` for its `ProvisionedResourceCleanup` field. If that
929
+ # field is set to `AUTOMATIC`, then the Lambda functions and layers
930
+ # will be deleted when this canary is deleted.
893
931
  #
894
932
  # Type: Boolean
895
933
  # @return [Boolean]
@@ -1804,6 +1842,19 @@ module Aws::Synthetics
1804
1842
  # canary uploads to Amazon S3.
1805
1843
  # @return [Types::ArtifactConfigInput]
1806
1844
  #
1845
+ # @!attribute [rw] provisioned_resource_cleanup
1846
+ # Specifies whether to also delete the Lambda functions and layers
1847
+ # used by this canary when the canary is deleted.
1848
+ #
1849
+ # If the value of this parameter is `OFF`, then the value of the
1850
+ # `DeleteLambda` parameter of the [DeleteCanary][1] operation
1851
+ # determines whether the Lambda functions and layers will be deleted.
1852
+ #
1853
+ #
1854
+ #
1855
+ # [1]: https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_DeleteCanary.html
1856
+ # @return [String]
1857
+ #
1807
1858
  # @see http://docs.aws.amazon.com/goto/WebAPI/synthetics-2017-10-11/UpdateCanaryRequest AWS API Documentation
1808
1859
  #
1809
1860
  class UpdateCanaryRequest < Struct.new(
@@ -1818,7 +1869,8 @@ module Aws::Synthetics
1818
1869
  :vpc_config,
1819
1870
  :visual_reference,
1820
1871
  :artifact_s3_location,
1821
- :artifact_config)
1872
+ :artifact_config,
1873
+ :provisioned_resource_cleanup)
1822
1874
  SENSITIVE = []
1823
1875
  include Aws::Structure
1824
1876
  end
@@ -1866,7 +1918,9 @@ module Aws::Synthetics
1866
1918
  # are `nextrun` to use the screenshots from the next run after this
1867
1919
  # update is made, `lastrun` to use the screenshots from the most
1868
1920
  # recent run before this update was made, or the value of `Id` in the
1869
- # [ CanaryRun][1] from any past run of this canary.
1921
+ # [ CanaryRun][1] from a run of this a canary in the past 31 days. If
1922
+ # you specify the `Id` of a canary run older than 31 days, the
1923
+ # operation returns a 400 validation exception error..
1870
1924
  #
1871
1925
  #
1872
1926
  #
@@ -1925,11 +1979,17 @@ module Aws::Synthetics
1925
1979
  # The IDs of the security groups for this canary.
1926
1980
  # @return [Array<String>]
1927
1981
  #
1982
+ # @!attribute [rw] ipv_6_allowed_for_dual_stack
1983
+ # Set this to `true` to allow outbound IPv6 traffic on VPC canaries
1984
+ # that are connected to dual-stack subnets. The default is `false`
1985
+ # @return [Boolean]
1986
+ #
1928
1987
  # @see http://docs.aws.amazon.com/goto/WebAPI/synthetics-2017-10-11/VpcConfigInput AWS API Documentation
1929
1988
  #
1930
1989
  class VpcConfigInput < Struct.new(
1931
1990
  :subnet_ids,
1932
- :security_group_ids)
1991
+ :security_group_ids,
1992
+ :ipv_6_allowed_for_dual_stack)
1933
1993
  SENSITIVE = []
1934
1994
  include Aws::Structure
1935
1995
  end
@@ -1954,12 +2014,18 @@ module Aws::Synthetics
1954
2014
  # The IDs of the security groups for this canary.
1955
2015
  # @return [Array<String>]
1956
2016
  #
2017
+ # @!attribute [rw] ipv_6_allowed_for_dual_stack
2018
+ # Indicates whether this canary allows outbound IPv6 traffic if it is
2019
+ # connected to dual-stack subnets.
2020
+ # @return [Boolean]
2021
+ #
1957
2022
  # @see http://docs.aws.amazon.com/goto/WebAPI/synthetics-2017-10-11/VpcConfigOutput AWS API Documentation
1958
2023
  #
1959
2024
  class VpcConfigOutput < Struct.new(
1960
2025
  :vpc_id,
1961
2026
  :subnet_ids,
1962
- :security_group_ids)
2027
+ :security_group_ids,
2028
+ :ipv_6_allowed_for_dual_stack)
1963
2029
  SENSITIVE = []
1964
2030
  include Aws::Structure
1965
2031
  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.56.0'
57
+ GEM_VERSION = '1.58.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -116,9 +116,11 @@ module Aws
116
116
  runtime_version: ::String,
117
117
  ?vpc_config: {
118
118
  subnet_ids: Array[::String]?,
119
- security_group_ids: Array[::String]?
119
+ security_group_ids: Array[::String]?,
120
+ ipv_6_allowed_for_dual_stack: bool?
120
121
  },
121
122
  ?resources_to_replicate_tags: Array[("lambda-function")],
123
+ ?provisioned_resource_cleanup: ("AUTOMATIC" | "OFF"),
122
124
  ?tags: Hash[::String, ::String],
123
125
  ?artifact_config: {
124
126
  s3_encryption: {
@@ -355,7 +357,8 @@ module Aws
355
357
  ?failure_retention_period_in_days: ::Integer,
356
358
  ?vpc_config: {
357
359
  subnet_ids: Array[::String]?,
358
- security_group_ids: Array[::String]?
360
+ security_group_ids: Array[::String]?,
361
+ ipv_6_allowed_for_dual_stack: bool?
359
362
  },
360
363
  ?visual_reference: {
361
364
  base_screenshots: Array[
@@ -372,7 +375,8 @@ module Aws
372
375
  encryption_mode: ("SSE_S3" | "SSE_KMS")?,
373
376
  kms_key_arn: ::String?
374
377
  }?
375
- }
378
+ },
379
+ ?provisioned_resource_cleanup: ("AUTOMATIC" | "OFF")
376
380
  ) -> _UpdateCanaryResponseSuccess
377
381
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCanaryResponseSuccess
378
382
  end
data/sig/types.rbs CHANGED
@@ -54,6 +54,7 @@ module Aws::Synthetics
54
54
  attr_accessor runtime_version: ::String
55
55
  attr_accessor vpc_config: Types::VpcConfigOutput
56
56
  attr_accessor visual_reference: Types::VisualReferenceOutput
57
+ attr_accessor provisioned_resource_cleanup: ("AUTOMATIC" | "OFF")
57
58
  attr_accessor tags: ::Hash[::String, ::String]
58
59
  attr_accessor artifact_config: Types::ArtifactConfigOutput
59
60
  SENSITIVE: []
@@ -161,6 +162,7 @@ module Aws::Synthetics
161
162
  attr_accessor runtime_version: ::String
162
163
  attr_accessor vpc_config: Types::VpcConfigInput
163
164
  attr_accessor resources_to_replicate_tags: ::Array[("lambda-function")]
165
+ attr_accessor provisioned_resource_cleanup: ("AUTOMATIC" | "OFF")
164
166
  attr_accessor tags: ::Hash[::String, ::String]
165
167
  attr_accessor artifact_config: Types::ArtifactConfigInput
166
168
  SENSITIVE: []
@@ -440,6 +442,7 @@ module Aws::Synthetics
440
442
  attr_accessor visual_reference: Types::VisualReferenceInput
441
443
  attr_accessor artifact_s3_location: ::String
442
444
  attr_accessor artifact_config: Types::ArtifactConfigInput
445
+ attr_accessor provisioned_resource_cleanup: ("AUTOMATIC" | "OFF")
443
446
  SENSITIVE: []
444
447
  end
445
448
 
@@ -466,6 +469,7 @@ module Aws::Synthetics
466
469
  class VpcConfigInput
467
470
  attr_accessor subnet_ids: ::Array[::String]
468
471
  attr_accessor security_group_ids: ::Array[::String]
472
+ attr_accessor ipv_6_allowed_for_dual_stack: bool
469
473
  SENSITIVE: []
470
474
  end
471
475
 
@@ -473,6 +477,7 @@ module Aws::Synthetics
473
477
  attr_accessor vpc_id: ::String
474
478
  attr_accessor subnet_ids: ::Array[::String]
475
479
  attr_accessor security_group_ids: ::Array[::String]
480
+ attr_accessor ipv_6_allowed_for_dual_stack: bool
476
481
  SENSITIVE: []
477
482
  end
478
483
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-synthetics
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.56.0
4
+ version: 1.58.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-06 00:00:00.000000000 Z
11
+ date: 2024-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core