aws-sdk-transfer 1.43.0 → 1.47.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: 24bc91950ddc4c3f800194aa45fef433ed6c4a86e4a1b3710ad8c19a6c0d449f
4
- data.tar.gz: 789d5a5a296c65e84678445df9f277f4b5658a04ca42f9d99b672a25dbb4f5af
3
+ metadata.gz: e506a67cabd21108c149c0bcd0fcd2b078d49cc9706bfcbcb7cff4c727687626
4
+ data.tar.gz: 950a4529cc3a61dcb02e761a93fd3636339220db7e0c5d2b01b8beb448015a2f
5
5
  SHA512:
6
- metadata.gz: d2bd0f9449cbe31ca1bab476113d8a434acd9bedb961b23b02faf69325386869a64339d5ae4fefad5a10208aecb8f8378407f846cded7c205260e805c40e939a
7
- data.tar.gz: 3a7bec93d5e183c16d4773bad20e19169c2c8bf7c0159303235b1cab92bff9e70123a8efadca7b8da0c84d61a981940598622c7df72ebc5ecacf418b05d3846b
6
+ metadata.gz: 1b9be93382ef08bd87c6951222ab0cea50b78ce5088b097cb585bd1510db87ab132313f53f7f89981441c82f95e8b3d8c70b1fb086823e2991e47f267ec2c977
7
+ data.tar.gz: d139c6ffe449b8aed1f1af7d6cca4957b8092fcf22d56385cc8c8321aa7c1216713d97dcb45bcf4c851ce803e0cf2f545c26538a742cb2e5f992efc6ea139d73
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.47.0 (2022-02-18)
5
+ ------------------
6
+
7
+ * Feature - Properties for Transfer Family used with SFTP, FTP, and FTPS protocols. Display Banners are bodies of text that can be displayed before and/or after a user authenticates onto a server using one of the previously mentioned protocols.
8
+
9
+ 1.46.0 (2022-02-03)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.45.0 (2021-12-21)
15
+ ------------------
16
+
17
+ * Feature - Property for Transfer Family used with the FTPS protocol. TLS Session Resumption provides a mechanism to resume or share a negotiated secret key between the control and data connection for an FTPS session.
18
+
19
+ 1.44.0 (2021-11-30)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.43.0 (2021-11-15)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.43.0
1
+ 1.47.0
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
31
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
30
32
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
33
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
32
34
 
@@ -73,6 +75,8 @@ module Aws::Transfer
73
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
76
  add_plugin(Aws::Plugins::TransferEncoding)
75
77
  add_plugin(Aws::Plugins::HttpChecksum)
78
+ add_plugin(Aws::Plugins::DefaultsMode)
79
+ add_plugin(Aws::Plugins::RecursionDetection)
76
80
  add_plugin(Aws::Plugins::SignatureV4)
77
81
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
78
82
 
@@ -119,7 +123,9 @@ module Aws::Transfer
119
123
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
124
  # are very aggressive. Construct and pass an instance of
121
125
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
126
+ # enable retries and extended timeouts. Instance profile credential
127
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
128
+ # to true.
123
129
  #
124
130
  # @option options [required, String] :region
125
131
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +179,10 @@ module Aws::Transfer
173
179
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
180
  # a clock skew correction and retry requests with skewed client clocks.
175
181
  #
182
+ # @option options [String] :defaults_mode ("legacy")
183
+ # See {Aws::DefaultsModeConfiguration} for a list of the
184
+ # accepted modes and the configuration defaults that are included.
185
+ #
176
186
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
187
  # Set to true to disable SDK automatically adding host prefix
178
188
  # to default service endpoint when available.
@@ -305,7 +315,7 @@ module Aws::Transfer
305
315
  # seconds to wait when opening a HTTP session before raising a
306
316
  # `Timeout::Error`.
307
317
  #
308
- # @option options [Integer] :http_read_timeout (60) The default
318
+ # @option options [Float] :http_read_timeout (60) The default
309
319
  # number of seconds to wait for response data. This value can
