aws-sdk-transfer 1.89.0 → 1.90.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: 5bdaa099422c988869d76c6e047a5c72546c56e60e50b80e851470eb09ccabe4
4
- data.tar.gz: f35dbf8c8a526a808703fc2b737f6c09c6e7e3280939417911f4acb2444d7812
3
+ metadata.gz: c1d4523b4e4aa78444b5fa34bd608bf355e4f6b2b1412a040b2a7b3b0981b4a9
4
+ data.tar.gz: 76d1290741d4f01a1e5e86350b135e6e50dbea64dd036761dec8de38c17bda6e
5
5
  SHA512:
6
- metadata.gz: 730a4cece8bea004ae23f4a3502c848ca05ea1270d39b3f790f94d1da5a21632ab44eb5a716d86aa4e8aeaee4f62fa8f552ff859a03c47a9d07ce61e53a608ba
7
- data.tar.gz: 17015546646ded64c5e65cbf8cd47134603cbf404eef742d85e02b593081745051fbec723b130ab08bcf3ad1819a4d54df4a9ba1af63e535ad5598f921d9bb7b
6
+ metadata.gz: 2cf907178bcbd44b87a17f3d22155e7db85a493e3d357dcd2dea2c3ca8204538df64b045500db812becceeeadd11cac16b4ca6d8b871e53634ecd353bdf62eee
7
+ data.tar.gz: 0275a3d8696151a2df1f43489705d5ea718b9ce4c9db7b0aecc35c7674c0977186544c71971346a681ec27f6e5a87559a69bc6224bcfc383c853988c90a22f32
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.90.0 (2024-04-03)
5
+ ------------------
6
+
7
+ * Feature - Add ability to specify Security Policies for SFTP Connectors
8
+
4
9
  1.89.0 (2024-03-08)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.89.0
1
+ 1.90.0
@@ -744,6 +744,9 @@ module Aws::Transfer
744
744
  # @option params [Types::SftpConnectorConfig] :sftp_config
745
745
  # A structure that contains the parameters for an SFTP connector object.
746
746
  #
747
+ # @option params [String] :security_policy_name
748
+ # Specifies the name of the security policy for the connector.
749
+ #
747
750
  # @return [Types::CreateConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
748
751
  #
749
752
  # * {Types::CreateConnectorResponse#connector_id #connector_id} => String
@@ -775,6 +778,7 @@ module Aws::Transfer
775
778
  # user_secret_id: "SecretId",
776
779
  # trusted_host_keys: ["SftpConnectorTrustedHostKey"],
777
780
  # },
781
+ # security_policy_name: "ConnectorSecurityPolicyName",
778
782
  # })
779
783
  #
780
784
  # @example Response structure
@@ -1096,8 +1100,7 @@ module Aws::Transfer
1096
1100
  # Currently, only HTTP is supported.
1097
1101
  #
1098
1102
  # @option params [String] :security_policy_name
1099
- # Specifies the name of the security policy that is attached to the
1100
- # server.
1103
+ # Specifies the name of the security policy for the server.
1101
1104
  #
1102
1105
  # @option params [Array<Types::Tag>] :tags
1103
1106
  # Key-value pairs that can be used to group and search for servers.
@@ -2069,6 +2072,7 @@ module Aws::Transfer
2069
2072
  # resp.connector.sftp_config.trusted_host_keys[0] #=> String
2070
2073
  # resp.connector.service_managed_egress_ip_addresses #=> Array
2071
2074
  # resp.connector.service_managed_egress_ip_addresses[0] #=> String
2075
+ # resp.connector.security_policy_name #=> String
2072
2076
  #
2073
2077
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribeConnector AWS API Documentation
2074
2078
  #
@@ -2228,18 +2232,20 @@ module Aws::Transfer
2228
2232
  req.send_request(options)
2229
2233
  end
2230
2234
 
