aws-sdk-transfer 1.131.0 → 1.132.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: 99060ef817ebe570416619119a7a0fa4ab442efeb54eb3e48cf6dae7f18c8a76
4
- data.tar.gz: b3b5d4d2f5bd66ead0fb09d8b2e323a6c2d1310a00a0d2479842a9cb0ad4161d
3
+ metadata.gz: bc8dbd253aeb6a1356cdc93406f263984c63de6ed6cf73e94363acec4871ef09
4
+ data.tar.gz: 7f5812df8d0b225b7a89ddc5e41472e02add6e78df21676a39ccb8e7a1fe27ba
5
5
  SHA512:
6
- metadata.gz: 5ec770e7f00eb24b5a77eadeb252b4433be9f1ebe58e22fd7399f497fc08a5601bee7f4a935a20e808c4ae1c0ca5e1dcdf4d7219c64dd6e68aa8a98831aa1890
7
- data.tar.gz: 979df390f2e01867adc77a50fe4c1271a37ea536715b6cfe9d2285f90b7cdb37ad8ce23ad0efe226ef7a32910d9797beb7941f49a3741b62f8734dd2e86ec6ea
6
+ metadata.gz: 5ded6173766cc0e56ea5302c055994c1c1304076621fa5fdb85d354fb835681feff727fc340f46f273e63ab68baacb71c1fbde64d110284f2243d6447891c519
7
+ data.tar.gz: 2e60261bcfac534f4b20561f09519b8915e57cc274bd7605d784e737b509ac7b0a43c49a1e2823adcb706860bd2bf42dd543c6a3bad51e96ff41e9cec013c761
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.132.0 (2026-02-05)
5
+ ------------------
6
+
7
+ * Feature - Adds support for the customer to send custom HTTP headers and configure an AS2 Connector to receive Asynchronous MDNs from their trading partner
8
+
4
9
  1.131.0 (2026-01-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.131.0
1
+ 1.132.0
@@ -913,9 +913,13 @@ module Aws::Transfer
913
913
  # encryption_algorithm: "AES128_CBC", # accepts AES128_CBC, AES192_CBC, AES256_CBC, DES_EDE3_CBC, NONE
914
914
  # signing_algorithm: "SHA256", # accepts SHA256, SHA384, SHA512, SHA1, NONE
915
915
  # mdn_signing_algorithm: "SHA256", # accepts SHA256, SHA384, SHA512, SHA1, NONE, DEFAULT
916
- # mdn_response: "SYNC", # accepts SYNC, NONE
916
+ # mdn_response: "SYNC", # accepts SYNC, NONE, ASYNC
917
917
  # basic_auth_secret_id: "As2ConnectorSecretId",
918
918
  # preserve_content_type: "ENABLED", # accepts ENABLED, DISABLED
919
+ # async_mdn_config: {
920
+ # url: "Url",
921
+ # server_ids: ["ServerId"],
922
+ # },
919
923
  # },
920
924
  # access_role: "Role", # required
921
925
  # logging_role: "Role",
@@ -2417,9 +2421,12 @@ module Aws::Transfer
2417
2421
  # resp.connector.as_2_config.encryption_algorithm #=> String, one of "AES128_CBC", "AES192_CBC", "AES256_CBC", "DES_EDE3_CBC", "NONE"
2418
2422
  # resp.connector.as_2_config.signing_algorithm #=> String, one of "SHA256", "SHA384", "SHA512", "SHA1", "NONE"
2419
2423
  # resp.connector.as_2_config.mdn_signing_algorithm #=> String, one of "SHA256", "SHA384", "SHA512", "SHA1", "NONE", "DEFAULT"
2420
- # resp.connector.as_2_config.mdn_response #=> String, one of "SYNC", "NONE"
2424
+ # resp.connector.as_2_config.mdn_response #=> String, one of "SYNC", "NONE", "ASYNC"
2421
2425
  # resp.connector.as_2_config.basic_auth_secret_id #=> String
2422
2426
  # resp.connector.as_2_config.preserve_content_type #=> String, one of "ENABLED", "DISABLED"
2427
+ # resp.connector.as_2_config.async_mdn_config.url #=> String
2428
+ # resp.connector.as_2_config.async_mdn_config.server_ids #=> Array
2429
+ # resp.connector.as_2_config.async_mdn_config.server_ids[0] #=> String
2423
2430
  # resp.connector.access_role #=> String
2424
2431
  # resp.connector.logging_role #=> String
2425
2432
  # resp.connector.tags #=> Array
@@ -4103,6 +4110,11 @@ module Aws::Transfer
4103
4110
  # the destination for transferred files is the SFTP user's home
4104
4111
  # directory.
4105
4112
  #
4113
+ # @option params [Array<Types::CustomHttpHeader>] :custom_http_headers
4114
+ # An array of key-value pairs that represent custom HTTP headers to
4115
+ # include in AS2 messages. These headers are added to the AS2 message
4116
+ # when sending files to your trading partner.
4117
+ #
4106
4118
  # @return [Types::StartFileTransferResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4107
4119
  #
4108
4120
  # * {Types::StartFileTransferResponse#transfer_id #transfer_id} => String
@@ -4115,6 +4127,12 @@ module Aws::Transfer
4115
4127
  # retrieve_file_paths: ["FilePath"],
4116
4128
  # local_directory_path: "FilePath",
4117
4129
  # remote_directory_path: "FilePath",
4130
+ # custom_http_headers: [
4131
+ # {
4132
+ # key: "CustomHttpHeaderKeyType",
4133
+ # value: "CustomHttpHeaderValueType",
4134
+ # },
4135
+ # ],
4118
4136
  # })
4119
4137
  #
4120
4138
  # @example Response structure
@@ -4931,9 +4949,13 @@ module Aws::Transfer
4931
4949
  # encryption_algorithm: "AES128_CBC", # accepts AES128_CBC, AES192_CBC, AES256_CBC, DES_EDE3_CBC, NONE
4932
4950
  # signing_algorithm: "SHA256", # accepts SHA256, SHA384, SHA512, SHA1, NONE
4933
4951
  # mdn_signing_algorithm: "SHA256", # accepts SHA256, SHA384, SHA512, SHA1, NONE, DEFAULT
4934
- # mdn_response: "SYNC", # accepts SYNC, NONE
4952
+ # mdn_response: "SYNC", # accepts SYNC, NONE, ASYNC
4935
4953
  # basic_auth_secret_id: "As2ConnectorSecretId",
4936
4954
  # preserve_content_type: "ENABLED", # accepts ENABLED, DISABLED
4955
+ # async_mdn_config: {
4956
+ # url: "Url",
4957
+ # server_ids: ["ServerId"],
4958
+ # },
4937
4959
  # },
4938
4960
  # access_role: "Role",
4939
4961
  # logging_role: "Role",
@@ -5732,7 +5754,7 @@ module Aws::Transfer
5732
5754
  tracer: tracer
5733
5755
  )
