aws-sdk-appconfigdata 1.2.0 → 1.3.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: ad8a3d182575fc622400cb50609083f2da0185a7c02048168348388d43fed06e
4
- data.tar.gz: 94a7b340c302923042fa4045b80d8773a0a4c7a91f60912bd8b236829c1d0888
3
+ metadata.gz: f64a081925366e48f9eab4aa9d2369ebec3130f1391a8b9cb85370801d519bd5
4
+ data.tar.gz: efcc646acef6cd57da8580fa8b6633afb52039a57551261252bef4168289a233
5
5
  SHA512:
6
- metadata.gz: 57138393331df3728bb1ca16143b184084ecc5288d9f707ecb3224a73a688e869b8bf1877e1db5fb752c30578dc364fc993104aa0c4196757910bc16e43c573b
7
- data.tar.gz: f2e08065b71ab6d4fca4cc6d6d85938b298b9d2692619298ff594c69da8220fc554c666ff65fc3215b99df65ad628ebbd166952423222c30c3039111f791183a
6
+ metadata.gz: f76e347373986ff2bb55357aae72dcde75e390fded6b39cf2af4ff1a2c12fa50dfd36bd1f1f8a9d69469bede3d83fd7bb11b26313690067a1b0deabb0faacabe
7
+ data.tar.gz: 7699d208b266fc8d5a4b4a60d7975b9e167e9cb0134b16369095a53d60e3a2990e41b398d8713a15dba048e3b175edf7591ff1bdfef9ab5ad8147ded25723f91
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.3.0 (2022-01-28)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for AWS AppConfig Data.
8
+
4
9
  1.2.0 (2021-12-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.0
1
+ 1.3.0
@@ -348,34 +348,41 @@ module Aws::AppConfigData
348
348
  # @!group API Operations
349
349
 
350
350
  # Retrieves the latest deployed configuration. This API may return empty
351
- # Configuration data if the client already has the latest version. See
352
- # StartConfigurationSession to obtain an InitialConfigurationToken to
353
- # call this API.
351
+ # configuration data if the client already has the latest version. For
352
+ # more information about this API action and to view example CLI
353
+ # commands that show how to use it with the StartConfigurationSession
354
+ # API action, see [Receiving the configuration][1] in the *AppConfig
355
+ # User Guide*.
354
356
  #
355
- # Each call to GetLatestConfiguration returns a new ConfigurationToken
356
- # (NextPollConfigurationToken in the response). This new token MUST be
357
- # provided to the next call to GetLatestConfiguration when polling for
358
- # configuration updates.
357
+ # Note the following important information.
359
358
  #
360
- # To avoid excess charges, we recommend that you include the
361
- # `ClientConfigurationVersion` value with every call to
362
- # `GetConfiguration`. This value must be saved on your client.
363
- # Subsequent calls to `GetConfiguration` must pass this value by using
364
- # the `ClientConfigurationVersion` parameter.
359
+ # * Each configuration token is only valid for one call to
360
+ # `GetLatestConfiguration`. The `GetLatestConfiguration` response
361
+ # includes a `NextPollConfigurationToken` that should always replace
362
+ # the token used for the just-completed call in preparation for the
363
+ # next one.
364
+ #
365
+ # * `GetLatestConfiguration` is a priced call. For more information, see
366
+ # [Pricing][2].
367
+ #
368
+ #
369
+ #
370
+ # [1]: http://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-retrieving-the-configuration
371
+ # [2]: https://aws.amazon.com/systems-manager/pricing/
365
372
  #
366
373
  # @option params [required, String] :configuration_token
367
374
  # Token describing the current state of the configuration session. To
368
375
  # obtain a token, first call the StartConfigurationSession API. Note
369
- # that every call to GetLatestConfiguration will return a new
370
- # ConfigurationToken (NextPollConfigurationToken in the response) and
371
- # MUST be provided to subsequent GetLatestConfiguration API calls.
376
+ # that every call to `GetLatestConfiguration` will return a new
377
+ # `ConfigurationToken` (`NextPollConfigurationToken` in the response)
378
+ # and MUST be provided to subsequent `GetLatestConfiguration` API calls.
372
379
  #
373
380
  # @return [Types::GetLatestConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
374
381
  #
375
- # * {Types::GetLatestConfigurationResponse#configuration #configuration} => String
376
- # * {Types::GetLatestConfigurationResponse#content_type #content_type} => String
377
382
  # * {Types::GetLatestConfigurationResponse#next_poll_configuration_token #next_poll_configuration_token} => String
378
383
  # * {Types::GetLatestConfigurationResponse#next_poll_interval_in_seconds #next_poll_interval_in_seconds} => Integer
384
+ # * {Types::GetLatestConfigurationResponse#content_type #content_type} => String
385
+ # * {Types::GetLatestConfigurationResponse#configuration #configuration} => String
379
386
  #
380
387
  # @example Request syntax with placeholder values
381
388
  #
@@ -385,10 +392,10 @@ module Aws::AppConfigData
385
392
  #
386
393
  # @example Response structure
387
394
  #
388
- # resp.configuration #=> String
389
- # resp.content_type #=> String
390
395
  # resp.next_poll_configuration_token #=> String
391
396
  # resp.next_poll_interval_in_seconds #=> Integer
397
+ # resp.content_type #=> String
398
+ # resp.configuration #=> String
392
399
  #
393
400
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfigdata-2021-11-11/GetLatestConfiguration AWS API Documentation
394
401
  #
@@ -400,22 +407,29 @@ module Aws::AppConfigData
400
407
  end
401
408
 
402
409
  # Starts a configuration session used to retrieve a deployed
403
- # configuration. See the GetLatestConfiguration API for more details.
410
+ # configuration. For more information about this API action and to view
411
+ # example CLI commands that show how to use it with the
412
+ # GetLatestConfiguration API action, see [Receiving the
413
+ # configuration][1] in the *AppConfig User Guide*.
414
+ #
415
+ #
416
+ #
417
+ # [1]: http://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-retrieving-the-configuration
404
418
  #
405
419
  # @option params [required, String] :application_identifier
406
420
  # The application ID or the application name.
407
421
  #
408
- # @option params [required, String] :configuration_profile_identifier
409
- # The configuration profile ID or the configuration profile name.
410
- #
411
422
  # @option params [required, String] :environment_identifier
412
423
  # The environment ID or the environment name.
413
424
  #
425
+ # @option params [required, String] :configuration_profile_identifier
426
+ # The configuration profile ID or the configuration profile name.
427
+ #
414
428
  # @option params [Integer] :required_minimum_poll_interval_in_seconds
415
- # The interval at which your client will poll for configuration. If
416
- # provided, the service will throw a BadRequestException if the client
417
- # polls before the specified poll interval. By default, client poll
418
- # intervals are not enforced.
429
+ # Sets a constraint on a session. If you specify a value of, for
430
+ # example, 60 seconds, then the client that established the session
431
+ # can't call GetLatestConfiguration more frequently then every 60
432
+ # seconds.
419
433
  #
420
434
  # @return [Types::StartConfigurationSessionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
421
435
  #
@@ -425,8 +439,8 @@ module Aws::AppConfigData
425
439
  #
426
440
  # resp = client.start_configuration_session({
427
441
  # application_identifier: "Identifier", # required
428
- # configuration_profile_identifier: "Identifier", # required
429
442
  # environment_identifier: "Identifier", # required
443
+ # configuration_profile_identifier: "Identifier", # required
430
444
  # required_minimum_poll_interval_in_seconds: 1,
431
445
  # })
432
446
  #
@@ -456,7 +470,7 @@ module Aws::AppConfigData
456
470
  params: params,
457
471
  config: config)
