aws-sdk-appconfig 1.43.0 → 1.45.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: b28090c48ea7351c7e813d5963708ca37c0f1cc6f8217597f1098c5ada7f771e
4
- data.tar.gz: 0df0c19eeeb7d33ef8d682fcc1a247efbaa40c5e1a344393be89d7f1fd7bb43b
3
+ metadata.gz: 3e9e8ee771db1b1991394b54f7f7cc177a81ce7b98cbfbb0db307f843b35e748
4
+ data.tar.gz: 064bb9018df793934031b2be4528295bd9121af82208ada552b7e6253591a2b3
5
5
  SHA512:
6
- metadata.gz: 00de14724af89ae0e57637de7d3db47b9e55c60270e53797b0c8d4101d3ea405bf6330be88a4c0e0869504d1e54178af617803735ffe2fdb3bc69c5b7cdb8246
7
- data.tar.gz: 667b27a0a362f0558ccc5b88387c7a90593fd06033d0c973dee72cc2e22d6b1aeb94c591d0563bdc37e74d62ec29c3d5177c12483f5876180f00d51efea77474
6
+ metadata.gz: f41bb5a81941ec3d2ea9bb583da75585fc485d61c9aa03ddca4d742a5f689157871e445792eaa66e39f0d0a8938589e078b494eae2665491ff0f4e1e8609cf37
7
+ data.tar.gz: 6306d8557db6ab3170396a312f9f2d3c09551fe08a4c06bb7fe5fe0224ae8532004bd16cc404a496c1d28b2d3e97ee7ec1cc4a018eeb682b7e3baa30c36285bb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.45.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.44.0 (2024-03-07)
10
+ ------------------
11
+
12
+ * Feature - AWS AppConfig now supports dynamic parameters, which enhance the functionality of AppConfig Extensions by allowing you to provide parameter values to your Extensions at the time you deploy your configuration.
13
+
4
14
  1.43.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.43.0
1
+ 1.45.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::AppConfig
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::AppConfig
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::AppConfig
337
346
  # @option options [Aws::AppConfig::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::AppConfig::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
365
- #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
368
399
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
372
402
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
378
405
  #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -892,8 +916,8 @@ module Aws::AppConfig
892
916
  # * For a custom Amazon SQS notification extension, enter the ARN of an
893
917
  # Amazon SQS message queue in the `Uri` field.
894
918
  #
895
- # For more information about extensions, see [Working with AppConfig
896
- # extensions][1] in the *AppConfig User Guide*.
919
+ # For more information about extensions, see [Extending workflows][1] in
920
+ # the *AppConfig User Guide*.
897
921
  #
898
922
  #
899
923
  #
@@ -955,6 +979,7 @@ module Aws::AppConfig
955
979
  # "ExtensionOrParameterName" => {
956
980
  # description: "Description",
957
981
  # required: false,
982
+ # dynamic: false,
958
983
  # },
959
984
  # },
960
985
  # tags: {
@@ -979,6 +1004,7 @@ module Aws::AppConfig
979
1004
  # resp.parameters #=> Hash
980
1005
  # resp.parameters["ExtensionOrParameterName"].description #=> String
981
1006
  # resp.parameters["ExtensionOrParameterName"].required #=> Boolean
1007
+ # resp.parameters["ExtensionOrParameterName"].dynamic #=> Boolean
982
1008
  #
983
1009
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/CreateExtension AWS API Documentation
984
1010
  #
@@ -999,8 +1025,8 @@ module Aws::AppConfig
999
1025
  # AppConfig resource is called an *extension association*. An extension
1000
1026
  # association is a specified relationship between an extension and an
1001
1027
  # AppConfig resource, such as an application or a configuration profile.
1002
- # For more information about extensions and associations, see [Working
1003
- # with AppConfig extensions][1] in the *AppConfig User Guide*.
1028
+ # For more information about extensions and associations, see [Extending
1029
+ # workflows][1] in the *AppConfig User Guide*.
1004
1030
  #
1005
1031
  #
1006
1032
  #
@@ -1988,6 +2014,7 @@ module Aws::AppConfig
1988
2014
  # resp.parameters #=> Hash