5734
5756
  context[:gem_name] = 'aws-sdk-transfer'
5735
- context[:gem_version] = '1.131.0'
5757
+ context[:gem_version] = '1.132.0'
5736
5758
  Seahorse::Client::Request.new(handlers, context)
5737
5759
  end
5738
5760
 
@@ -20,6 +20,8 @@ module Aws::Transfer
20
20
  AgreementId = Shapes::StringShape.new(name: 'AgreementId')
21
21
  AgreementStatusType = Shapes::StringShape.new(name: 'AgreementStatusType')
22
22
  Arn = Shapes::StringShape.new(name: 'Arn')
23
+ As2AsyncMdnConnectorConfig = Shapes::StructureShape.new(name: 'As2AsyncMdnConnectorConfig')
24
+ As2AsyncMdnServerIds = Shapes::ListShape.new(name: 'As2AsyncMdnServerIds')
23
25
  As2ConnectorConfig = Shapes::StructureShape.new(name: 'As2ConnectorConfig')
24
26
  As2ConnectorSecretId = Shapes::StringShape.new(name: 'As2ConnectorSecretId')
25
27
  As2Id = Shapes::StringShape.new(name: 'As2Id')
@@ -65,6 +67,10 @@ module Aws::Transfer
65
67
  CreateWorkflowRequest = Shapes::StructureShape.new(name: 'CreateWorkflowRequest')