310
320
  # safely be set per-request on the session.
311
321
  #
@@ -321,6 +331,9 @@ module Aws::Transfer
321
331
  # disables this behaviour. This value can safely be set per
322
332
  # request on the session.
323
333
  #
334
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
335
+ # in seconds.
336
+ #
324
337
  # @option options [Boolean] :http_wire_trace (false) When `true`,
325
338
  # HTTP debug output will be sent to the `:logger`.
326
339
  #
@@ -641,7 +654,7 @@ module Aws::Transfer
641
654
  # API Gateway endpoint URL to call for authentication using the
642
655
  # `IdentityProviderDetails` parameter.
643
656
  #
644
- # Use the `LAMBDA` value to directly use a Lambda function as your
657
+ # Use the `AWS_LAMBDA` value to directly use a Lambda function as your
645
658
  # identity provider. If you choose this value, you must specify the ARN
646
659
  # for the lambda function in the `Function` parameter for the
647
660
  # `IdentityProviderDetails` data type.
@@ -652,6 +665,10 @@ module Aws::Transfer
652
665
  # on Amazon CloudWatch logging for Amazon S3 or Amazon EFS events. When
653
666
  # set, user activity can be viewed in your CloudWatch logs.
654
667
  #
668
+ # @option params [String] :post_authentication_login_banner
669
+ #
670
+ # @option params [String] :pre_authentication_login_banner
671
+ #
655
672
  # @option params [Array<String>] :protocols
656
673
  # Specifies the file transfer protocol or protocols over which your file
657
674
  # transfer protocol client can connect to your server's endpoint. The
@@ -682,6 +699,17 @@ module Aws::Transfer
682
699
  #
683
700
  # </note>
684
701
  #
702
+ # @option params [Types::ProtocolDetails] :protocol_details
703
+ # The protocol settings that are configured for your server.
704
+ #
705
+ # Use the `PassiveIp` parameter to indicate passive mode (for FTP and
706
+ # FTPS protocols). Enter a single dotted-quad IPv4 address, such as the
707
+ # external IP address of a firewall, router, or load balancer.
708
+ #
709
+ # Use the `TlsSessionResumptionMode` parameter to determine whether or
710
+ # not your Transfer server resumes recent, negotiated sessions through a
711
+ # unique session ID.
712
+ #
685
713
  # @option params [String] :security_policy_name
686
714
  # Specifies the name of the security policy that is attached to the
687
715
  # server.
@@ -719,7 +747,13 @@ module Aws::Transfer
719
747
  # },
720
748
  # identity_provider_type: "SERVICE_MANAGED", # accepts SERVICE_MANAGED, API_GATEWAY, AWS_DIRECTORY_SERVICE, AWS_LAMBDA
721
749
  # logging_role: "Role",
750
+ # post_authentication_login_banner: "PostAuthenticationLoginBanner",
751
+ # pre_authentication_login_banner: "PreAuthenticationLoginBanner",
722
752
  # protocols: ["SFTP"], # accepts SFTP, FTP, FTPS
753
+ # protocol_details: {
754
+ # passive_ip: "PassiveIp",
755
+ # tls_session_resumption_mode: "DISABLED", # accepts DISABLED, ENABLED, ENFORCED
756
+ # },
723
757
  # security_policy_name: "SecurityPolicyName",
724
758
  # tags: [
725
759
  # {
@@ -861,6 +895,11 @@ module Aws::Transfer
861
895
  # The public portion of the Secure Shell (SSH) key used to authenticate
862
896
  # the user to the server.
863
897
  #
898
+ # <note markdown="1"> Currently, Transfer Family does not accept elliptical curve keys (keys
899
+ # beginning with `ecdsa`).
900
+ #
901
+ # </note>
902
+ #
864
903
  # @option params [Array<Types::Tag>] :tags
865
904
  # Key-value pairs that can be used to group and search for users. Tags
866
905
  # are metadata attached to users for any purpose.