2231
- # Describes the security policy that is attached to your file transfer
2232
- # protocol-enabled server. The response contains a description of the
2233
- # security policy's properties. For more information about security
2234
- # policies, see [Working with security policies][1].
2235
+ # Describes the security policy that is attached to your server or SFTP
2236
+ # connector. The response contains a description of the security
2237
+ # policy's properties. For more information about security policies,
2238
+ # see [Working with security policies for servers][1] or [Working with
2239
+ # security policies for SFTP connectors][2].
2235
2240
  #
2236
2241
  #
2237
2242
  #
2238
2243
  # [1]: https://docs.aws.amazon.com/transfer/latest/userguide/security-policies.html
2244
+ # [2]: https://docs.aws.amazon.com/transfer/latest/userguide/security-policies-connectors.html
2239
2245
  #
2240
2246
  # @option params [required, String] :security_policy_name
2241
- # Specifies the name of the security policy that is attached to the
2242
- # server.
2247
+ # Specify the text name of the security policy for which you want the
2248
+ # details.
2243
2249
  #
2244
2250
  # @return [Types::DescribeSecurityPolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2245
2251
  #
@@ -2263,6 +2269,11 @@ module Aws::Transfer
2263
2269
  # resp.security_policy.ssh_macs[0] #=> String
2264
2270
  # resp.security_policy.tls_ciphers #=> Array
2265
2271
  # resp.security_policy.tls_ciphers[0] #=> String
2272
+ # resp.security_policy.ssh_host_key_algorithms #=> Array
2273
+ # resp.security_policy.ssh_host_key_algorithms[0] #=> String
2274
+ # resp.security_policy.type #=> String, one of "SERVER", "CONNECTOR"
2275
+ # resp.security_policy.protocols #=> Array
2276
+ # resp.security_policy.protocols[0] #=> String, one of "SFTP", "FTPS"
2266
2277
  #
2267
2278
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribeSecurityPolicy AWS API Documentation
2268
2279
  #
@@ -3058,8 +3069,15 @@ module Aws::Transfer
3058
3069
  req.send_request(options)
3059
3070
  end
3060
3071
 
3061
- # Lists the security policies that are attached to your file transfer
3062
- # protocol-enabled servers.
3072
+ # Lists the security policies that are attached to your servers and SFTP
3073
+ # connectors. For more information about security policies, see [Working
3074
+ # with security policies for servers][1] or [Working with security
3075
+ # policies for SFTP connectors][2].
3076
+ #
3077
+ #
3078
+ #
3079
+ # [1]: https://docs.aws.amazon.com/transfer/latest/userguide/security-policies.html
3080
+ # [2]: https://docs.aws.amazon.com/transfer/latest/userguide/security-policies-connectors.html
3063
3081
  #
3064
3082
  # @option params [Integer] :max_results
3065
3083
  # Specifies the number of security policies to return as a response to
@@ -4046,6 +4064,9 @@ module Aws::Transfer
4046
4064
  # @option params [Types::SftpConnectorConfig] :sftp_config
4047
4065
  # A structure that contains the parameters for an SFTP connector object.
4048
4066
  #
4067
+ # @option params [String] :security_policy_name
4068
+ # Specifies the name of the security policy for the connector.
4069
+ #
4049
4070
  # @return [Types::UpdateConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4050
4071
  #
4051
4072
  # * {Types::UpdateConnectorResponse#connector_id #connector_id} => String
@@ -4072,6 +4093,7 @@ module Aws::Transfer
4072
4093
  # user_secret_id: "SecretId",
4073
4094
  # trusted_host_keys: ["SftpConnectorTrustedHostKey"],
4074
4095
  # },
4096
+ # security_policy_name: "ConnectorSecurityPolicyName",
4075
4097
  # })
4076
4098
  #
4077
4099
  # @example Response structure
@@ -4373,8 +4395,7 @@ module Aws::Transfer
4373
4395
  # </note>
4374
4396
  #
4375
4397
  # @option params [String] :security_policy_name