1989
2015
  # resp.parameters["ExtensionOrParameterName"].description #=> String
1990
2016
  # resp.parameters["ExtensionOrParameterName"].required #=> Boolean
2017
+ # resp.parameters["ExtensionOrParameterName"].dynamic #=> Boolean
1991
2018
  #
1992
2019
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/GetExtension AWS API Documentation
1993
2020
  #
@@ -1999,8 +2026,8 @@ module Aws::AppConfig
1999
2026
  end
2000
2027
 
2001
2028
  # Returns information about an AppConfig extension association. For more
2002
- # information about extensions and associations, see [Working with
2003
- # AppConfig extensions][1] in the *AppConfig User Guide*.
2029
+ # information about extensions and associations, see [Extending
2030
+ # workflows][1] in the *AppConfig User Guide*.
2004
2031
  #
2005
2032
  #
2006
2033
  #
@@ -2496,8 +2523,8 @@ module Aws::AppConfig
2496
2523
  end
2497
2524
 
2498
2525
  # Lists all AppConfig extension associations in the account. For more
2499
- # information about extensions and associations, see [Working with
2500
- # AppConfig extensions][1] in the *AppConfig User Guide*.
2526
+ # information about extensions and associations, see [Extending
2527
+ # workflows][1] in the *AppConfig User Guide*.
2501
2528
  #
2502
2529
  #
2503
2530
  #
@@ -2556,8 +2583,8 @@ module Aws::AppConfig
2556
2583
  end
2557
2584
 
2558
2585
  # Lists all custom and Amazon Web Services authored AppConfig extensions
2559
- # in the account. For more information about extensions, see [Working
2560
- # with AppConfig extensions][1] in the *AppConfig User Guide*.
2586
+ # in the account. For more information about extensions, see [Extending
2587
+ # workflows][1] in the *AppConfig User Guide*.
2561
2588
  #
2562
2589
  #
2563
2590
  #
@@ -2773,6 +2800,10 @@ module Aws::AppConfig
2773
2800
  # this ID to encrypt the configuration data using a customer managed
2774
2801
  # key.
2775
2802
  #
2803
+ # @option params [Hash<String,String>] :dynamic_extension_parameters
2804
+ # A map of dynamic extension parameter names to values to pass to
2805
+ # associated extensions with `PRE_START_DEPLOYMENT` actions.
2806
+ #
2776
2807
  # @return [Types::Deployment] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2777
2808
  #
2778
2809
  # * {Types::Deployment#application_id #application_id} => String
@@ -2855,6 +2886,9 @@ module Aws::AppConfig
2855
2886
  # "TagKey" => "TagValue",
2856
2887
  # },
2857
2888
  # kms_key_identifier: "KmsKeyIdentifier",
2889
+ # dynamic_extension_parameters: {
2890
+ # "DynamicParameterKey" => "StringWithLengthBetween1And2048",
2891
+ # },
2858
2892
  # })
2859
2893
  #
2860
2894
  # @example Response structure
@@ -3466,8 +3500,7 @@ module Aws::AppConfig
3466
3500
  end
3467
3501
 
3468
3502
  # Updates an AppConfig extension. For more information about extensions,
3469
- # see [Working with AppConfig extensions][1] in the *AppConfig User
3470
- # Guide*.
3503
+ # see [Extending workflows][1] in the *AppConfig User Guide*.
3471
3504
  #
3472
3505
  #
3473
3506
  #
@@ -3517,6 +3550,7 @@ module Aws::AppConfig
3517
3550
  # "ExtensionOrParameterName" => {
3518
3551
  # description: "Description",
3519
3552
  # required: false,
3553
+ # dynamic: false,
3520
3554
  # },
3521
3555
  # },
3522
3556
  # version_number: 1,
@@ -3538,6 +3572,7 @@ module Aws::AppConfig
3538
3572
  # resp.parameters #=> Hash
3539
3573
  # resp.parameters["ExtensionOrParameterName"].description #=> String
3540
3574
  # resp.parameters["ExtensionOrParameterName"].required #=> Boolean