@@ -1423,6 +1462,7 @@ module Aws::Transfer
1423
1462
  # resp.server.arn #=> String
1424
1463
  # resp.server.certificate #=> String
1425
1464
  # resp.server.protocol_details.passive_ip #=> String
1465
+ # resp.server.protocol_details.tls_session_resumption_mode #=> String, one of "DISABLED", "ENABLED", "ENFORCED"
1426
1466
  # resp.server.domain #=> String, one of "S3", "EFS"
1427
1467
  # resp.server.endpoint_details.address_allocation_ids #=> Array
1428
1468
  # resp.server.endpoint_details.address_allocation_ids[0] #=> String
@@ -1440,6 +1480,8 @@ module Aws::Transfer
1440
1480
  # resp.server.identity_provider_details.function #=> String
1441
1481
  # resp.server.identity_provider_type #=> String, one of "SERVICE_MANAGED", "API_GATEWAY", "AWS_DIRECTORY_SERVICE", "AWS_LAMBDA"
1442
1482
  # resp.server.logging_role #=> String
1483
+ # resp.server.post_authentication_login_banner #=> String
1484
+ # resp.server.pre_authentication_login_banner #=> String
1443
1485
  # resp.server.protocols #=> Array
1444
1486
  # resp.server.protocols[0] #=> String, one of "SFTP", "FTP", "FTPS"
1445
1487
  # resp.server.security_policy_name #=> String
@@ -2474,6 +2516,10 @@ module Aws::Transfer
2474
2516
  # FTPS protocols). Enter a single dotted-quad IPv4 address, such as the
2475
2517
  # external IP address of a firewall, router, or load balancer.
2476
2518
  #
2519
+ # Use the `TlsSessionResumptionMode` parameter to determine whether or
2520
+ # not your Transfer server resumes recent, negotiated sessions through a
2521
+ # unique session ID.
2522
+ #
2477
2523
  # @option params [Types::EndpointDetails] :endpoint_details
2478
2524
  # The virtual private cloud (VPC) endpoint settings that are configured
2479
2525
  # for your server. When you host your endpoint within your VPC, you can
@@ -2534,6 +2580,10 @@ module Aws::Transfer
2534
2580
  # on Amazon CloudWatch logging for Amazon S3 or Amazon EFS events. When
2535
2581
  # set, user activity can be viewed in your CloudWatch logs.
2536
2582
  #
2583
+ # @option params [String] :post_authentication_login_banner
2584
+ #
2585
+ # @option params [String] :pre_authentication_login_banner
2586
+ #
2537
2587
  # @option params [Array<String>] :protocols
2538
2588
  # Specifies the file transfer protocol or protocols over which your file
2539
2589
  # transfer protocol client can connect to your server's endpoint. The
@@ -2586,6 +2636,7 @@ module Aws::Transfer
2586
2636
  # certificate: "Certificate",
2587
2637
  # protocol_details: {
2588
2638
  # passive_ip: "PassiveIp",
2639
+ # tls_session_resumption_mode: "DISABLED", # accepts DISABLED, ENABLED, ENFORCED
2589
2640
  # },
2590
2641
  # endpoint_details: {
2591
2642
  # address_allocation_ids: ["AddressAllocationId"],
@@ -2603,6 +2654,8 @@ module Aws::Transfer
2603
2654
  # function: "Function",
2604
2655
  # },
2605
2656
  # logging_role: "NullableRole",
2657
+ # post_authentication_login_banner: "PostAuthenticationLoginBanner",
2658
+ # pre_authentication_login_banner: "PreAuthenticationLoginBanner",
2606
2659
  # protocols: ["SFTP"], # accepts SFTP, FTP, FTPS
2607
2660
  # security_policy_name: "SecurityPolicyName",
2608
2661
  # server_id: "ServerId", # required
@@ -2797,7 +2850,7 @@ module Aws::Transfer
2797
2850
  params: params,
2798
2851
  config: config)
2799
2852
  context[:gem_name] = 'aws-sdk-transfer'