458
472
  context[:gem_name] = 'aws-sdk-appconfigdata'
459
- context[:gem_version] = '1.2.0'
473
+ context[:gem_version] = '1.3.0'
460
474
  Seahorse::Client::Request.new(handlers, context)
461
475
  end
462
476
 
@@ -41,18 +41,18 @@ module Aws::AppConfigData
41
41
  BadRequestDetails.add_member_subclass(:unknown, Types::BadRequestDetails::Unknown)
42
42
  BadRequestDetails.struct_class = Types::BadRequestDetails
43
43
 
44
- BadRequestException.add_member(:details, Shapes::ShapeRef.new(shape: BadRequestDetails, location_name: "Details"))
45
44
  BadRequestException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
46
45
  BadRequestException.add_member(:reason, Shapes::ShapeRef.new(shape: BadRequestReason, location_name: "Reason"))
46
+ BadRequestException.add_member(:details, Shapes::ShapeRef.new(shape: BadRequestDetails, location_name: "Details"))
47
47
  BadRequestException.struct_class = Types::BadRequestException
48
48
 
49
49
  GetLatestConfigurationRequest.add_member(:configuration_token, Shapes::ShapeRef.new(shape: Token, required: true, location: "querystring", location_name: "configuration_token"))
50
50
  GetLatestConfigurationRequest.struct_class = Types::GetLatestConfigurationRequest
