aws-sdk-transfer 1.57.0 → 1.58.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: 9979487ffcaf1e591f578ab8ead99de5e8a4762488a0e550ef8ef4ff0f6e6979
4
- data.tar.gz: d20d0d5356f22d95f553f54e40921aab60cfd6957b02f1e2b146a0f2c5a73161
3
+ metadata.gz: 8a13939bb04d1626575a179a207b8c439389cd89ff8d1211e800e9b5cea83ded
4
+ data.tar.gz: d34fbbe4805f79565e01669650859ab7b749009e85faf046bdb05227fd59d45c
5
5
  SHA512:
6
- metadata.gz: e00b9bfccaab724d24fd3beadc20ca3193d052e900ca9762f6ca83f6117ecb4b0119e9e84c3a42aa6ae6b727ee46b3830ac6822e50e2355930415ff084a7f286
7
- data.tar.gz: 43b51b9c439f02926bb1b6f24548efe1f90e4531f69f86fc7f6b37a16ae497dc567713b9b4eddda13026d526c7cb407a6d61152a20ed16080f3a2806d3874a3c
6
+ metadata.gz: f714601ebc7a90411c9aaa18d05d10021be58250c78871e908658642e6b2932d75fea6f1699bcee8dc42b62d75f268164d79658950658cedb7c0c05ca27fbcdd
7
+ data.tar.gz: '089541d2d201998478a1cdfd809f823011b0a0cc37972b99a3d600568911551291d51dc63a50e4340f513e856e2aeffdd5dc27477995fb44595f18392238da3d'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.58.0 (2022-08-24)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for AWS Transfer Family
8
+
4
9
  1.57.0 (2022-07-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.57.0
1
+ 1.58.0
@@ -547,9 +547,18 @@ module Aws::Transfer
547
547
  # A `BaseDirectory` example is `/DOC-EXAMPLE-BUCKET/home/mydirectory `.
548
548
  #
549
549
  # @option params [required, String] :access_role
550
- # The Amazon Resource Name (ARN) of the Identity and Access Management
551
- # (IAM) role that grants access to at least the `HomeDirectory` of your
552
- # users' Amazon S3 buckets.
550
+ # With AS2, you can send files by calling `StartFileTransfer` and
551
+ # specifying the file paths in the request parameter, `SendFilePaths`.
552
+ # We use the file’s parent directory (for example, for
553
+ # `--send-file-paths /bucket/dir/file.txt`, parent directory is
554
+ # `/bucket/dir/`) to temporarily store a processed AS2 message file,
555
+ # store the MDN when we receive them from the partner, and write a final
556
+ # JSON file containing relevant metadata of the transmission. So, the
557
+ # `AccessRole` needs to provide read and write access to the parent
558
+ # directory of the file location used in the `StartFileTransfer`
559
+ # request. Additionally, you need to provide read and write access to
560
+ # the parent directory of the files that you intend to send with
561
+ # `StartFileTransfer`.
553
562
  #
554
563
  # @option params [String] :status
555
564
  # The status of the agreement. The agreement can be either `ACTIVE` or
@@ -672,10 +681,10 @@ module Aws::Transfer
672
681
  # partner and the AS2 process.
673
682
  #
674
683
  # @option params [required, String] :as_2_id
675
- # The `As2Id` is the *AS2-name*, as defined in the defined in the [RFC
676
- # 4130][1]. For inbound transfers, this is the `AS2-From` header for the
677
- # AS2 messages sent from the partner. For outbound connectors, this is
678
- # the `AS2-To` header for the AS2 messages sent to the partner using the
684
+ # The `As2Id` is the *AS2-name*, as defined in the [RFC 4130][1]. For
685
+ # inbound transfers, this is the `AS2-From` header for the AS2 messages
686
+ # sent from the partner. For outbound connectors, this is the `AS2-To`
687
+ # header for the AS2 messages sent to the partner using the
679
688
  # `StartFileTransfer` API operation. This ID cannot include spaces.
680
689
  #
681
690
  #
@@ -3307,10 +3316,13 @@ module Aws::Transfer
3307
3316
  # inactive agreement or the reverse.
3308
3317
  #
3309
3318
  # @option params [String] :local_profile_id
3319
+ # A unique identifier for the AS2 local profile.
3320
+ #
3310
3321
  # To change the local profile identifier, provide a new value here.
3311
3322
  #
3312
3323
  # @option params [String] :partner_profile_id
3313
- # To change the partner profile identifier, provide a new value here.
3324
+ # A unique identifier for the partner profile. To change the partner
3325
+ # profile identifier, provide a new value here.
3314
3326
  #
3315
3327
  # @option params [String] :base_directory
3316
3328
  # To change the landing directory (folder) for files that are
@@ -3318,9 +3330,18 @@ module Aws::Transfer
3318
3330
  # example, `/DOC-EXAMPLE-BUCKET/home/mydirectory `.
3319
3331
  #
3320
3332
  # @option params [String] :access_role
3321
- # The Amazon Resource Name (ARN) of the Identity and Access Management
3322
- # (IAM) role that grants access to at least the `HomeDirectory` of your
3323
- # users' Amazon S3 buckets.
3333
+ # With AS2, you can send files by calling `StartFileTransfer` and
3334
+ # specifying the file paths in the request parameter, `SendFilePaths`.
3335
+ # We use the file’s parent directory (for example, for
3336
+ # `--send-file-paths /bucket/dir/file.txt`, parent directory is
3337
+ # `/bucket/dir/`) to temporarily store a processed AS2 message file,
3338
+ # store the MDN when we receive them from the partner, and write a final
3339
+ # JSON file containing relevant metadata of the transmission. So, the
3340
+ # `AccessRole` needs to provide read and write access to the parent
3341
+ # directory of the file location used in the `StartFileTransfer`
3342
+ # request. Additionally, you need to provide read and write access to
3343
+ # the parent directory of the files that you intend to send with
3344
+ # `StartFileTransfer`.
3324
3345
  #
3325
3346
  # @return [Types::UpdateAgreementResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3326
3347
  #
@@ -3672,28 +3693,34 @@ module Aws::Transfer
3672
3693
  # transfer protocol client can connect to your server's endpoint. The
3673
3694
  # available protocols are:
3674
3695
  #
3675
- # * Secure Shell (SSH) File Transfer Protocol (SFTP): File transfer over
3676
- # SSH
3696
+ # * `SFTP` (Secure Shell (SSH) File Transfer Protocol): File transfer
3697
+ # over SSH
3677
3698
  #
3678
- # * File Transfer Protocol Secure (FTPS): File transfer with TLS
3699
+ # * `FTPS` (File Transfer Protocol Secure): File transfer with TLS
3679
3700
  # encryption
3680
3701
  #
3681
- # * File Transfer Protocol (FTP): Unencrypted file transfer
3702
+ # * `FTP` (File Transfer Protocol): Unencrypted file transfer
3703
+ #
3704
+ # * `AS2` (Applicability Statement 2): used for transporting structured
3705
+ # business-to-business data
3706
+ #
3707
+ # <note markdown="1"> * If you select `FTPS`, you must choose a certificate stored in
3708
+ # Certificate Manager (ACM) which is used to identify your server when
3709
+ # clients connect to it over FTPS.
3682
3710
  #
3683
- # <note markdown="1"> If you select `FTPS`, you must choose a certificate stored in Amazon
3684
- # Web ServicesCertificate Manager (ACM) which will be used to identify
3685
- # your server when clients connect to it over FTPS.
3711
+ # * If `Protocol` includes either `FTP` or `FTPS`, then the
3712
+ # `EndpointType` must be `VPC` and the `IdentityProviderType` must be
3713
+ # `AWS_DIRECTORY_SERVICE` or `API_GATEWAY`.
3686
3714
  #
3687
- # If `Protocol` includes either `FTP` or `FTPS`, then the `EndpointType`
3688
- # must be `VPC` and the `IdentityProviderType` must be
3689
- # `AWS_DIRECTORY_SERVICE` or `API_GATEWAY`.
3715
+ # * If `Protocol` includes `FTP`, then `AddressAllocationIds` cannot be
3716
+ # associated.
3690
3717
  #
3691
- # If `Protocol` includes `FTP`, then `AddressAllocationIds` cannot be
3692
- # associated.
3718
+ # * If `Protocol` is set only to `SFTP`, the `EndpointType` can be set
3719
+ # to `PUBLIC` and the `IdentityProviderType` can be set to
3720
+ # `SERVICE_MANAGED`.
3693
3721
  #
3694
- # If `Protocol` is set only to `SFTP`, the `EndpointType` can be set to
3695
- # `PUBLIC` and the `IdentityProviderType` can be set to
3696
- # `SERVICE_MANAGED`.
3722
+ # * If `Protocol` includes `AS2`, then the `EndpointType` must be `VPC`,
3723
+ # and domain must be Amazon S3.
3697
3724
  #
3698
3725
  # </note>
3699
3726
  #
@@ -3931,7 +3958,7 @@ module Aws::Transfer
3931
3958
  params: params,
3932
3959
  config: config)