2800
- context[:gem_version] = '1.43.0'
2853
+ context[:gem_version] = '1.47.0'
2801
2854
  Seahorse::Client::Request.new(handlers, context)
2802
2855
  end
2803
2856
 
@@ -129,6 +129,8 @@ module Aws::Transfer
129
129
  Policy = Shapes::StringShape.new(name: 'Policy')
130
130
  PosixId = Shapes::IntegerShape.new(name: 'PosixId')
131
131
  PosixProfile = Shapes::StructureShape.new(name: 'PosixProfile')
132
+ PostAuthenticationLoginBanner = Shapes::StringShape.new(name: 'PostAuthenticationLoginBanner')
133
+ PreAuthenticationLoginBanner = Shapes::StringShape.new(name: 'PreAuthenticationLoginBanner')
132
134
  Protocol = Shapes::StringShape.new(name: 'Protocol')
133
135
  ProtocolDetails = Shapes::StructureShape.new(name: 'ProtocolDetails')
134
136
  Protocols = Shapes::ListShape.new(name: 'Protocols')
@@ -186,6 +188,7 @@ module Aws::Transfer
186
188
  TestIdentityProviderRequest = Shapes::StructureShape.new(name: 'TestIdentityProviderRequest')
187
189
  TestIdentityProviderResponse = Shapes::StructureShape.new(name: 'TestIdentityProviderResponse')
188
190
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
191
+ TlsSessionResumptionMode = Shapes::StringShape.new(name: 'TlsSessionResumptionMode')
189
192
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
190
193
  UpdateAccessRequest = Shapes::StructureShape.new(name: 'UpdateAccessRequest')
191
194
  UpdateAccessResponse = Shapes::StructureShape.new(name: 'UpdateAccessResponse')
@@ -244,7 +247,10 @@ module Aws::Transfer
244
247
  CreateServerRequest.add_member(:identity_provider_details, Shapes::ShapeRef.new(shape: IdentityProviderDetails, location_name: "IdentityProviderDetails"))
245
248
  CreateServerRequest.add_member(:identity_provider_type, Shapes::ShapeRef.new(shape: IdentityProviderType, location_name: "IdentityProviderType"))
246
249
  CreateServerRequest.add_member(:logging_role, Shapes::ShapeRef.new(shape: Role, location_name: "LoggingRole"))
250
+ CreateServerRequest.add_member(:post_authentication_login_banner, Shapes::ShapeRef.new(shape: PostAuthenticationLoginBanner, location_name: "PostAuthenticationLoginBanner"))
251
+ CreateServerRequest.add_member(:pre_authentication_login_banner, Shapes::ShapeRef.new(shape: PreAuthenticationLoginBanner, location_name: "PreAuthenticationLoginBanner"))
247
252
  CreateServerRequest.add_member(:protocols, Shapes::ShapeRef.new(shape: Protocols, location_name: "Protocols"))
253
+ CreateServerRequest.add_member(:protocol_details, Shapes::ShapeRef.new(shape: ProtocolDetails, location_name: "ProtocolDetails"))
248
254
  CreateServerRequest.add_member(:security_policy_name, Shapes::ShapeRef.new(shape: SecurityPolicyName, location_name: "SecurityPolicyName"))
249
255
  CreateServerRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
250
256
  CreateServerRequest.add_member(:workflow_details, Shapes::ShapeRef.new(shape: WorkflowDetails, location_name: "WorkflowDetails"))
@@ -384,6 +390,8 @@ module Aws::Transfer
384
390
  DescribedServer.add_member(:identity_provider_details, Shapes::ShapeRef.new(shape: IdentityProviderDetails, location_name: "IdentityProviderDetails"))
385
391
  DescribedServer.add_member(:identity_provider_type, Shapes::ShapeRef.new(shape: IdentityProviderType, location_name: "IdentityProviderType"))
386
392
  DescribedServer.add_member(:logging_role, Shapes::ShapeRef.new(shape: Role, location_name: "LoggingRole"))