51
51
 
52
- GetLatestConfigurationResponse.add_member(:configuration, Shapes::ShapeRef.new(shape: SyntheticGetLatestConfigurationResponseBlob, location_name: "Configuration"))
53
- GetLatestConfigurationResponse.add_member(:content_type, Shapes::ShapeRef.new(shape: String, location: "header", location_name: "Content-Type"))
54
52
  GetLatestConfigurationResponse.add_member(:next_poll_configuration_token, Shapes::ShapeRef.new(shape: Token, location: "header", location_name: "Next-Poll-Configuration-Token"))
55
53
  GetLatestConfigurationResponse.add_member(:next_poll_interval_in_seconds, Shapes::ShapeRef.new(shape: Integer, location: "header", location_name: "Next-Poll-Interval-In-Seconds"))
54
+ GetLatestConfigurationResponse.add_member(:content_type, Shapes::ShapeRef.new(shape: String, location: "header", location_name: "Content-Type"))
55
+ GetLatestConfigurationResponse.add_member(:configuration, Shapes::ShapeRef.new(shape: SyntheticGetLatestConfigurationResponseBlob, location_name: "Configuration"))
56
56
  GetLatestConfigurationResponse.struct_class = Types::GetLatestConfigurationResponse
57
57
  GetLatestConfigurationResponse[:payload] = :configuration
58
58
  GetLatestConfigurationResponse[:payload_member] = GetLatestConfigurationResponse.member(:configuration)
@@ -67,13 +67,13 @@ module Aws::AppConfigData
67
67
  InvalidParameterMap.value = Shapes::ShapeRef.new(shape: InvalidParameterDetail)
68
68
 
69
69
  ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
70
- ResourceNotFoundException.add_member(:referenced_by, Shapes::ShapeRef.new(shape: StringMap, location_name: "ReferencedBy"))
71
70
  ResourceNotFoundException.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, location_name: "ResourceType"))
71
+ ResourceNotFoundException.add_member(:referenced_by, Shapes::ShapeRef.new(shape: StringMap, location_name: "ReferencedBy"))
72
72
  ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
73
73
 
74
74
  StartConfigurationSessionRequest.add_member(:application_identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location_name: "ApplicationIdentifier"))
75
- StartConfigurationSessionRequest.add_member(:configuration_profile_identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location_name: "ConfigurationProfileIdentifier"))
76
75
  StartConfigurationSessionRequest.add_member(:environment_identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location_name: "EnvironmentIdentifier"))