66
68
  CreateWorkflowResponse = Shapes::StructureShape.new(name: 'CreateWorkflowResponse')
67
69
  CustomDirectoriesType = Shapes::StructureShape.new(name: 'CustomDirectoriesType')
70
+ CustomHttpHeader = Shapes::StructureShape.new(name: 'CustomHttpHeader')
71
+ CustomHttpHeaderKeyType = Shapes::StringShape.new(name: 'CustomHttpHeaderKeyType')
72
+ CustomHttpHeaderValueType = Shapes::StringShape.new(name: 'CustomHttpHeaderValueType')
73
+ CustomHttpHeaders = Shapes::ListShape.new(name: 'CustomHttpHeaders')
68
74
  CustomStepDetails = Shapes::StructureShape.new(name: 'CustomStepDetails')
69
75
  CustomStepStatus = Shapes::StringShape.new(name: 'CustomStepStatus')
70
76
  CustomStepTarget = Shapes::StringShape.new(name: 'CustomStepTarget')
@@ -414,6 +420,12 @@ module Aws::Transfer
414
420
 
415
421
  AddressAllocationIds.member = Shapes::ShapeRef.new(shape: AddressAllocationId)
416
422
 
423
+ As2AsyncMdnConnectorConfig.add_member(:url, Shapes::ShapeRef.new(shape: Url, location_name: "Url"))
424
+ As2AsyncMdnConnectorConfig.add_member(:server_ids, Shapes::ShapeRef.new(shape: As2AsyncMdnServerIds, location_name: "ServerIds"))
425
+ As2AsyncMdnConnectorConfig.struct_class = Types::As2AsyncMdnConnectorConfig
426
+
427
+ As2AsyncMdnServerIds.member = Shapes::ShapeRef.new(shape: ServerId)
428
+
417
429
  As2ConnectorConfig.add_member(:local_profile_id, Shapes::ShapeRef.new(shape: ProfileId, location_name: "LocalProfileId"))
418
430
  As2ConnectorConfig.add_member(:partner_profile_id, Shapes::ShapeRef.new(shape: ProfileId, location_name: "PartnerProfileId"))
419
431
  As2ConnectorConfig.add_member(:message_subject, Shapes::ShapeRef.new(shape: MessageSubject, location_name: "MessageSubject"))
@@ -424,6 +436,7 @@ module Aws::Transfer
424
436
  As2ConnectorConfig.add_member(:mdn_response, Shapes::ShapeRef.new(shape: MdnResponse, location_name: "MdnResponse"))
425
437
  As2ConnectorConfig.add_member(:basic_auth_secret_id, Shapes::ShapeRef.new(shape: As2ConnectorSecretId, location_name: "BasicAuthSecretId"))
426
438
  As2ConnectorConfig.add_member(:preserve_content_type, Shapes::ShapeRef.new(shape: PreserveContentType, location_name: "PreserveContentType"))
439
+ As2ConnectorConfig.add_member(:async_mdn_config, Shapes::ShapeRef.new(shape: As2AsyncMdnConnectorConfig, location_name: "AsyncMdnConfig"))
427
440
  As2ConnectorConfig.struct_class = Types::As2ConnectorConfig
428
441
 
429
442
  As2Transports.member = Shapes::ShapeRef.new(shape: As2Transport)
@@ -575,6 +588,12 @@ module Aws::Transfer
575
588
  CustomDirectoriesType.add_member(:temporary_files_directory, Shapes::ShapeRef.new(shape: HomeDirectory, required: true, location_name: "TemporaryFilesDirectory"))
576
589
  CustomDirectoriesType.struct_class = Types::CustomDirectoriesType
577
590
 