3933
3960
  context[:gem_name] = 'aws-sdk-transfer'
3934
- context[:gem_version] = '1.57.0'
3961
+ context[:gem_version] = '1.58.0'
3935
3962
  Seahorse::Client::Request.new(handlers, context)
3936
3963
  end
3937
3964
 
@@ -42,15 +42,16 @@ module Aws::Transfer
42
42
  # }
43
43
  #
44
44
  # @!attribute [rw] local_profile_id
45
- # A unique identifier for the AS2 process.
45
+ # A unique identifier for the AS2 local profile.
46
46
  # @return [String]
47
47
  #
48
48
  # @!attribute [rw] partner_profile_id
49
- # A unique identifier for the partner for the connector.
49
+ # A unique identifier for the partner profile for the connector.
50
50
  # @return [String]
51
51
  #
52
52
  # @!attribute [rw] message_subject
53
- # A short description to help identify the connector.
53
+ # Used as the `Subject` HTTP header attribute in AS2 messages that are
54
+ # being sent with the connector.
54
55
  # @return [String]
55
56
  #
56
57
  # @!attribute [rw] compression
@@ -62,12 +63,17 @@ module Aws::Transfer
62
63
  # @return [String]
63
64
  #
64
65
  # @!attribute [rw] signing_algorithm