76
+ StartConfigurationSessionRequest.add_member(:configuration_profile_identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location_name: "ConfigurationProfileIdentifier"))
77
77
  StartConfigurationSessionRequest.add_member(:required_minimum_poll_interval_in_seconds, Shapes::ShapeRef.new(shape: OptionalPollSeconds, location_name: "RequiredMinimumPollIntervalInSeconds"))
78
78
  StartConfigurationSessionRequest.struct_class = Types::StartConfigurationSessionRequest
79
79
 
@@ -47,11 +47,6 @@ module Aws::AppConfigData
47
47
  super(context, message, data)
48
48
  end
49
49
 
50
- # @return [String]
51
- def details
52
- @data[:details]
53
- end
54
-
55
50
  # @return [String]
56
51
  def message
57
52
  @message || @data[:message]
@@ -61,6 +56,11 @@ module Aws::AppConfigData
61
56
  def reason
62
57
  @data[:reason]
63
58
  end
59
+
60
+ # @return [String]
61
+ def details
62
+ @data[:details]
63
+ end
64
64
  end
65
65
 
66
66
  class InternalServerException < ServiceError
@@ -93,13 +93,13 @@ module Aws::AppConfigData
93
93
  end
94
94
 
95
95
  # @return [String]
96
- def referenced_by
97
- @data[:referenced_by]
96
+ def resource_type
97
+ @data[:resource_type]
98
98
  end
99
99
 
100
100
  # @return [String]
101
- def resource_type
102
- @data[:resource_type]
101
+ def referenced_by
102
+ @data[:referenced_by]
103
103
  end
104
104
  end
105
105
 
@@ -10,10 +10,11 @@
10
10
  module Aws::AppConfigData
11
11
  module Types
12
12
 
13
- # Details describing why the request was invalid
13
+ # Detailed information about the input that failed to satisfy the
14
+ # constraints specified by a call.
14
15
  #
15
16
  # @!attribute [rw] invalid_parameters
16
- # Present if the Reason for the bad request was 'InvalidParameters'
17
+ # One or more specified parameters are not valid for the call.
17
18
  # @return [Hash<String,Types::InvalidParameterDetail>]
18
19
  #
19
20
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfigdata-2021-11-11/BadRequestDetails AWS API Documentation
@@ -31,10 +32,6 @@ module Aws::AppConfigData
31
32
 
32
33
  # The input fails to satisfy the constraints specified by the service.
33
34
  #
34
- # @!attribute [rw] details
35
- # Details describing why the request was invalid
36
- # @return [Types::BadRequestDetails]
37
- #
38
35
  # @!attribute [rw] message
39
36
  # @return [String]
40
37
  #
@@ -42,18 +39,20 @@ module Aws::AppConfigData
42
39
  # Code indicating the reason the request was invalid.
43
40
  # @return [String]
44
41
  #
42
+ # @!attribute [rw] details
43
+ # Details describing why the request was invalid.
44
+ # @return [Types::BadRequestDetails]
45
+ #
45
46
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfigdata-2021-11-11/BadRequestException AWS API Documentation
46
47
  #
47
48
  class BadRequestException < Struct.new(
48
- :details,
49
49
  :message,
50
- :reason)
50
+ :reason,
51
+ :details)
51
52
  SENSITIVE = []
52
53
  include Aws::Structure
53
54
  end
54
55
 
55
- # Request parameters for the GetLatestConfiguration API
56
- #
57
56
  # @note When making an API call, you may pass GetLatestConfigurationRequest
58
57
  # data as a hash:
59
58
  #
@@ -64,9 +63,10 @@ module Aws::AppConfigData
64
63
  # @!attribute [rw] configuration_token
65
64
  # Token describing the current state of the configuration session. To
66
65
  # obtain a token, first call the StartConfigurationSession API. Note