591
+ CustomHttpHeader.add_member(:key, Shapes::ShapeRef.new(shape: CustomHttpHeaderKeyType, location_name: "Key"))
592
+ CustomHttpHeader.add_member(:value, Shapes::ShapeRef.new(shape: CustomHttpHeaderValueType, location_name: "Value"))
593
+ CustomHttpHeader.struct_class = Types::CustomHttpHeader
594
+
595
+ CustomHttpHeaders.member = Shapes::ShapeRef.new(shape: CustomHttpHeader)
596
+
578
597
  CustomStepDetails.add_member(:name, Shapes::ShapeRef.new(shape: WorkflowStepName, location_name: "Name"))
579
598
  CustomStepDetails.add_member(:target, Shapes::ShapeRef.new(shape: CustomStepTarget, location_name: "Target"))
580
599
  CustomStepDetails.add_member(:timeout_seconds, Shapes::ShapeRef.new(shape: CustomStepTimeoutSeconds, location_name: "TimeoutSeconds"))
@@ -1342,6 +1361,7 @@ module Aws::Transfer
1342
1361
  StartFileTransferRequest.add_member(:retrieve_file_paths, Shapes::ShapeRef.new(shape: FilePaths, location_name: "RetrieveFilePaths"))
1343
1362
  StartFileTransferRequest.add_member(:local_directory_path, Shapes::ShapeRef.new(shape: FilePath, location_name: "LocalDirectoryPath"))
1344
1363
  StartFileTransferRequest.add_member(:remote_directory_path, Shapes::ShapeRef.new(shape: FilePath, location_name: "RemoteDirectoryPath"))
1364
+ StartFileTransferRequest.add_member(:custom_http_headers, Shapes::ShapeRef.new(shape: CustomHttpHeaders, location_name: "CustomHttpHeaders"))
1345
1365
  StartFileTransferRequest.struct_class = Types::StartFileTransferRequest
1346
1366
 
1347
1367
  StartFileTransferResponse.add_member(:transfer_id, Shapes::ShapeRef.new(shape: TransferId, required: true, location_name: "TransferId"))
@@ -23,6 +23,29 @@ module Aws::Transfer
23
23
  include Aws::Structure
24
24
  end
25
25
 
26
+ # Contains the configuration details for asynchronous Message
27
+ # Disposition Notification (MDN) responses in AS2 connectors. This
28
+ # configuration specifies where asynchronous MDN responses should be
29
+ # sent and which servers should handle them.
30
+ #
31
+ # @!attribute [rw] url
32
+ # The URL endpoint where asynchronous MDN responses should be sent.
33
+ # @return [String]
34
+ #
35
+ # @!attribute [rw] server_ids
36
+ # A list of server identifiers that can handle asynchronous MDN
37
+ # responses. You can specify between 1 and 10 server IDs.
38
+ # @return [Array<String>]
39
+ #
40
+ # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/As2AsyncMdnConnectorConfig AWS API Documentation
41
+ #
42
+ class As2AsyncMdnConnectorConfig < Struct.new(
43
+ :url,
44
+ :server_ids)
45
+ SENSITIVE = []
46
+ include Aws::Structure
47
+ end
48
+
26
49
  # Contains the details for an AS2 connector object. The connector object
27
50
  # is used for AS2 outbound processes, to connect the Transfer Family
28
51
  # customer with the trading partner.
@@ -127,6 +150,13 @@ module Aws::Transfer
127
150
  # when you create an AS2 connector by calling the API directly.
128
151
  # @return [String]
129
152
  #
153
+ # @!attribute [rw] async_mdn_config
154
+ # Configuration settings for asynchronous Message Disposition
155
+ # Notification (MDN) responses. This allows you to configure where
156
+ # asynchronous MDN responses should be sent and which servers should
157
+ # handle them.
158
+ # @return [Types::As2AsyncMdnConnectorConfig]
159
+ #
130
160
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/As2ConnectorConfig AWS API Documentation
131
161
  #
132
162
  class As2ConnectorConfig < Struct.new(
@@ -139,8 +169,9 @@ module Aws::Transfer
139
169
  :mdn_signing_algorithm,
140
170
  :mdn_response,
141
171
  :basic_auth_secret_id,
142
- :preserve_content_type)
143
- SENSITIVE = []
172
+ :preserve_content_type,
173
+ :async_mdn_config)
174
+ SENSITIVE = [:message_subject]
144
175
  include Aws::Structure