4376
- # Specifies the name of the security policy that is attached to the
4377
- # server.
4398
+ # Specifies the name of the security policy for the server.
4378
4399
  #
4379
4400
  # @option params [required, String] :server_id
4380
4401
  # A system-assigned unique identifier for a server instance that the
@@ -4680,7 +4701,7 @@ module Aws::Transfer
4680
4701
  params: params,
4681
4702
  config: config)
4682
4703
  context[:gem_name] = 'aws-sdk-transfer'
4683
- context[:gem_version] = '1.89.0'
4704
+ context[:gem_version] = '1.90.0'
4684
4705
  Seahorse::Client::Request.new(handlers, context)
4685
4706
  end
4686
4707
 
@@ -38,6 +38,7 @@ module Aws::Transfer
38
38
  CompressionEnum = Shapes::StringShape.new(name: 'CompressionEnum')
39
39
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
40
40
  ConnectorId = Shapes::StringShape.new(name: 'ConnectorId')
41
+ ConnectorSecurityPolicyName = Shapes::StringShape.new(name: 'ConnectorSecurityPolicyName')
41
42
  CopyStepDetails = Shapes::StructureShape.new(name: 'CopyStepDetails')
42
43
  CreateAccessRequest = Shapes::StructureShape.new(name: 'CreateAccessRequest')
43
44
  CreateAccessResponse = Shapes::StructureShape.new(name: 'CreateAccessResponse')
@@ -246,6 +247,9 @@ module Aws::Transfer
246
247
  SecurityPolicyNames = Shapes::ListShape.new(name: 'SecurityPolicyNames')
247
248
  SecurityPolicyOption = Shapes::StringShape.new(name: 'SecurityPolicyOption')
248
249
  SecurityPolicyOptions = Shapes::ListShape.new(name: 'SecurityPolicyOptions')
250
+ SecurityPolicyProtocol = Shapes::StringShape.new(name: 'SecurityPolicyProtocol')
251
+ SecurityPolicyProtocols = Shapes::ListShape.new(name: 'SecurityPolicyProtocols')
252
+ SecurityPolicyResourceType = Shapes::StringShape.new(name: 'SecurityPolicyResourceType')
249
253
  SendWorkflowStepStateRequest = Shapes::StructureShape.new(name: 'SendWorkflowStepStateRequest')
250
254
  SendWorkflowStepStateResponse = Shapes::StructureShape.new(name: 'SendWorkflowStepStateResponse')
251
255
  ServerId = Shapes::StringShape.new(name: 'ServerId')
@@ -388,6 +392,7 @@ module Aws::Transfer
388
392
  CreateConnectorRequest.add_member(:logging_role, Shapes::ShapeRef.new(shape: Role, location_name: "LoggingRole"))
389
393
  CreateConnectorRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
390
394
  CreateConnectorRequest.add_member(:sftp_config, Shapes::ShapeRef.new(shape: SftpConnectorConfig, location_name: "SftpConfig"))
395
+ CreateConnectorRequest.add_member(:security_policy_name, Shapes::ShapeRef.new(shape: ConnectorSecurityPolicyName, location_name: "SecurityPolicyName"))
391
396
  CreateConnectorRequest.struct_class = Types::CreateConnectorRequest
392
397
 
393
398
  CreateConnectorResponse.add_member(:connector_id, Shapes::ShapeRef.new(shape: ConnectorId, required: true, location_name: "ConnectorId"))
@@ -622,6 +627,7 @@ module Aws::Transfer
622
627
  DescribedConnector.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
623
628
  DescribedConnector.add_member(:sftp_config, Shapes::ShapeRef.new(shape: SftpConnectorConfig, location_name: "SftpConfig"))
624
629
  DescribedConnector.add_member(:service_managed_egress_ip_addresses, Shapes::ShapeRef.new(shape: ServiceManagedEgressIpAddresses, location_name: "ServiceManagedEgressIpAddresses"))