65
- # The algorithm that is used to sign the AS2 transfers for this
66
- # partner profile.
66
+ # The algorithm that is used to sign the AS2 messages sent with the
67
+ # connector.
67
68
  # @return [String]
68
69
  #
69
70
  # @!attribute [rw] mdn_signing_algorithm
70
71
  # The signing algorithm for the MDN response.
72
+ #
73
+ # <note markdown="1"> If set to DEFAULT (or not set at all), the value for
74
+ # `SigningAlogorithm` is used.
75
+ #
76
+ # </note>
71
77
  # @return [String]
72
78
  #
73
79
  # @!attribute [rw] mdn_response
@@ -390,9 +396,18 @@ module Aws::Transfer
390
396
  # @return [String]
391
397
  #
392
398
  # @!attribute [rw] access_role
393
- # The Amazon Resource Name (ARN) of the Identity and Access Management
394
- # (IAM) role that grants access to at least the `HomeDirectory` of
395
- # your users' Amazon S3 buckets.
399
+ # With AS2, you can send files by calling `StartFileTransfer` and
400
+ # specifying the file paths in the request parameter, `SendFilePaths`.
401
+ # We use the file’s parent directory (for example, for
402
+ # `--send-file-paths /bucket/dir/file.txt`, parent directory is
403
+ # `/bucket/dir/`) to temporarily store a processed AS2 message file,
404
+ # store the MDN when we receive them from the partner, and write a
405
+ # final JSON file containing relevant metadata of the transmission.
406
+ # So, the `AccessRole` needs to provide read and write access to the
407
+ # parent directory of the file location used in the
408
+ # `StartFileTransfer` request. Additionally, you need to provide read
409
+ # and write access to the parent directory of the files that you
410
+ # intend to send with `StartFileTransfer`.
396
411
  # @return [String]
397
412
  #
398
413
  # @!attribute [rw] status
@@ -534,12 +549,11 @@ module Aws::Transfer
534
549
  # }
535
550
  #
536
551
  # @!attribute [rw] as_2_id
537
- # The `As2Id` is the *AS2-name*, as defined in the defined in the [RFC
538
- # 4130][1]. For inbound transfers, this is the `AS2-From` header for
539
- # the AS2 messages sent from the partner. For outbound connectors,
540
- # this is the `AS2-To` header for the AS2 messages sent to the partner
541
- # using the `StartFileTransfer` API operation. This ID cannot include
542
- # spaces.
552
+ # The `As2Id` is the *AS2-name*, as defined in the [RFC 4130][1]. For
553
+ # inbound transfers, this is the `AS2-From` header for the AS2
554
+ # messages sent from the partner. For outbound connectors, this is the
555
+ # `AS2-To` header for the AS2 messages sent to the partner using the
556
+ # `StartFileTransfer` API operation. This ID cannot include spaces.
543
557
  #