145
176
  end
146
177
 
@@ -1514,6 +1545,26 @@ module Aws::Transfer
1514
1545
  include Aws::Structure
1515
1546
  end
1516
1547
 
1548
+ # Represents a custom HTTP header that can be included in AS2 messages.
1549
+ # Each header consists of a key-value pair.
1550
+ #
1551
+ # @!attribute [rw] key
1552
+ # The name of the custom HTTP header.
1553
+ # @return [String]
1554
+ #
1555
+ # @!attribute [rw] value
1556
+ # The value of the custom HTTP header.
1557
+ # @return [String]
1558
+ #
1559
+ # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/CustomHttpHeader AWS API Documentation
1560
+ #
1561
+ class CustomHttpHeader < Struct.new(
1562
+ :key,
1563
+ :value)
1564
+ SENSITIVE = [:key, :value]
1565
+ include Aws::Structure
1566
+ end
1567
+
1517
1568
  # Each step type has its own `StepDetails` structure.
1518
1569
  #
1519
1570
  # @!attribute [rw] name
@@ -6262,6 +6313,12 @@ module Aws::Transfer
6262
6313
  # SFTP user's home directory.
6263
6314
  # @return [String]
6264
6315
  #
6316
+ # @!attribute [rw] custom_http_headers
6317
+ # An array of key-value pairs that represent custom HTTP headers to
6318
+ # include in AS2 messages. These headers are added to the AS2 message
6319
+ # when sending files to your trading partner.
6320
+ # @return [Array<Types::CustomHttpHeader>]
6321
+ #
6265
6322
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/StartFileTransferRequest AWS API Documentation
6266
6323
  #
6267
6324
  class StartFileTransferRequest < Struct.new(
@@ -6269,8 +6326,9 @@ module Aws::Transfer
6269
6326
  :send_file_paths,
6270
6327
  :retrieve_file_paths,
6271
6328
  :local_directory_path,
6272
- :remote_directory_path)
6273
- SENSITIVE = []
6329
+ :remote_directory_path,
6330
+ :custom_http_headers)
6331
+ SENSITIVE = [:custom_http_headers]
6274
6332
  include Aws::Structure
6275
6333
  end
6276
6334
 
@@ -55,7 +55,7 @@ module Aws::Transfer
55
55
  autoload :EndpointProvider, 'aws-sdk-transfer/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-transfer/endpoints'
57
57
 
58
- GEM_VERSION = '1.131.0'
58
+ GEM_VERSION = '1.132.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -153,9 +153,13 @@ module Aws
153
153
  encryption_algorithm: ("AES128_CBC" | "AES192_CBC" | "AES256_CBC" | "DES_EDE3_CBC" | "NONE")?,
154
154
  signing_algorithm: ("SHA256" | "SHA384" | "SHA512" | "SHA1" | "NONE")?,
155
155
  mdn_signing_algorithm: ("SHA256" | "SHA384" | "SHA512" | "SHA1" | "NONE" | "DEFAULT")?,
156
- mdn_response: ("SYNC" | "NONE")?,
156
+ mdn_response: ("SYNC" | "NONE" | "ASYNC")?,
157
157
  basic_auth_secret_id: ::String?,
158
- preserve_content_type: ("ENABLED" | "DISABLED")?
158
+ preserve_content_type: ("ENABLED" | "DISABLED")?,
159
+ async_mdn_config: {
160
+ url: ::String?,
161
+ server_ids: Array[::String]?
162
+ }?
159
163
  },
160
164
  access_role: ::String,
161
165
  ?logging_role: ::String,
@@ -947,7 +951,13 @@ module Aws
947
951
  ?send_file_paths: Array[::String],
948
952
  ?retrieve_file_paths: Array[::String],
949
953
  ?local_directory_path: ::String,