67
- # that every call to GetLatestConfiguration will return a new
68
- # ConfigurationToken (NextPollConfigurationToken in the response) and
69
- # MUST be provided to subsequent GetLatestConfiguration API calls.
66
+ # that every call to `GetLatestConfiguration` will return a new
67
+ # `ConfigurationToken` (`NextPollConfigurationToken` in the response)
68
+ # and MUST be provided to subsequent `GetLatestConfiguration` API
69
+ # calls.
70
70
  # @return [String]
71
71
  #
72
72
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfigdata-2021-11-11/GetLatestConfigurationRequest AWS API Documentation
@@ -77,38 +77,36 @@ module Aws::AppConfigData
77
77
  include Aws::Structure
78
78
  end
79
79
 
80
- # Response parameters for the GetLatestConfiguration API
81
- #
82
- # @!attribute [rw] configuration
83
- # The data of the configuration. Note that this may be empty if the
84
- # client already has the latest version of configuration.
85
- # @return [String]
86
- #
87
- # @!attribute [rw] content_type
88
- # A standard MIME type describing the format of the configuration
89
- # content.
90
- # @return [String]
91
- #
92
80
  # @!attribute [rw] next_poll_configuration_token
93
81
  # The latest token describing the current state of the configuration
94
82
  # session. This MUST be provided to the next call to
95
- # GetLatestConfiguration.
83
+ # `GetLatestConfiguration.`
96
84
  # @return [String]
97
85
  #
98
86
  # @!attribute [rw] next_poll_interval_in_seconds
99
87
  # The amount of time the client should wait before polling for
100
- # configuration updates again. See
101
- # RequiredMinimumPollIntervalInSeconds to set the desired poll
88
+ # configuration updates again. Use
89
+ # `RequiredMinimumPollIntervalInSeconds` to set the desired poll
102
90
  # interval.
103
91
  # @return [Integer]
104
92
  #
93
+ # @!attribute [rw] content_type
94
+ # A standard MIME type describing the format of the configuration
95
+ # content.
96
+ # @return [String]
97
+ #
98
+ # @!attribute [rw] configuration
99
+ # The data of the configuration. This may be empty if the client
100
+ # already has the latest version of configuration.
101
+ # @return [String]
102
+ #
105
103
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfigdata-2021-11-11/GetLatestConfigurationResponse AWS API Documentation
106
104
  #
107
105
  class GetLatestConfigurationResponse < Struct.new(
108
- :configuration,
109
- :content_type,
110
106
  :next_poll_configuration_token,
111
- :next_poll_interval_in_seconds)
107
+ :next_poll_interval_in_seconds,
108
+ :content_type,
109
+ :configuration)
112
110
  SENSITIVE = [:configuration]
113
111
  include Aws::Structure
114
112
  end
@@ -126,11 +124,10 @@ module Aws::AppConfigData
126
124
  include Aws::Structure
127
125
  end
128
126
 
129
- # Contains details about an invalid parameter.
127
+ # Information about an invalid parameter.
130
128
  #
131
129
  # @!attribute [rw] problem
132
- # Detail describing why an individual parameter did not satisfy the
133
- # constraints specified by the service
130
+ # The reason the parameter is invalid.
134
131
  # @return [String]
135
132
  #
136
133
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfigdata-2021-11-11/InvalidParameterDetail AWS API Documentation
@@ -146,34 +143,32 @@ module Aws::AppConfigData
146
143
  # @!attribute [rw] message
147
144
  # @return [String]
148
145
  #
146
+ # @!attribute [rw] resource_type
147
+ # The type of resource that was not found.
148
+ # @return [String]
149
+ #
149
150
  # @!attribute [rw] referenced_by
150
151
  # A map indicating which parameters in the request reference the
151
152
  # resource that was not found.
152
153
  # @return [Hash<String,String>]
153
154
  #
154
- # @!attribute [rw] resource_type
155
- # The type of resource that was not found.
156
- # @return [String]
157
- #
158
155
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfigdata-2021-11-11/ResourceNotFoundException AWS API Documentation
159
156
  #
160
157
  class ResourceNotFoundException < Struct.new(
161
158
  :message,
162
- :referenced_by,
163
- :resource_type)
159
+ :resource_type,
160
+ :referenced_by)
164
161
  SENSITIVE = []
165
162
  include Aws::Structure
166
163
  end
167
164
 
168
- # Request parameters for the StartConfigurationSession API.
169
- #
170
165
  # @note When making an API call, you may pass StartConfigurationSessionRequest
171
166
  # data as a hash:
172
167
  #
173
168
  # {
174
169
  # application_identifier: "Identifier", # required
175
- # configuration_profile_identifier: "Identifier", # required
176
170
  # environment_identifier: "Identifier", # required
171
+ # configuration_profile_identifier: "Identifier", # required
177
172
  # required_minimum_poll_interval_in_seconds: 1,
178
173
  # }
179
174
  #
@@ -181,43 +176,41 @@ module Aws::AppConfigData
181
176
  # The application ID or the application name.
182
177
  # @return [String]
183
178
  #
184
- # @!attribute [rw] configuration_profile_identifier
185
- # The configuration profile ID or the configuration profile name.
186
- # @return [String]
187
- #
188
179
  # @!attribute [rw] environment_identifier
189
180
  # The environment ID or the environment name.
190
181
  # @return [String]
191
182
  #
183
+ # @!attribute [rw] configuration_profile_identifier
184
+ # The configuration profile ID or the configuration profile name.
185
+ # @return [String]
186
+ #
192
187
  # @!attribute [rw] required_minimum_poll_interval_in_seconds
193
- # The interval at which your client will poll for configuration. If
194
- # provided, the service will throw a BadRequestException if the client
195
- # polls before the specified poll interval. By default, client poll
196
- # intervals are not enforced.
188
+ # Sets a constraint on a session. If you specify a value of, for
189
+ # example, 60 seconds, then the client that established the session
190
+ # can't call GetLatestConfiguration more frequently then every 60
191
+ # seconds.
197
192
  # @return [Integer]
198
193
  #
199
194
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfigdata-2021-11-11/StartConfigurationSessionRequest AWS API Documentation
200
195
  #
201
196
  class StartConfigurationSessionRequest < Struct.new(
202
197
  :application_identifier,
203
- :configuration_profile_identifier,
204
198
  :environment_identifier,
199
+ :configuration_profile_identifier,
205
200
  :required_minimum_poll_interval_in_seconds)
206
201
  SENSITIVE = []
207
202
  include Aws::Structure
208
203
  end
209
204
 
210
- # Response parameters for the StartConfigurationSession API.
211
- #
212
205
  # @!attribute [rw] initial_configuration_token
213
206
  # Token encapsulating state about the configuration session. Provide
214
- # this token to the GetLatestConfiguration API to retrieve
207
+ # this token to the `GetLatestConfiguration` API to retrieve
215
208
  # configuration data.
216
209
  #
217
210
  # This token should only be used once in your first call to
218
- # GetLatestConfiguration. You MUST use the new token in the
219
- # GetConfiguration response (NextPollConfigurationToken) in each
220
- # subsequent call to GetLatestConfiguration.
211
+ # `GetLatestConfiguration`. You MUST use the new token in the
212
+ # `GetLatestConfiguration` response (`NextPollConfigurationToken`) in
213
+ # each subsequent call to `GetLatestConfiguration`.
221
214
  # @return [String]
222
215
  #
223
216
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfigdata-2021-11-11/StartConfigurationSessionResponse AWS API Documentation
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-appconfigdata/customizations'
48
48
  # @!group service
49
49
  module Aws::AppConfigData
50
50
 
51
- GEM_VERSION = '1.2.0'
51
+ GEM_VERSION = '1.3.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appconfigdata
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.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-12-21 00:00:00.000000000 Z
11
+ date: 2022-01-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core