3575
+ # resp.parameters["ExtensionOrParameterName"].dynamic #=> Boolean
3541
3576
  #
3542
3577
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/UpdateExtension AWS API Documentation
3543
3578
  #
@@ -3549,8 +3584,8 @@ module Aws::AppConfig
3549
3584
  end
3550
3585
 
3551
3586
  # Updates an association. For more information about extensions and
3552
- # associations, see [Working with AppConfig extensions][1] in the
3553
- # *AppConfig User Guide*.
3587
+ # associations, see [Extending workflows][1] in the *AppConfig User
3588
+ # Guide*.
3554
3589
  #
3555
3590
  #
3556
3591
  #
@@ -3654,7 +3689,7 @@ module Aws::AppConfig
3654
3689
  params: params,
3655
3690
  config: config)
3656
3691
  context[:gem_name] = 'aws-sdk-appconfig'
3657
- context[:gem_version] = '1.43.0'
3692
+ context[:gem_version] = '1.45.0'
3658
3693
  Seahorse::Client::Request.new(handlers, context)
3659
3694
  end
3660
3695
 
@@ -65,6 +65,8 @@ module Aws::AppConfig
65
65
  DeploymentSummary = Shapes::StructureShape.new(name: 'DeploymentSummary')
66
66
  Deployments = Shapes::StructureShape.new(name: 'Deployments')
67
67
  Description = Shapes::StringShape.new(name: 'Description')
68
+ DynamicParameterKey = Shapes::StringShape.new(name: 'DynamicParameterKey')
69
+ DynamicParameterMap = Shapes::MapShape.new(name: 'DynamicParameterMap')
68
70
  Environment = Shapes::StructureShape.new(name: 'Environment')
69
71
  EnvironmentList = Shapes::ListShape.new(name: 'EnvironmentList')
70
72
  EnvironmentState = Shapes::StringShape.new(name: 'EnvironmentState')
@@ -401,6 +403,9 @@ module Aws::AppConfig
401
403
  Deployments.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
402
404
  Deployments.struct_class = Types::Deployments
403
405
 
406
+ DynamicParameterMap.key = Shapes::ShapeRef.new(shape: DynamicParameterKey)
407
+ DynamicParameterMap.value = Shapes::ShapeRef.new(shape: StringWithLengthBetween1And2048)
408
+
404
409
  Environment.add_member(:application_id, Shapes::ShapeRef.new(shape: Id, location_name: "ApplicationId"))
405
410
  Environment.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "Id"))
406
411
  Environment.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
@@ -588,6 +593,7 @@ module Aws::AppConfig
588
593
 
589
594
  Parameter.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
590
595
  Parameter.add_member(:required, Shapes::ShapeRef.new(shape: Boolean, location_name: "Required"))
596
+ Parameter.add_member(:dynamic, Shapes::ShapeRef.new(shape: Boolean, location_name: "Dynamic"))
591
597
  Parameter.struct_class = Types::Parameter
592
598
 
593
599
  ParameterMap.key = Shapes::ShapeRef.new(shape: ExtensionOrParameterName)
@@ -620,6 +626,7 @@ module Aws::AppConfig
620
626
  StartDeploymentRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
621
627
  StartDeploymentRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
622
628
  StartDeploymentRequest.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
629
+ StartDeploymentRequest.add_member(:dynamic_extension_parameters, Shapes::ShapeRef.new(shape: DynamicParameterMap, location_name: "DynamicExtensionParameters"))
623
630
  StartDeploymentRequest.struct_class = Types::StartDeploymentRequest
624
631
 
625
632
  StopDeploymentRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "ApplicationId"))
@@ -2130,8 +2130,8 @@ module Aws::AppConfig
2130
2130
  # A value such as an Amazon Resource Name (ARN) or an Amazon Simple
2131
2131
  # Notification Service topic entered in an extension when invoked.
2132
2132
  # Parameter values are specified in an extension association. For more
2133
- # information about extensions, see [Working with AppConfig
2134
- # extensions][1] in the *AppConfig User Guide*.
2133
+ # information about extensions, see [Extending workflows][1] in the
2134
+ # *AppConfig User Guide*.
2135
2135
  #