950
- ?remote_directory_path: ::String
954
+ ?remote_directory_path: ::String,
955
+ ?custom_http_headers: Array[
956
+ {
957
+ key: ::String?,
958
+ value: ::String?
959
+ },
960
+ ]
951
961
  ) -> _StartFileTransferResponseSuccess
952
962
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartFileTransferResponseSuccess
953
963
 
@@ -1118,9 +1128,13 @@ module Aws
1118
1128
  encryption_algorithm: ("AES128_CBC" | "AES192_CBC" | "AES256_CBC" | "DES_EDE3_CBC" | "NONE")?,
1119
1129
  signing_algorithm: ("SHA256" | "SHA384" | "SHA512" | "SHA1" | "NONE")?,
1120
1130
  mdn_signing_algorithm: ("SHA256" | "SHA384" | "SHA512" | "SHA1" | "NONE" | "DEFAULT")?,
1121
- mdn_response: ("SYNC" | "NONE")?,
1131
+ mdn_response: ("SYNC" | "NONE" | "ASYNC")?,
1122
1132
  basic_auth_secret_id: ::String?,
1123
- preserve_content_type: ("ENABLED" | "DISABLED")?
1133
+ preserve_content_type: ("ENABLED" | "DISABLED")?,
1134
+ async_mdn_config: {
1135
+ url: ::String?,
1136
+ server_ids: Array[::String]?
1137
+ }?
1124
1138
  },
1125
1139
  ?access_role: ::String,
1126
1140
  ?logging_role: ::String,
data/sig/types.rbs CHANGED
@@ -13,6 +13,12 @@ module Aws::Transfer
13
13
  SENSITIVE: []
14
14
  end
15
15
 
16
+ class As2AsyncMdnConnectorConfig
17
+ attr_accessor url: ::String
18
+ attr_accessor server_ids: ::Array[::String]
19
+ SENSITIVE: []
20
+ end
21
+
16
22
  class As2ConnectorConfig
17
23
  attr_accessor local_profile_id: ::String
18
24
  attr_accessor partner_profile_id: ::String
@@ -21,10 +27,11 @@ module Aws::Transfer
21
27
  attr_accessor encryption_algorithm: ("AES128_CBC" | "AES192_CBC" | "AES256_CBC" | "DES_EDE3_CBC" | "NONE")
22
28
  attr_accessor signing_algorithm: ("SHA256" | "SHA384" | "SHA512" | "SHA1" | "NONE")
23
29
  attr_accessor mdn_signing_algorithm: ("SHA256" | "SHA384" | "SHA512" | "SHA1" | "NONE" | "DEFAULT")
24
- attr_accessor mdn_response: ("SYNC" | "NONE")
30
+ attr_accessor mdn_response: ("SYNC" | "NONE" | "ASYNC")
25
31
  attr_accessor basic_auth_secret_id: ::String
26
32
  attr_accessor preserve_content_type: ("ENABLED" | "DISABLED")
27
- SENSITIVE: []
33
+ attr_accessor async_mdn_config: Types::As2AsyncMdnConnectorConfig
34
+ SENSITIVE: [:message_subject]
28
35
  end
29
36
 
30
37
  class ConflictException
@@ -217,6 +224,12 @@ module Aws::Transfer
217
224
  SENSITIVE: []
218
225
  end
219
226
 
227
+ class CustomHttpHeader
228
+ attr_accessor key: ::String
229
+ attr_accessor value: ::String
230
+ SENSITIVE: [:key, :value]
231
+ end
232
+
220
233
  class CustomStepDetails
221
234
  attr_accessor name: ::String
222
235
  attr_accessor target: ::String
@@ -1213,6 +1226,7 @@ module Aws::Transfer
1213
1226
  attr_accessor retrieve_file_paths: ::Array[::String]
1214
1227
  attr_accessor local_directory_path: ::String
1215
1228
  attr_accessor remote_directory_path: ::String
1229
+ attr_accessor custom_http_headers: ::Array[Types::CustomHttpHeader]
1216
1230
  SENSITIVE: []
1217
1231
  end
1218
1232
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-transfer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.131.0
4
+ version: 1.132.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services