544
558
  #
545
559
  #
@@ -2081,11 +2095,11 @@ module Aws::Transfer
2081
2095
  # @return [String]
2082
2096
  #
2083
2097
  # @!attribute [rw] local_profile_id
2084
- # A unique identifier for the AS2 process.
2098
+ # A unique identifier for the AS2 local profile.
2085
2099
  # @return [String]
2086
2100
  #
2087
2101
  # @!attribute [rw] partner_profile_id
2088
- # A unique identifier for the partner in the agreement.
2102
+ # A unique identifier for the partner profile used in the agreement.
2089
2103
  # @return [String]
2090
2104
  #
2091
2105
  # @!attribute [rw] base_directory
@@ -2094,9 +2108,18 @@ module Aws::Transfer
2094
2108
  # @return [String]
2095
2109
  #
2096
2110
  # @!attribute [rw] access_role
2097
- # The Amazon Resource Name (ARN) of the Identity and Access Management
2098
- # (IAM) role that grants access to at least the `HomeDirectory` of
2099
- # your users' Amazon S3 buckets.
2111
+ # With AS2, you can send files by calling `StartFileTransfer` and
2112
+ # specifying the file paths in the request parameter, `SendFilePaths`.
2113
+ # We use the file’s parent directory (for example, for
2114
+ # `--send-file-paths /bucket/dir/file.txt`, parent directory is
2115
+ # `/bucket/dir/`) to temporarily store a processed AS2 message file,
2116
+ # store the MDN when we receive them from the partner, and write a
2117
+ # final JSON file containing relevant metadata of the transmission.
2118
+ # So, the `AccessRole` needs to provide read and write access to the
2119
+ # parent directory of the file location used in the
2120
+ # `StartFileTransfer` request. Additionally, you need to provide read
2121
+ # and write access to the parent directory of the files that you
2122
+ # intend to send with `StartFileTransfer`.
2100
2123
  # @return [String]
2101
2124
  #
2102
2125
  # @!attribute [rw] tags
@@ -2344,7 +2367,15 @@ module Aws::Transfer
2344
2367
  # @return [String]
2345
2368
  #
2346
2369
  # @!attribute [rw] as_2_id
2347
- # The unique identifier for the AS2 process.
2370
+ # The `As2Id` is the *AS2-name*, as defined in the [RFC 4130][1]. For
2371
+ # inbound transfers, this is the `AS2-From` header for the AS2
2372
+ # messages sent from the partner. For outbound connectors, this is the
2373
+ # `AS2-To` header for the AS2 messages sent to the partner using the
2374
+ # `StartFileTransfer` API operation. This ID cannot include spaces.
2375
+ #
2376
+ #
2377
+ #
2378
+ # [1]: https://datatracker.ietf.org/doc/html/rfc4130
2348
2379
  # @return [String]
2349
2380
  #
2350
2381
  # @!attribute [rw] certificate_ids
@@ -2437,9 +2468,27 @@ module Aws::Transfer
2437
2468
  # @!attribute [rw] protocol_details
2438
2469
  # The protocol settings that are configured for your server.
2439
2470
  #
2440
- # Use the `PassiveIp` parameter to indicate passive mode. Enter a
2441
- # single IPv4 address, such as the public IP address of a firewall,
2442
- # router, or load balancer.
2471
+ # * To indicate passive mode (for FTP and FTPS protocols), use the
2472
+ # `PassiveIp` parameter. Enter a single dotted-quad IPv4 address,
2473
+ # such as the external IP address of a firewall, router, or load
2474
+ # balancer.
2475
+ #
2476
+ # * To ignore the error that is generated when the client attempts to
2477
+ # use the `SETSTAT` command on a file that you are uploading to an
2478
+ # Amazon S3 bucket, use the `SetStatOption` parameter. To have the
2479
+ # Transfer Family server ignore the `SETSTAT` command and upload
2480
+ # files without needing to make any changes to your SFTP client, set
2481
+ # the value to `ENABLE_NO_OP`. If you set the `SetStatOption`
2482
+ # parameter to `ENABLE_NO_OP`, Transfer Family generates a log entry
2483
+ # to Amazon CloudWatch Logs, so that you can determine when the
2484
+ # client is making a `SETSTAT` call.
2485
+ #
2486
+ # * To determine whether your Transfer Family server resumes recent,
2487
+ # negotiated sessions through a unique session ID, use the
2488
+ # `TlsSessionResumptionMode` parameter.
2489
+ #
2490
+ # * `As2Transports` indicates the transport method for the AS2
2491
+ # messages. Currently, only HTTP is supported.
2443
2492
  # @return [Types::ProtocolDetails]