2136
2136
  #
2137
2137
  #
@@ -2145,11 +2145,18 @@ module Aws::AppConfig
2145
2145
  # A parameter value must be specified in the extension association.
2146
2146
  # @return [Boolean]
2147
2147
  #
2148
+ # @!attribute [rw] dynamic
2149
+ # Indicates whether this parameter's value can be supplied at the
2150
+ # extension's action point instead of during extension association.
2151
+ # Dynamic parameters can't be marked `Required`.
2152
+ # @return [Boolean]
2153
+ #
2148
2154
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/Parameter AWS API Documentation
2149
2155
  #
2150
2156
  class Parameter < Struct.new(
2151
2157
  :description,
2152
- :required)
2158
+ :required,
2159
+ :dynamic)
2153
2160
  SENSITIVE = []
2154
2161
  include Aws::Structure
2155
2162
  end
@@ -2281,6 +2288,11 @@ module Aws::AppConfig
2281
2288
  # managed key.
2282
2289
  # @return [String]
2283
2290
  #
2291
+ # @!attribute [rw] dynamic_extension_parameters
2292
+ # A map of dynamic extension parameter names to values to pass to
2293
+ # associated extensions with `PRE_START_DEPLOYMENT` actions.
2294
+ # @return [Hash<String,String>]
2295
+ #
2284
2296
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/StartDeploymentRequest AWS API Documentation
2285
2297
  #
2286
2298
  class StartDeploymentRequest < Struct.new(
@@ -2291,7 +2303,8 @@ module Aws::AppConfig
2291
2303
  :configuration_version,
2292
2304
  :description,
2293
2305
  :tags,
2294
- :kms_key_identifier)
2306
+ :kms_key_identifier,
2307
+ :dynamic_extension_parameters)
2295
2308
  SENSITIVE = []
2296
2309
  include Aws::Structure
2297
2310
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-appconfig/customizations'
52
52
  # @!group service
53
53
  module Aws::AppConfig
54
54
 
55
- GEM_VERSION = '1.43.0'
55
+ GEM_VERSION = '1.45.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -190,7 +190,8 @@ module Aws
190
190
  ]],
191
191
  ?parameters: Hash[::String, {
192
192
  description: ::String?,
193
- required: bool?
193
+ required: bool?,
194
+ dynamic: bool?
194
195
  }],
195
196
  ?tags: Hash[::String, ::String],
196
197
  ?latest_version_number: ::Integer
@@ -603,7 +604,8 @@ module Aws
603
604
  configuration_version: ::String,
604
605
  ?description: ::String,
605
606
  ?tags: Hash[::String, ::String],
606
- ?kms_key_identifier: ::String
607
+ ?kms_key_identifier: ::String,
608
+ ?dynamic_extension_parameters: Hash[::String, ::String]
607
609
  ) -> _StartDeploymentResponseSuccess
608
610
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDeploymentResponseSuccess
609
611
 
@@ -768,7 +770,8 @@ module Aws
768
770
  ]],
769
771
  ?parameters: Hash[::String, {
770
772
  description: ::String?,
771
- required: bool?
773
+ required: bool?,
774
+ dynamic: bool?
772
775
  }],
773
776
  ?version_number: ::Integer
774
777
  ) -> _UpdateExtensionResponseSuccess
data/sig/types.rbs CHANGED
@@ -532,6 +532,7 @@ module Aws::AppConfig
532
532
  class Parameter
533
533
  attr_accessor description: ::String
534
534
  attr_accessor required: bool
535
+ attr_accessor dynamic: bool
535
536
  SENSITIVE: []
536
537
  end
537
538
 
@@ -568,6 +569,7 @@ module Aws::AppConfig
568
569
  attr_accessor description: ::String
569
570
  attr_accessor tags: ::Hash[::String, ::String]
570
571
  attr_accessor kms_key_identifier: ::String
572
+ attr_accessor dynamic_extension_parameters: ::Hash[::String, ::String]
571
573
  SENSITIVE: []
572
574
  end
573
575
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appconfig
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.43.0
4
+ version: 1.45.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-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-25 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.191.0
22
+ version: 3.193.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.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement