aws-sdk-connect 1.196.0 → 1.198.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +523 -205
- data/lib/aws-sdk-connect/client_api.rb +49 -1
- data/lib/aws-sdk-connect/types.rb +539 -183
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +43 -15
- data/sig/types.rbs +35 -0
- metadata +2 -2
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -109,7 +109,8 @@ module Aws
|
|
109
109
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#associate_approved_origin-instance_method
|
110
110
|
def associate_approved_origin: (
|
111
111
|
instance_id: ::String,
|
112
|
-
origin: ::String
|
112
|
+
origin: ::String,
|
113
|
+
?client_token: ::String
|
113
114
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
114
115
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
115
116
|
|
@@ -122,7 +123,8 @@ module Aws
|
|
122
123
|
},
|
123
124
|
?lex_v2_bot: {
|
124
125
|
alias_arn: ::String?
|
125
|
-
}
|
126
|
+
},
|
127
|
+
?client_token: ::String
|
126
128
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
127
129
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
128
130
|
|
@@ -182,14 +184,16 @@ module Aws
|
|
182
184
|
kinesis_firehose_config: {
|
183
185
|
firehose_arn: ::String
|
184
186
|
}?
|
185
|
-
}
|
187
|
+
},
|
188
|
+
?client_token: ::String
|
186
189
|
) -> _AssociateInstanceStorageConfigResponseSuccess
|
187
190
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateInstanceStorageConfigResponseSuccess
|
188
191
|
|
189
192
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#associate_lambda_function-instance_method
|
190
193
|
def associate_lambda_function: (
|
191
194
|
instance_id: ::String,
|
192
|
-
function_arn: ::String
|
195
|
+
function_arn: ::String,
|
196
|
+
?client_token: ::String
|
193
197
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
194
198
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
195
199
|
|
@@ -199,7 +203,8 @@ module Aws
|
|
199
203
|
lex_bot: {
|
200
204
|
name: ::String,
|
201
205
|
lex_region: ::String
|
202
|
-
}
|
206
|
+
},
|
207
|
+
?client_token: ::String
|
203
208
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
204
209
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
205
210
|
|
@@ -243,7 +248,8 @@ module Aws
|
|
243
248
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#associate_security_key-instance_method
|
244
249
|
def associate_security_key: (
|
245
250
|
instance_id: ::String,
|
246
|
-
key: ::String
|
251
|
+
key: ::String,
|
252
|
+
?client_token: ::String
|
247
253
|
) -> _AssociateSecurityKeyResponseSuccess
|
248
254
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateSecurityKeyResponseSuccess
|
249
255
|
|
@@ -1221,7 +1227,8 @@ module Aws
|
|
1221
1227
|
|
1222
1228
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_instance-instance_method
|
1223
1229
|
def delete_instance: (
|
1224
|
-
instance_id: ::String
|
1230
|
+
instance_id: ::String,
|
1231
|
+
?client_token: ::String
|
1225
1232
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1226
1233
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1227
1234
|
|
@@ -1683,7 +1690,8 @@ module Aws
|
|
1683
1690
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#disassociate_approved_origin-instance_method
|
1684
1691
|
def disassociate_approved_origin: (
|
1685
1692
|
instance_id: ::String,
|
1686
|
-
origin: ::String
|
1693
|
+
origin: ::String,
|
1694
|
+
?client_token: ::String
|
1687
1695
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1688
1696
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1689
1697
|
|
@@ -1696,7 +1704,8 @@ module Aws
|
|
1696
1704
|
},
|
1697
1705
|
?lex_v2_bot: {
|
1698
1706
|
alias_arn: ::String?
|
1699
|
-
}
|
1707
|
+
},
|
1708
|
+
?client_token: ::String
|
1700
1709
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1701
1710
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1702
1711
|
|
@@ -1715,14 +1724,16 @@ module Aws
|
|
1715
1724
|
def disassociate_instance_storage_config: (
|
1716
1725
|
instance_id: ::String,
|
1717
1726
|
association_id: ::String,
|
1718
|
-
resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS" | "EMAIL_MESSAGES")
|
1727
|
+
resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS" | "EMAIL_MESSAGES"),
|
1728
|
+
?client_token: ::String
|
1719
1729
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1720
1730
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1721
1731
|
|
1722
1732
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#disassociate_lambda_function-instance_method
|
1723
1733
|
def disassociate_lambda_function: (
|
1724
1734
|
instance_id: ::String,
|
1725
|
-
function_arn: ::String
|
1735
|
+
function_arn: ::String,
|
1736
|
+
?client_token: ::String
|
1726
1737
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1727
1738
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1728
1739
|
|
@@ -1730,7 +1741,8 @@ module Aws
|
|
1730
1741
|
def disassociate_lex_bot: (
|
1731
1742
|
instance_id: ::String,
|
1732
1743
|
bot_name: ::String,
|
1733
|
-
lex_region: ::String
|
1744
|
+
lex_region: ::String,
|
1745
|
+
?client_token: ::String
|
1734
1746
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1735
1747
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1736
1748
|
|
@@ -1765,7 +1777,8 @@ module Aws
|
|
1765
1777
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#disassociate_security_key-instance_method
|
1766
1778
|
def disassociate_security_key: (
|
1767
1779
|
instance_id: ::String,
|
1768
|
-
association_id: ::String
|
1780
|
+
association_id: ::String,
|
1781
|
+
?client_token: ::String
|
1769
1782
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1770
1783
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1771
1784
|
|
@@ -2108,6 +2121,19 @@ module Aws
|
|
2108
2121
|
) -> _ListAnalyticsDataAssociationsResponseSuccess
|
2109
2122
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAnalyticsDataAssociationsResponseSuccess
|
2110
2123
|
|
2124
|
+
interface _ListAnalyticsDataLakeDataSetsResponseSuccess
|
2125
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAnalyticsDataLakeDataSetsResponse]
|
2126
|
+
def results: () -> ::Array[Types::AnalyticsDataSetsResult]
|
2127
|
+
def next_token: () -> ::String
|
2128
|
+
end
|
2129
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_analytics_data_lake_data_sets-instance_method
|
2130
|
+
def list_analytics_data_lake_data_sets: (
|
2131
|
+
instance_id: ::String,
|
2132
|
+
?next_token: ::String,
|
2133
|
+
?max_results: ::Integer
|
2134
|
+
) -> _ListAnalyticsDataLakeDataSetsResponseSuccess
|
2135
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAnalyticsDataLakeDataSetsResponseSuccess
|
2136
|
+
|
2111
2137
|
interface _ListApprovedOriginsResponseSuccess
|
2112
2138
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListApprovedOriginsResponse]
|
2113
2139
|
def origins: () -> ::Array[::String]
|
@@ -4628,7 +4654,8 @@ module Aws
|
|
4628
4654
|
def update_instance_attribute: (
|
4629
4655
|
instance_id: ::String,
|
4630
4656
|
attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING" | "MULTI_PARTY_CHAT_CONFERENCE"),
|
4631
|
-
value: ::String
|
4657
|
+
value: ::String,
|
4658
|
+
?client_token: ::String
|
4632
4659
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
4633
4660
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
4634
4661
|
|
@@ -4662,7 +4689,8 @@ module Aws
|
|
4662
4689
|
kinesis_firehose_config: {
|
4663
4690
|
firehose_arn: ::String
|
4664
4691
|
}?
|
4665
|
-
}
|
4692
|
+
},
|
4693
|
+
?client_token: ::String
|
4666
4694
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
4667
4695
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
4668
4696
|
|
data/sig/types.rbs
CHANGED
@@ -142,6 +142,13 @@ module Aws::Connect
|
|
142
142
|
attr_accessor target_account_id: ::String
|
143
143
|
attr_accessor resource_share_id: ::String
|
144
144
|
attr_accessor resource_share_arn: ::String
|
145
|
+
attr_accessor resource_share_status: ::String
|
146
|
+
SENSITIVE: []
|
147
|
+
end
|
148
|
+
|
149
|
+
class AnalyticsDataSetsResult
|
150
|
+
attr_accessor data_set_id: ::String
|
151
|
+
attr_accessor data_set_name: ::String
|
145
152
|
SENSITIVE: []
|
146
153
|
end
|
147
154
|
|
@@ -178,6 +185,7 @@ module Aws::Connect
|
|
178
185
|
class AssociateApprovedOriginRequest
|
179
186
|
attr_accessor instance_id: ::String
|
180
187
|
attr_accessor origin: ::String
|
188
|
+
attr_accessor client_token: ::String
|
181
189
|
SENSITIVE: []
|
182
190
|
end
|
183
191
|
|
@@ -185,6 +193,7 @@ module Aws::Connect
|
|
185
193
|
attr_accessor instance_id: ::String
|
186
194
|
attr_accessor lex_bot: Types::LexBot
|
187
195
|
attr_accessor lex_v2_bot: Types::LexV2Bot
|
196
|
+
attr_accessor client_token: ::String
|
188
197
|
SENSITIVE: []
|
189
198
|
end
|
190
199
|
|
@@ -213,6 +222,7 @@ module Aws::Connect
|
|
213
222
|
attr_accessor instance_id: ::String
|
214
223
|
attr_accessor resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS" | "EMAIL_MESSAGES")
|
215
224
|
attr_accessor storage_config: Types::InstanceStorageConfig
|
225
|
+
attr_accessor client_token: ::String
|
216
226
|
SENSITIVE: []
|
217
227
|
end
|
218
228
|
|
@@ -224,12 +234,14 @@ module Aws::Connect
|
|
224
234
|
class AssociateLambdaFunctionRequest
|
225
235
|
attr_accessor instance_id: ::String
|
226
236
|
attr_accessor function_arn: ::String
|
237
|
+
attr_accessor client_token: ::String
|
227
238
|
SENSITIVE: []
|
228
239
|
end
|
229
240
|
|
230
241
|
class AssociateLexBotRequest
|
231
242
|
attr_accessor instance_id: ::String
|
232
243
|
attr_accessor lex_bot: Types::LexBot
|
244
|
+
attr_accessor client_token: ::String
|
233
245
|
SENSITIVE: []
|
234
246
|
end
|
235
247
|
|
@@ -257,6 +269,7 @@ module Aws::Connect
|
|
257
269
|
class AssociateSecurityKeyRequest
|
258
270
|
attr_accessor instance_id: ::String
|
259
271
|
attr_accessor key: ::String
|
272
|
+
attr_accessor client_token: ::String
|
260
273
|
SENSITIVE: []
|
261
274
|
end
|
262
275
|
|
@@ -1428,6 +1441,7 @@ module Aws::Connect
|
|
1428
1441
|
|
1429
1442
|
class DeleteInstanceRequest
|
1430
1443
|
attr_accessor instance_id: ::String
|
1444
|
+
attr_accessor client_token: ::String
|
1431
1445
|
SENSITIVE: []
|
1432
1446
|
end
|
1433
1447
|
|
@@ -1892,6 +1906,7 @@ module Aws::Connect
|
|
1892
1906
|
class DisassociateApprovedOriginRequest
|
1893
1907
|
attr_accessor instance_id: ::String
|
1894
1908
|
attr_accessor origin: ::String
|
1909
|
+
attr_accessor client_token: ::String
|
1895
1910
|
SENSITIVE: []
|
1896
1911
|
end
|
1897
1912
|
|
@@ -1899,6 +1914,7 @@ module Aws::Connect
|
|
1899
1914
|
attr_accessor instance_id: ::String
|
1900
1915
|
attr_accessor lex_bot: Types::LexBot
|
1901
1916
|
attr_accessor lex_v2_bot: Types::LexV2Bot
|
1917
|
+
attr_accessor client_token: ::String
|
1902
1918
|
SENSITIVE: []
|
1903
1919
|
end
|
1904
1920
|
|
@@ -1916,12 +1932,14 @@ module Aws::Connect
|
|
1916
1932
|
attr_accessor instance_id: ::String
|
1917
1933
|
attr_accessor association_id: ::String
|
1918
1934
|
attr_accessor resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS" | "EMAIL_MESSAGES")
|
1935
|
+
attr_accessor client_token: ::String
|
1919
1936
|
SENSITIVE: []
|
1920
1937
|
end
|
1921
1938
|
|
1922
1939
|
class DisassociateLambdaFunctionRequest
|
1923
1940
|
attr_accessor instance_id: ::String
|
1924
1941
|
attr_accessor function_arn: ::String
|
1942
|
+
attr_accessor client_token: ::String
|
1925
1943
|
SENSITIVE: []
|
1926
1944
|
end
|
1927
1945
|
|
@@ -1929,6 +1947,7 @@ module Aws::Connect
|
|
1929
1947
|
attr_accessor instance_id: ::String
|
1930
1948
|
attr_accessor bot_name: ::String
|
1931
1949
|
attr_accessor lex_region: ::String
|
1950
|
+
attr_accessor client_token: ::String
|
1932
1951
|
SENSITIVE: []
|
1933
1952
|
end
|
1934
1953
|
|
@@ -1955,6 +1974,7 @@ module Aws::Connect
|
|
1955
1974
|
class DisassociateSecurityKeyRequest
|
1956
1975
|
attr_accessor instance_id: ::String
|
1957
1976
|
attr_accessor association_id: ::String
|
1977
|
+
attr_accessor client_token: ::String
|
1958
1978
|
SENSITIVE: []
|
1959
1979
|
end
|
1960
1980
|
|
@@ -3002,6 +3022,19 @@ module Aws::Connect
|
|
3002
3022
|
SENSITIVE: []
|
3003
3023
|
end
|
3004
3024
|
|
3025
|
+
class ListAnalyticsDataLakeDataSetsRequest
|
3026
|
+
attr_accessor instance_id: ::String
|
3027
|
+
attr_accessor next_token: ::String
|
3028
|
+
attr_accessor max_results: ::Integer
|
3029
|
+
SENSITIVE: []
|
3030
|
+
end
|
3031
|
+
|
3032
|
+
class ListAnalyticsDataLakeDataSetsResponse
|
3033
|
+
attr_accessor results: ::Array[Types::AnalyticsDataSetsResult]
|
3034
|
+
attr_accessor next_token: ::String
|
3035
|
+
SENSITIVE: []
|
3036
|
+
end
|
3037
|
+
|
3005
3038
|
class ListApprovedOriginsRequest
|
3006
3039
|
attr_accessor instance_id: ::String
|
3007
3040
|
attr_accessor next_token: ::String
|
@@ -5727,6 +5760,7 @@ module Aws::Connect
|
|
5727
5760
|
attr_accessor instance_id: ::String
|
5728
5761
|
attr_accessor attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING" | "MULTI_PARTY_CHAT_CONFERENCE")
|
5729
5762
|
attr_accessor value: ::String
|
5763
|
+
attr_accessor client_token: ::String
|
5730
5764
|
SENSITIVE: []
|
5731
5765
|
end
|
5732
5766
|
|
@@ -5735,6 +5769,7 @@ module Aws::Connect
|
|
5735
5769
|
attr_accessor association_id: ::String
|
5736
5770
|
attr_accessor resource_type: ("CHAT_TRANSCRIPTS" | "CALL_RECORDINGS" | "SCHEDULED_REPORTS" | "MEDIA_STREAMS" | "CONTACT_TRACE_RECORDS" | "AGENT_EVENTS" | "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS" | "ATTACHMENTS" | "CONTACT_EVALUATIONS" | "SCREEN_RECORDINGS" | "REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS" | "REAL_TIME_CONTACT_ANALYSIS_VOICE_SEGMENTS" | "EMAIL_MESSAGES")
|
5737
5771
|
attr_accessor storage_config: Types::InstanceStorageConfig
|
5772
|
+
attr_accessor client_token: ::String
|
5738
5773
|
SENSITIVE: []
|
5739
5774
|
end
|
5740
5775
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-connect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.198.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: 2025-02-
|
11
|
+
date: 2025-02-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|