2444
2493
  #
2445
2494
  # @!attribute [rw] domain
@@ -2537,6 +2586,29 @@ module Aws::Transfer
2537
2586
  # encryption
2538
2587
  #
2539
2588
  # * `FTP` (File Transfer Protocol): Unencrypted file transfer
2589
+ #
2590
+ # * `AS2` (Applicability Statement 2): used for transporting
2591
+ # structured business-to-business data
2592
+ #
2593
+ # <note markdown="1"> * If you select `FTPS`, you must choose a certificate stored in
2594
+ # Certificate Manager (ACM) which is used to identify your server
2595
+ # when clients connect to it over FTPS.
2596
+ #
2597
+ # * If `Protocol` includes either `FTP` or `FTPS`, then the
2598
+ # `EndpointType` must be `VPC` and the `IdentityProviderType` must
2599
+ # be `AWS_DIRECTORY_SERVICE` or `API_GATEWAY`.
2600
+ #
2601
+ # * If `Protocol` includes `FTP`, then `AddressAllocationIds` cannot
2602
+ # be associated.
2603
+ #
2604
+ # * If `Protocol` is set only to `SFTP`, the `EndpointType` can be set
2605
+ # to `PUBLIC` and the `IdentityProviderType` can be set to
2606
+ # `SERVICE_MANAGED`.
2607
+ #
2608
+ # * If `Protocol` includes `AS2`, then the `EndpointType` must be
2609
+ # `VPC`, and domain must be Amazon S3.
2610
+ #
2611
+ # </note>
2540
2612
  # @return [Array<String>]
2541
2613
  #
2542
2614
  # @!attribute [rw] security_policy_name
@@ -4006,11 +4078,11 @@ module Aws::Transfer
4006
4078
  # @return [String]
4007
4079
  #
4008
4080
  # @!attribute [rw] local_profile_id
4009
- # A unique identifier for the AS2 process.
4081
+ # A unique identifier for the AS2 local profile.
4010
4082
  # @return [String]
4011
4083
  #
4012
4084
  # @!attribute [rw] partner_profile_id
4013
- # A unique identifier for the partner process.
4085
+ # A unique identifier for the partner profile.
4014
4086
  # @return [String]
4015
4087
  #
4016
4088
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/ListedAgreement AWS API Documentation
@@ -4153,7 +4225,15 @@ module Aws::Transfer
4153
4225
  # @return [String]
4154
4226
  #
4155
4227
  # @!attribute [rw] as_2_id
4156
- # The unique identifier for the AS2 process.
4228
+ # The `As2Id` is the *AS2-name*, as defined in the [RFC 4130][1]. For
4229
+ # inbound transfers, this is the `AS2-From` header for the AS2
4230
+ # messages sent from the partner. For outbound connectors, this is the
4231
+ # `AS2-To` header for the AS2 messages sent to the partner using the
4232
+ # `StartFileTransfer` API operation. This ID cannot include spaces.
4233
+ #
4234
+ #
4235
+ #
4236
+ # [1]: https://datatracker.ietf.org/doc/html/rfc4130
4157
4237
  # @return [String]
4158
4238
  #
4159
4239
  # @!attribute [rw] profile_type
@@ -5306,11 +5386,14 @@ module Aws::Transfer
5306
5386
  # @return [String]
5307
5387
  #
5308
5388
  # @!attribute [rw] local_profile_id
5389
+ # A unique identifier for the AS2 local profile.
5390
+ #
5309
5391
  # To change the local profile identifier, provide a new value here.
5310
5392
  # @return [String]
5311
5393
  #
5312
5394
  # @!attribute [rw] partner_profile_id
5313
- # To change the partner profile identifier, provide a new value here.
5395
+ # A unique identifier for the partner profile. To change the partner
5396
+ # profile identifier, provide a new value here.
5314
5397
  # @return [String]
5315
5398
  #
5316
5399
  # @!attribute [rw] base_directory
@@ -5320,9 +5403,18 @@ module Aws::Transfer
5320
5403
  # @return [String]
5321
5404
  #
5322
5405
  # @!attribute [rw] access_role