630
+ DescribedConnector.add_member(:security_policy_name, Shapes::ShapeRef.new(shape: ConnectorSecurityPolicyName, location_name: "SecurityPolicyName"))
625
631
  DescribedConnector.struct_class = Types::DescribedConnector
626
632
 
627
633
  DescribedExecution.add_member(:execution_id, Shapes::ShapeRef.new(shape: ExecutionId, location_name: "ExecutionId"))
@@ -657,6 +663,9 @@ module Aws::Transfer
657
663
  DescribedSecurityPolicy.add_member(:ssh_kexs, Shapes::ShapeRef.new(shape: SecurityPolicyOptions, location_name: "SshKexs"))
658
664
  DescribedSecurityPolicy.add_member(:ssh_macs, Shapes::ShapeRef.new(shape: SecurityPolicyOptions, location_name: "SshMacs"))
659
665
  DescribedSecurityPolicy.add_member(:tls_ciphers, Shapes::ShapeRef.new(shape: SecurityPolicyOptions, location_name: "TlsCiphers"))
666
+ DescribedSecurityPolicy.add_member(:ssh_host_key_algorithms, Shapes::ShapeRef.new(shape: SecurityPolicyOptions, location_name: "SshHostKeyAlgorithms"))
667
+ DescribedSecurityPolicy.add_member(:type, Shapes::ShapeRef.new(shape: SecurityPolicyResourceType, location_name: "Type"))
668
+ DescribedSecurityPolicy.add_member(:protocols, Shapes::ShapeRef.new(shape: SecurityPolicyProtocols, location_name: "Protocols"))
660
669
  DescribedSecurityPolicy.struct_class = Types::DescribedSecurityPolicy
661
670
 
662
671
  DescribedServer.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "Arn"))
@@ -1054,6 +1063,8 @@ module Aws::Transfer
1054
1063
 
1055
1064
  SecurityPolicyOptions.member = Shapes::ShapeRef.new(shape: SecurityPolicyOption)
1056
1065
 
1066
+ SecurityPolicyProtocols.member = Shapes::ShapeRef.new(shape: SecurityPolicyProtocol)
1067
+
1057
1068
  SendWorkflowStepStateRequest.add_member(:workflow_id, Shapes::ShapeRef.new(shape: WorkflowId, required: true, location_name: "WorkflowId"))
1058
1069
  SendWorkflowStepStateRequest.add_member(:execution_id, Shapes::ShapeRef.new(shape: ExecutionId, required: true, location_name: "ExecutionId"))
1059
1070
  SendWorkflowStepStateRequest.add_member(:token, Shapes::ShapeRef.new(shape: CallbackToken, required: true, location_name: "Token"))
@@ -1190,6 +1201,7 @@ module Aws::Transfer
1190
1201
  UpdateConnectorRequest.add_member(:access_role, Shapes::ShapeRef.new(shape: Role, location_name: "AccessRole"))
1191
1202
  UpdateConnectorRequest.add_member(:logging_role, Shapes::ShapeRef.new(shape: Role, location_name: "LoggingRole"))
1192
1203
  UpdateConnectorRequest.add_member(:sftp_config, Shapes::ShapeRef.new(shape: SftpConnectorConfig, location_name: "SftpConfig"))
1204
+ UpdateConnectorRequest.add_member(:security_policy_name, Shapes::ShapeRef.new(shape: ConnectorSecurityPolicyName, location_name: "SecurityPolicyName"))
1193
1205
  UpdateConnectorRequest.struct_class = Types::UpdateConnectorRequest
1194
1206
 
1195
1207
  UpdateConnectorResponse.add_member(:connector_id, Shapes::ShapeRef.new(shape: ConnectorId, required: true, location_name: "ConnectorId"))
@@ -537,6 +537,10 @@ module Aws::Transfer
537
537
  # object.
538
538
  # @return [Types::SftpConnectorConfig]
539
539
  #
540
+ # @!attribute [rw] security_policy_name
541
+ # Specifies the name of the security policy for the connector.
542
+ # @return [String]
543
+ #
540
544
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/CreateConnectorRequest AWS API Documentation
541
545
  #
542
546
  class CreateConnectorRequest < Struct.new(
@@ -545,7 +549,8 @@ module Aws::Transfer
545
549
  :access_role,
546
550
  :logging_role,
547
551
  :tags,
548
- :sftp_config)
552
+ :sftp_config,
553
+ :security_policy_name)
549
554
  SENSITIVE = []
550
555
  include Aws::Structure
551
556
  end
@@ -873,8 +878,7 @@ module Aws::Transfer
873
878
  # @return [Types::ProtocolDetails]
874
879
  #
875
880
  # @!attribute [rw] security_policy_name
876
- # Specifies the name of the security policy that is attached to the
877
- # server.
881
+ # Specifies the name of the security policy for the server.
878
882
  # @return [String]
879
883
  #
880
884
  # @!attribute [rw] tags
@@ -1736,8 +1740,8 @@ module Aws::Transfer
1736
1740
  end
1737
1741
 
1738
1742
  # @!attribute [rw] security_policy_name
1739
- # Specifies the name of the security policy that is attached to the
1740
- # server.
1743
+ # Specify the text name of the security policy for which you want the
1744
+ # details.
1741
1745
  # @return [String]
1742
1746
  #
1743
1747
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribeSecurityPolicyRequest AWS API Documentation
@@ -2219,6 +2223,10 @@ module Aws::Transfer
2219
2223
  # addresses are assigned automatically when you create the connector.
2220
2224
  # @return [Array<String>]
2221
2225
  #
2226
+ # @!attribute [rw] security_policy_name
2227
+ # The text name of the security policy for the specified connector.
2228
+ # @return [String]
2229
+ #
2222
2230
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribedConnector AWS API Documentation
2223
2231
  #
2224
2232
  class DescribedConnector < Struct.new(
@@ -2230,7 +2238,8 @@ module Aws::Transfer
2230
2238
  :logging_role,
2231
2239
  :tags,
2232
2240
  :sftp_config,
2233
- :service_managed_egress_ip_addresses)
2241
+ :service_managed_egress_ip_addresses,
2242
+ :security_policy_name)
2234
2243
  SENSITIVE = []
2235
2244
  include Aws::Structure
2236
2245
  end
@@ -2402,44 +2411,72 @@ module Aws::Transfer
2402
2411
  include Aws::Structure
2403
2412
  end
2404
2413
 
2405
- # Describes the properties of a security policy that was specified. For
2414
+ # Describes the properties of a security policy that you specify. For
2406
2415
  # more information about security policies, see [Working with security
2407
- # policies][1].
2416
+ # policies for servers][1] or [Working with security policies for SFTP
2417
+ # connectors][2].
2408
2418
  #
2409
2419
  #
2410
2420
  #
2411
2421
  # [1]: https://docs.aws.amazon.com/transfer/latest/userguide/security-policies.html
2422
+ # [2]: https://docs.aws.amazon.com/transfer/latest/userguide/security-policies-connectors.html
2412
2423
  #
2413
2424
  # @!attribute [rw] fips
2414
2425
  # Specifies whether this policy enables Federal Information Processing
2415
- # Standards (FIPS).
2426
+ # Standards (FIPS). This parameter applies to both server and
2427
+ # connector security policies.
2416
2428
  # @return [Boolean]
2417
2429
  #
2418
2430
  # @!attribute [rw] security_policy_name
2419
- # Specifies the name of the security policy that is attached to the
2420
- # server.
2431
+ # The text name of the specified security policy.
2421
2432
  # @return [String]
2422
2433
  #
2423
2434
  # @!attribute [rw] ssh_ciphers
2424
- # Specifies the enabled Secure Shell (SSH) cipher encryption
2425
- # algorithms in the security policy that is attached to the server.
2435
+ # Lists the enabled Secure Shell (SSH) cipher encryption algorithms in
2436
+ # the security policy that is attached to the server or connector.
2437
+ # This parameter applies to both server and connector security
2438
+ # policies.
2426
2439
  # @return [Array<String>]
2427
2440
  #
2428
2441
  # @!attribute [rw] ssh_kexs
2429
- # Specifies the enabled SSH key exchange (KEX) encryption algorithms
2430
- # in the security policy that is attached to the server.
2442
+ # Lists the enabled SSH key exchange (KEX) encryption algorithms in
2443
+ # the security policy that is attached to the server or connector.
2444
+ # This parameter applies to both server and connector security
2445
+ # policies.
2431
2446
  # @return [Array<String>]
2432
2447
  #
2433
2448
  # @!attribute [rw] ssh_macs
2434
- # Specifies the enabled SSH message authentication code (MAC)
2435
- # encryption algorithms in the security policy that is attached to the
2436
- # server.
2449
+ # Lists the enabled SSH message authentication code (MAC) encryption
2450
+ # algorithms in the security policy that is attached to the server or
2451
+ # connector. This parameter applies to both server and connector
2452
+ # security policies.
2437
2453
  # @return [Array<String>]
2438
2454
  #
2439
2455
  # @!attribute [rw] tls_ciphers
2440
- # Specifies the enabled Transport Layer Security (TLS) cipher
2441
- # encryption algorithms in the security policy that is attached to the
2442
- # server.
2456
+ # Lists the enabled Transport Layer Security (TLS) cipher encryption
2457
+ # algorithms in the security policy that is attached to the server.
2458
+ #
2459
+ # <note markdown="1"> This parameter only applies to security policies for servers.
2460
+ #
2461
+ # </note>
2462
+ # @return [Array<String>]
2463
+ #
2464
+ # @!attribute [rw] ssh_host_key_algorithms
2465
+ # Lists the host key algorithms for the security policy.
2466
+ #
2467
+ # <note markdown="1"> This parameter only applies to security policies for connectors.
2468
+ #
2469
+ # </note>
2470
+ # @return [Array<String>]
2471
+ #
2472
+ # @!attribute [rw] type
2473
+ # The resource type to which the security policy applies, either
2474
+ # server or connector.
2475
+ # @return [String]
2476
+ #
2477
+ # @!attribute [rw] protocols
2478
+ # Lists the file transfer protocols that the security policy applies
2479
+ # to.
2443
2480
  # @return [Array<String>]
2444
2481
  #
2445
2482
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribedSecurityPolicy AWS API Documentation
@@ -2450,7 +2487,10 @@ module Aws::Transfer
2450
2487
  :ssh_ciphers,
2451
2488
  :ssh_kexs,
2452
2489
  :ssh_macs,
2453
- :tls_ciphers)
2490
+ :tls_ciphers,
2491
+ :ssh_host_key_algorithms,
2492
+ :type,
2493
+ :protocols)
2454
2494
  SENSITIVE = []
2455
2495
  include Aws::Structure
2456
2496
  end
@@ -2615,8 +2655,7 @@ module Aws::Transfer
2615
2655
  # @return [Array<String>]
2616
2656
  #
2617
2657
  # @!attribute [rw] security_policy_name
2618
- # Specifies the name of the security policy that is attached to the
2619
- # server.
2658
+ # Specifies the name of the security policy for the server.
2620
2659
  # @return [String]
2621
2660
  #
2622
2661
  # @!attribute [rw] server_id
@@ -5746,6 +5785,10 @@ module Aws::Transfer
5746
5785
  # object.
5747
5786
  # @return [Types::SftpConnectorConfig]
5748
5787
  #
5788
+ # @!attribute [rw] security_policy_name
5789
+ # Specifies the name of the security policy for the connector.
5790
+ # @return [String]
5791
+ #
5749
5792
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/UpdateConnectorRequest AWS API Documentation
5750
5793
  #
5751
5794
  class UpdateConnectorRequest < Struct.new(
@@ -5754,7 +5797,8 @@ module Aws::Transfer
5754
5797
  :as_2_config,
5755
5798
  :access_role,
5756
5799
  :logging_role,
5757
- :sftp_config)
5800
+ :sftp_config,
5801
+ :security_policy_name)
5758
5802
  SENSITIVE = []
5759
5803
  include Aws::Structure
5760
5804
  end
@@ -6060,8 +6104,7 @@ module Aws::Transfer
6060
6104
  # @return [Array<String>]
6061
6105
  #
6062
6106
  # @!attribute [rw] security_policy_name
6063
- # Specifies the name of the security policy that is attached to the
6064
- # server.
6107
+ # Specifies the name of the security policy for the server.
6065
6108
  # @return [String]
6066
6109
  #
6067
6110
  # @!attribute [rw] server_id
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-transfer/customizations'
53
53
  # @!group service
54
54
  module Aws::Transfer
55
55
 
56
- GEM_VERSION = '1.89.0'
56
+ GEM_VERSION = '1.90.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -152,7 +152,8 @@ module Aws
152
152
  ?sftp_config: {
153
153
  user_secret_id: ::String?,
154
154
  trusted_host_keys: Array[::String]?
155
- }
155
+ },
156
+ ?security_policy_name: ::String
156
157
  ) -> _CreateConnectorResponseSuccess
157
158
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConnectorResponseSuccess
158
159
 
@@ -963,7 +964,8 @@ module Aws
963
964
  ?sftp_config: {
964
965
  user_secret_id: ::String?,
965
966
  trusted_host_keys: Array[::String]?
966
- }
967
+ },
968
+ ?security_policy_name: ::String
967
969
  ) -> _UpdateConnectorResponseSuccess
968
970
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConnectorResponseSuccess
969
971
 
data/sig/types.rbs CHANGED
@@ -81,6 +81,7 @@ module Aws::Transfer
81
81
  attr_accessor logging_role: ::String
82
82
  attr_accessor tags: ::Array[Types::Tag]
83
83
  attr_accessor sftp_config: Types::SftpConnectorConfig
84
+ attr_accessor security_policy_name: ::String
84
85
  SENSITIVE: []
85
86
  end
86
87
 
@@ -411,6 +412,7 @@ module Aws::Transfer
411
412
  attr_accessor tags: ::Array[Types::Tag]
412
413
  attr_accessor sftp_config: Types::SftpConnectorConfig
413
414
  attr_accessor service_managed_egress_ip_addresses: ::Array[::String]
415
+ attr_accessor security_policy_name: ::String
414
416
  SENSITIVE: []
415
417
  end
416
418
 
@@ -454,6 +456,9 @@ module Aws::Transfer
454
456
  attr_accessor ssh_kexs: ::Array[::String]
455
457
  attr_accessor ssh_macs: ::Array[::String]
456
458
  attr_accessor tls_ciphers: ::Array[::String]
459
+ attr_accessor ssh_host_key_algorithms: ::Array[::String]
460
+ attr_accessor type: ("SERVER" | "CONNECTOR")
461
+ attr_accessor protocols: ::Array[("SFTP" | "FTPS")]
457
462
  SENSITIVE: []
458
463
  end
459
464
 
@@ -1110,6 +1115,7 @@ module Aws::Transfer
1110
1115
  attr_accessor access_role: ::String
1111
1116
  attr_accessor logging_role: ::String
1112
1117
  attr_accessor sftp_config: Types::SftpConnectorConfig
1118
+ attr_accessor security_policy_name: ::String
1113
1119
  SENSITIVE: []
1114
1120
  end
1115
1121
 
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.89.0
4
+ version: 1.90.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: 2024-03-08 00:00:00.000000000 Z
11
+ date: 2024-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core