393
+ DescribedServer.add_member(:post_authentication_login_banner, Shapes::ShapeRef.new(shape: PostAuthenticationLoginBanner, location_name: "PostAuthenticationLoginBanner"))
394
+ DescribedServer.add_member(:pre_authentication_login_banner, Shapes::ShapeRef.new(shape: PreAuthenticationLoginBanner, location_name: "PreAuthenticationLoginBanner"))
387
395
  DescribedServer.add_member(:protocols, Shapes::ShapeRef.new(shape: Protocols, location_name: "Protocols"))
388
396
  DescribedServer.add_member(:security_policy_name, Shapes::ShapeRef.new(shape: SecurityPolicyName, location_name: "SecurityPolicyName"))
389
397
  DescribedServer.add_member(:server_id, Shapes::ShapeRef.new(shape: ServerId, location_name: "ServerId"))
@@ -599,6 +607,7 @@ module Aws::Transfer
599
607
  PosixProfile.struct_class = Types::PosixProfile
600
608
 
601
609
  ProtocolDetails.add_member(:passive_ip, Shapes::ShapeRef.new(shape: PassiveIp, location_name: "PassiveIp"))
610
+ ProtocolDetails.add_member(:tls_session_resumption_mode, Shapes::ShapeRef.new(shape: TlsSessionResumptionMode, location_name: "TlsSessionResumptionMode"))
602
611
  ProtocolDetails.struct_class = Types::ProtocolDetails
603
612
 
604
613
  Protocols.member = Shapes::ShapeRef.new(shape: Protocol)
@@ -723,6 +732,8 @@ module Aws::Transfer
723
732
  UpdateServerRequest.add_member(:host_key, Shapes::ShapeRef.new(shape: HostKey, location_name: "HostKey"))
724
733
  UpdateServerRequest.add_member(:identity_provider_details, Shapes::ShapeRef.new(shape: IdentityProviderDetails, location_name: "IdentityProviderDetails"))
725
734
  UpdateServerRequest.add_member(:logging_role, Shapes::ShapeRef.new(shape: NullableRole, location_name: "LoggingRole"))
735
+ UpdateServerRequest.add_member(:post_authentication_login_banner, Shapes::ShapeRef.new(shape: PostAuthenticationLoginBanner, location_name: "PostAuthenticationLoginBanner"))
736
+ UpdateServerRequest.add_member(:pre_authentication_login_banner, Shapes::ShapeRef.new(shape: PreAuthenticationLoginBanner, location_name: "PreAuthenticationLoginBanner"))
726
737
  UpdateServerRequest.add_member(:protocols, Shapes::ShapeRef.new(shape: Protocols, location_name: "Protocols"))
727
738
  UpdateServerRequest.add_member(:security_policy_name, Shapes::ShapeRef.new(shape: SecurityPolicyName, location_name: "SecurityPolicyName"))
728
739
  UpdateServerRequest.add_member(:server_id, Shapes::ShapeRef.new(shape: ServerId, required: true, location_name: "ServerId"))
@@ -289,7 +289,13 @@ module Aws::Transfer
289
289
  # },
290
290
  # identity_provider_type: "SERVICE_MANAGED", # accepts SERVICE_MANAGED, API_GATEWAY, AWS_DIRECTORY_SERVICE, AWS_LAMBDA
291
291
  # logging_role: "Role",
292
+ # post_authentication_login_banner: "PostAuthenticationLoginBanner",
293
+ # pre_authentication_login_banner: "PreAuthenticationLoginBanner",
292
294
  # protocols: ["SFTP"], # accepts SFTP, FTP, FTPS
295
+ # protocol_details: {
296
+ # passive_ip: "PassiveIp",
297
+ # tls_session_resumption_mode: "DISABLED", # accepts DISABLED, ENABLED, ENFORCED
298
+ # },
293
299
  # security_policy_name: "SecurityPolicyName",
294
300
  # tags: [
295
301
  # {