5323
- # The Amazon Resource Name (ARN) of the Identity and Access Management
5324
- # (IAM) role that grants access to at least the `HomeDirectory` of
5325
- # your users' Amazon S3 buckets.
5406
+ # With AS2, you can send files by calling `StartFileTransfer` and
5407
+ # specifying the file paths in the request parameter, `SendFilePaths`.
5408
+ # We use the file’s parent directory (for example, for
5409
+ # `--send-file-paths /bucket/dir/file.txt`, parent directory is
5410
+ # `/bucket/dir/`) to temporarily store a processed AS2 message file,
5411
+ # store the MDN when we receive them from the partner, and write a
5412
+ # final JSON file containing relevant metadata of the transmission.
5413
+ # So, the `AccessRole` needs to provide read and write access to the
5414
+ # parent directory of the file location used in the
5415
+ # `StartFileTransfer` request. Additionally, you need to provide read
5416
+ # and write access to the parent directory of the files that you
5417
+ # intend to send with `StartFileTransfer`.
5326
5418
  # @return [String]
5327
5419
  #
5328
5420
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/UpdateAgreementRequest AWS API Documentation
@@ -5744,28 +5836,34 @@ module Aws::Transfer
5744
5836
  # file transfer protocol client can connect to your server's
5745
5837
  # endpoint. The available protocols are:
5746
5838
  #
5747
- # * Secure Shell (SSH) File Transfer Protocol (SFTP): File transfer
5839
+ # * `SFTP` (Secure Shell (SSH) File Transfer Protocol): File transfer
5748
5840
  # over SSH
5749
5841
  #
5750
- # * File Transfer Protocol Secure (FTPS): File transfer with TLS
5842
+ # * `FTPS` (File Transfer Protocol Secure): File transfer with TLS
5751
5843
  # encryption
5752
5844
  #
5753
- # * File Transfer Protocol (FTP): Unencrypted file transfer
5845
+ # * `FTP` (File Transfer Protocol): Unencrypted file transfer
5846
+ #
5847
+ # * `AS2` (Applicability Statement 2): used for transporting
5848
+ # structured business-to-business data
5849
+ #
5850
+ # <note markdown="1"> * If you select `FTPS`, you must choose a certificate stored in
5851
+ # Certificate Manager (ACM) which is used to identify your server
5852
+ # when clients connect to it over FTPS.
5754
5853
  #
5755
- # <note markdown="1"> If you select `FTPS`, you must choose a certificate stored in Amazon
5756
- # Web ServicesCertificate Manager (ACM) which will be used to identify
5757
- # your server when clients connect to it over FTPS.
5854
+ # * If `Protocol` includes either `FTP` or `FTPS`, then the
5855
+ # `EndpointType` must be `VPC` and the `IdentityProviderType` must
5856
+ # be `AWS_DIRECTORY_SERVICE` or `API_GATEWAY`.
5758
5857
  #
5759
- # If `Protocol` includes either `FTP` or `FTPS`, then the
5760
- # `EndpointType` must be `VPC` and the `IdentityProviderType` must be
5761
- # `AWS_DIRECTORY_SERVICE` or `API_GATEWAY`.
5858
+ # * If `Protocol` includes `FTP`, then `AddressAllocationIds` cannot
5859
+ # be associated.
5762
5860
  #
5763
- # If `Protocol` includes `FTP`, then `AddressAllocationIds` cannot be
5764
- # associated.
5861
+ # * If `Protocol` is set only to `SFTP`, the `EndpointType` can be set
5862
+ # to `PUBLIC` and the `IdentityProviderType` can be set to
5863
+ # `SERVICE_MANAGED`.
5765
5864
  #
5766
- # If `Protocol` is set only to `SFTP`, the `EndpointType` can be set
5767
- # to `PUBLIC` and the `IdentityProviderType` can be set to
5768
- # `SERVICE_MANAGED`.
5865
+ # * If `Protocol` includes `AS2`, then the `EndpointType` must be
5866
+ # `VPC`, and domain must be Amazon S3.
5769
5867
  #
5770
5868
  # </note>
5771
5869
  # @return [Array<String>]
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-transfer/customizations'
49
49
  # @!group service
50
50
  module Aws::Transfer
51
51
 
52
- GEM_VERSION = '1.57.0'
52
+ GEM_VERSION = '1.58.0'
53
53
 
54
54
  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.57.0
4
+ version: 1.58.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: 2022-07-26 00:00:00.000000000 Z
11
+ date: 2022-08-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core