@@ -439,7 +445,7 @@ module Aws::Transfer
439
445
  # an API Gateway endpoint URL to call for authentication using the
440
446
  # `IdentityProviderDetails` parameter.
441
447
  #
442
- # Use the `LAMBDA` value to directly use a Lambda function as your
448
+ # Use the `AWS_LAMBDA` value to directly use a Lambda function as your
443
449
  # identity provider. If you choose this value, you must specify the
444
450
  # ARN for the lambda function in the `Function` parameter for the
445
451
  # `IdentityProviderDetails` data type.
@@ -453,6 +459,12 @@ module Aws::Transfer
453
459
  # logs.
454
460
  # @return [String]
455
461
  #
462
+ # @!attribute [rw] post_authentication_login_banner
463
+ # @return [String]
464
+ #
465
+ # @!attribute [rw] pre_authentication_login_banner
466
+ # @return [String]
467
+ #
456
468
  # @!attribute [rw] protocols
457
469
  # Specifies the file transfer protocol or protocols over which your
458
470
  # file transfer protocol client can connect to your server's
@@ -484,6 +496,18 @@ module Aws::Transfer
484
496
  # </note>
485
497
  # @return [Array<String>]
486
498
  #
499
+ # @!attribute [rw] protocol_details
500
+ # The protocol settings that are configured for your server.
501
+ #
502
+ # Use the `PassiveIp` parameter to indicate passive mode (for FTP and
503
+ # FTPS protocols). Enter a single dotted-quad IPv4 address, such as
504
+ # the external IP address of a firewall, router, or load balancer.
505
+ #
506
+ # Use the `TlsSessionResumptionMode` parameter to determine whether or
507
+ # not your Transfer server resumes recent, negotiated sessions through
508
+ # a unique session ID.
509
+ # @return [Types::ProtocolDetails]
510
+ #
487
511
  # @!attribute [rw] security_policy_name
488
512
  # Specifies the name of the security policy that is attached to the
489
513
  # server.
@@ -509,7 +533,10 @@ module Aws::Transfer
509
533
  :identity_provider_details,
510
534
  :identity_provider_type,
511
535
  :logging_role,
536
+ :post_authentication_login_banner,
537
+ :pre_authentication_login_banner,
512
538
  :protocols,
539
+ :protocol_details,
513
540
  :security_policy_name,
514
541
  :tags,
515
542
  :workflow_details)
@@ -669,6 +696,11 @@ module Aws::Transfer
669
696
  # @!attribute [rw] ssh_public_key_body
670
697
  # The public portion of the Secure Shell (SSH) key used to
671
698
  # authenticate the user to the server.
699
+ #
700
+ # <note markdown="1"> Currently, Transfer Family does not accept elliptical curve keys
701
+ # (keys beginning with `ecdsa`).
702
+ #
703
+ # </note>
672
704
  # @return [String]
673
705
  #
674
706
  # @!attribute [rw] tags
@@ -1590,7 +1622,7 @@ module Aws::Transfer
1590
1622
  # an API Gateway endpoint URL to call for authentication using the
1591
1623
  # `IdentityProviderDetails` parameter.
1592
1624
  #
1593
- # Use the `LAMBDA` value to directly use a Lambda function as your
1625
+ # Use the `AWS_LAMBDA` value to directly use a Lambda function as your
1594
1626
  # identity provider. If you choose this value, you must specify the
1595
1627
  # ARN for the lambda function in the `Function` parameter for the
1596
1628
  # `IdentityProviderDetails` data type.
@@ -1604,6 +1636,12 @@ module Aws::Transfer
1604
1636
  # logs.
1605
1637
  # @return [String]
1606
1638
  #
1639
+ # @!attribute [rw] post_authentication_login_banner
1640
+ # @return [String]
1641
+ #
1642
+ # @!attribute [rw] pre_authentication_login_banner
1643
+ # @return [String]
1644
+ #
1607
1645
  # @!attribute [rw] protocols
1608
1646
  # Specifies the file transfer protocol or protocols over which your
1609
1647
  # file transfer protocol client can connect to your server's
@@ -1668,6 +1706,8 @@ module Aws::Transfer
1668
1706
  :identity_provider_details,
1669
1707
  :identity_provider_type,
1670
1708
  :logging_role,
1709
+ :post_authentication_login_banner,
1710
+ :pre_authentication_login_banner,
1671
1711
  :protocols,
1672
1712
  :security_policy_name,
1673
1713
  :server_id,
@@ -2120,8 +2160,8 @@ module Aws::Transfer
2120
2160
  # @return [String]
2121
2161
  #
2122
2162
  # @!attribute [rw] directory_id
2123
- # The identifier of the Amazon Web ServicesDirectory Service directory
2124
- # that you want to stop sharing.
2163
+ # The identifier of the Amazon Web Services Directory Service
2164
+ # directory that you want to stop sharing.
2125
2165
  # @return [String]
2126
2166
  #
2127
2167
  # @!attribute [rw] function
@@ -2816,7 +2856,7 @@ module Aws::Transfer
2816
2856
  # an API Gateway endpoint URL to call for authentication using the
2817
2857
  # `IdentityProviderDetails` parameter.
2818
2858
  #
2819
- # Use the `LAMBDA` value to directly use a Lambda function as your
2859
+ # Use the `AWS_LAMBDA` value to directly use a Lambda function as your
2820
2860
  # identity provider. If you choose this value, you must specify the
2821
2861
  # ARN for the lambda function in the `Function` parameter for the
2822
2862
  # `IdentityProviderDetails` data type.
@@ -3031,15 +3071,12 @@ module Aws::Transfer
3031
3071
 
3032
3072
  # The protocol settings that are configured for your server.
3033
3073
  #
3034
- # <note markdown="1"> This type is only valid in the `UpdateServer` API.
3035
- #
3036
- # </note>
3037
- #
3038
3074
  # @note When making an API call, you may pass ProtocolDetails
3039
3075
  # data as a hash:
3040
3076
  #
3041
3077
  # {
3042
3078
  # passive_ip: "PassiveIp",
3079
+ # tls_session_resumption_mode: "DISABLED", # accepts DISABLED, ENABLED, ENFORCED
3043
3080
  # }
3044
3081
  #
3045
3082
  # @!attribute [rw] passive_ip
@@ -3065,10 +3102,44 @@ module Aws::Transfer
3065
3102
  # [1]: http://aws.amazon.com/blogs/storage/configuring-your-ftps-server-behind-a-firewall-or-nat-with-aws-transfer-family/
3066
3103
  # @return [String]
3067
3104
  #
3105
+ # @!attribute [rw] tls_session_resumption_mode
3106
+ # A property used with Transfer servers that use the FTPS protocol.
3107
+ # TLS Session Resumption provides a mechanism to resume or share a
3108
+ # negotiated secret key between the control and data connection for an
3109
+ # FTPS session. `TlsSessionResumptionMode` determines whether or not
3110
+ # the server resumes recent, negotiated sessions through a unique
3111
+ # session ID. This property is available during `CreateServer` and
3112
+ # `UpdateServer` calls. If a `TlsSessionResumptionMode` value is not
3113
+ # specified during CreateServer, it is set to `ENFORCED` by default.
3114
+ #
3115
+ # * `DISABLED`\: the server does not process TLS session resumption
3116
+ # client requests and creates a new TLS session for each request.
3117
+ #
3118
+ # * `ENABLED`\: the server processes and accepts clients that are
3119
+ # performing TLS session resumption. The server doesn't reject
3120
+ # client data connections that do not perform the TLS session
3121
+ # resumption client processing.
3122
+ #
3123
+ # * `ENFORCED`\: the server processes and accepts clients that are
3124
+ # performing TLS session resumption. The server rejects client data
3125
+ # connections that do not perform the TLS session resumption client
3126
+ # processing. Before you set the value to `ENFORCED`, test your
3127
+ # clients.
3128
+ #
3129
+ # <note markdown="1"> Not all FTPS clients perform TLS session resumption. So, if you
3130
+ # choose to enforce TLS session resumption, you prevent any
3131
+ # connections from FTPS clients that don't perform the protocol
3132
+ # negotiation. To determine whether or not you can use the
3133
+ # `ENFORCED` value, you need to test your clients.
3134
+ #
3135
+ # </note>
3136
+ # @return [String]
3137
+ #
3068
3138
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/ProtocolDetails AWS API Documentation
3069
3139
  #
3070
3140
  class ProtocolDetails < Struct.new(
3071
- :passive_ip)
3141
+ :passive_ip,
3142
+ :tls_session_resumption_mode)
3072
3143
  SENSITIVE = []
3073
3144
  include Aws::Structure
3074
3145
  end
@@ -3776,6 +3847,7 @@ module Aws::Transfer
3776
3847
  # certificate: "Certificate",
3777
3848
  # protocol_details: {
3778
3849
  # passive_ip: "PassiveIp",
3850
+ # tls_session_resumption_mode: "DISABLED", # accepts DISABLED, ENABLED, ENFORCED
3779
3851
  # },
3780
3852
  # endpoint_details: {
3781
3853
  # address_allocation_ids: ["AddressAllocationId"],
@@ -3793,6 +3865,8 @@ module Aws::Transfer
3793
3865
  # function: "Function",
3794
3866
  # },
3795
3867
  # logging_role: "NullableRole",
3868
+ # post_authentication_login_banner: "PostAuthenticationLoginBanner",
3869
+ # pre_authentication_login_banner: "PreAuthenticationLoginBanner",
3796
3870
  # protocols: ["SFTP"], # accepts SFTP, FTP, FTPS
3797
3871
  # security_policy_name: "SecurityPolicyName",
3798
3872
  # server_id: "ServerId", # required
@@ -3854,6 +3928,10 @@ module Aws::Transfer
3854
3928
  # Use the `PassiveIp` parameter to indicate passive mode (for FTP and
3855
3929
  # FTPS protocols). Enter a single dotted-quad IPv4 address, such as
3856
3930
  # the external IP address of a firewall, router, or load balancer.
3931
+ #
3932
+ # Use the `TlsSessionResumptionMode` parameter to determine whether or
3933
+ # not your Transfer server resumes recent, negotiated sessions through
3934
+ # a unique session ID.
3857
3935
  # @return [Types::ProtocolDetails]
3858
3936
  #
3859
3937
  # @!attribute [rw] endpoint_details
@@ -3922,6 +4000,12 @@ module Aws::Transfer
3922
4000
  # logs.
3923
4001
  # @return [String]
3924
4002
  #
4003
+ # @!attribute [rw] post_authentication_login_banner
4004
+ # @return [String]
4005
+ #
4006
+ # @!attribute [rw] pre_authentication_login_banner
4007
+ # @return [String]
4008
+ #
3925
4009
  # @!attribute [rw] protocols
3926
4010
  # Specifies the file transfer protocol or protocols over which your
3927
4011
  # file transfer protocol client can connect to your server's
@@ -3978,6 +4062,8 @@ module Aws::Transfer
3978
4062
  :host_key,
3979
4063
  :identity_provider_details,
3980
4064
  :logging_role,
4065
+ :post_authentication_login_banner,
4066
+ :pre_authentication_login_banner,
3981
4067
  :protocols,
3982
4068
  :security_policy_name,
3983
4069
  :server_id,
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-transfer/customizations'
48
48
  # @!group service
49
49
  module Aws::Transfer
50
50
 
51
- GEM_VERSION = '1.43.0'
51
+ GEM_VERSION = '1.47.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-transfer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.43.0
4
+ version: 1.47.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-11-15 00:00:00.000000000 Z
11
+ date: 2022-02-18 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.122.0
22
+ version: 3.126.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.122.0
32
+ version: 3.126.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement