aws-sdk-glue 1.175.0 → 1.176.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: 471b4ec8474074f1289956c2f175ce7e4a61c1e0d8847d1bce9082cbd878b9c1
4
- data.tar.gz: 0ce1b0804f982ff6794b63738a5e110101dee40fdeaa586bba69c12a333a7454
3
+ metadata.gz: b6f8609b7df80e1f7b0ad605bd38b880dd7d46499e863575b54a6eef7d1e526e
4
+ data.tar.gz: b0a174c313c407711b657fd717ebe173c262d98d156e1e7d841ec1eb7814a321
5
5
  SHA512:
6
- metadata.gz: 48fbc558e4bbb1b2b2adb54518996bfad05c8941a1675bb9b90fa15ab1bc7285279e714bff8e6e3494c295d7d532c3fe42b5af479964c606e7b203b5834aa547
7
- data.tar.gz: 426afd75c9f75b0b06aef2af76d6a6fb4a0bd6a5498f6de9485c1d853f0891f7440e35f4ce7788f472031d8844c6d52cab15739d003382672d36fb6e44abeb04
6
+ metadata.gz: 108dc314d17ada395e76a1fe670acb053ea80fde5508cc074ccb9f7a0e1ac89109ff130f4bc167ac43d44fc34195c161920502a4b14973be374eb3b4dff26388
7
+ data.tar.gz: 43a021c85cbeb879d8daf9e89a027e4c804decd40257bde9791f690afba6d3c84b8288045dc9b26735213d28d3c5b84ec0557e038d8a4304d60d0ef5fb8230b1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.176.0 (2024-06-05)
5
+ ------------------
6
+
7
+ * Feature - AWS Glue now supports native SaaS connectivity: Salesforce connector available now
8
+
4
9
  1.175.0 (2024-05-29)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.175.0
1
+ 1.176.0
@@ -2825,7 +2825,9 @@ module Aws::Glue
2825
2825
  # @option params [Hash<String,String>] :tags
2826
2826
  # The tags you assign to the connection.
2827
2827
  #
2828
- # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2828
+ # @return [Types::CreateConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2829
+ #
2830
+ # * {Types::CreateConnectionResponse#create_connection_status #create_connection_status} => String
2829
2831
  #
2830
2832
  # @example Request syntax with placeholder values
2831
2833
  #
@@ -2834,7 +2836,7 @@ module Aws::Glue
2834
2836
  # connection_input: { # required
2835
2837
  # name: "NameString", # required
2836
2838
  # description: "DescriptionString",
2837
- # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK, MARKETPLACE, CUSTOM
2839
+ # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK, MARKETPLACE, CUSTOM, SALESFORCE
2838
2840
  # match_criteria: ["NameString"],
2839
2841
  # connection_properties: { # required
2840
2842
  # "HOST" => "ValueString",
@@ -2844,12 +2846,36 @@ module Aws::Glue
2844
2846
  # security_group_id_list: ["NameString"],
2845
2847
  # availability_zone: "NameString",
2846
2848
  # },
2849
+ # authentication_configuration: {
2850
+ # authentication_type: "BASIC", # accepts BASIC, OAUTH2, CUSTOM
2851
+ # secret_arn: "SecretArn",
2852
+ # o_auth_2_properties: {
2853
+ # o_auth_2_grant_type: "AUTHORIZATION_CODE", # accepts AUTHORIZATION_CODE, CLIENT_CREDENTIALS, JWT_BEARER
2854
+ # o_auth_2_client_application: {
2855
+ # user_managed_client_application_client_id: "UserManagedClientApplicationClientId",
2856
+ # aws_managed_client_application_reference: "AWSManagedClientApplicationReference",
2857
+ # },
2858
+ # token_url: "TokenUrl",
2859
+ # token_url_parameters_map: {
2860
+ # "TokenUrlParameterKey" => "TokenUrlParameterValue",
2861
+ # },
2862
+ # authorization_code_properties: {
2863
+ # authorization_code: "AuthorizationCode",
2864
+ # redirect_uri: "RedirectUri",
2865
+ # },
2866
+ # },
2867
+ # },
2868
+ # validate_credentials: false,
2847
2869
  # },
2848
2870
  # tags: {
2849
2871
  # "TagKey" => "TagValue",
2850
2872
  # },
2851
2873
  # })
2852
2874
  #
2875
+ # @example Response structure
2876
+ #
2877
+ # resp.create_connection_status #=> String, one of "READY", "IN_PROGRESS", "FAILED"
2878
+ #
2853
2879
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateConnection AWS API Documentation
2854
2880
  #
2855
2881
  # @overload create_connection(params = {})
@@ -3506,7 +3532,13 @@ module Aws::Glue
3506
3532
  # @option params [Integer] :timeout
3507
3533
  # The job timeout in minutes. This is the maximum time that a job run
3508
3534
  # can consume resources before it is terminated and enters `TIMEOUT`
3509
- # status. The default is 2,880 minutes (48 hours).
3535
+ # status. The default is 2,880 minutes (48 hours) for batch jobs.
3536
+ #
3537
+ # Streaming jobs must have timeout values less than 7 days or 10080
3538
+ # minutes. When the value is left blank, the job will be restarted after
3539
+ # 7 days based if you have not setup a maintenance window. If you have
3540
+ # setup maintenance window, it will be restarted during the maintenance
3541
+ # window after 7 days.
3510
3542
  #
3511
3543
  # @option params [Float] :max_capacity
3512
3544
  # For Glue version 1.0 or earlier jobs, using the standard worker type,
@@ -6364,7 +6396,7 @@ module Aws::Glue
6364
6396
  #
6365
6397
  # resp.connection.name #=> String
6366
6398
  # resp.connection.description #=> String
6367
- # resp.connection.connection_type #=> String, one of "JDBC", "SFTP", "MONGODB", "KAFKA", "NETWORK", "MARKETPLACE", "CUSTOM"
6399
+ # resp.connection.connection_type #=> String, one of "JDBC", "SFTP", "MONGODB", "KAFKA", "NETWORK", "MARKETPLACE", "CUSTOM", "SALESFORCE"
6368
6400
  # resp.connection.match_criteria #=> Array
6369
6401
  # resp.connection.match_criteria[0] #=> String
6370
6402
  # resp.connection.connection_properties #=> Hash
@@ -6376,6 +6408,17 @@ module Aws::Glue
6376
6408
  # resp.connection.creation_time #=> Time
6377
6409
  # resp.connection.last_updated_time #=> Time
6378
6410
  # resp.connection.last_updated_by #=> String
6411
+ # resp.connection.status #=> String, one of "READY", "IN_PROGRESS", "FAILED"
6412
+ # resp.connection.status_reason #=> String
6413
+ # resp.connection.last_connection_validation_time #=> Time
6414
+ # resp.connection.authentication_configuration.authentication_type #=> String, one of "BASIC", "OAUTH2", "CUSTOM"
6415
+ # resp.connection.authentication_configuration.secret_arn #=> String
6416
+ # resp.connection.authentication_configuration.o_auth_2_properties.o_auth_2_grant_type #=> String, one of "AUTHORIZATION_CODE", "CLIENT_CREDENTIALS", "JWT_BEARER"
6417
+ # resp.connection.authentication_configuration.o_auth_2_properties.o_auth_2_client_application.user_managed_client_application_client_id #=> String
6418
+ # resp.connection.authentication_configuration.o_auth_2_properties.o_auth_2_client_application.aws_managed_client_application_reference #=> String
6419
+ # resp.connection.authentication_configuration.o_auth_2_properties.token_url #=> String
6420
+ # resp.connection.authentication_configuration.o_auth_2_properties.token_url_parameters_map #=> Hash
6421
+ # resp.connection.authentication_configuration.o_auth_2_properties.token_url_parameters_map["TokenUrlParameterKey"] #=> String
6379
6422
  #
6380
6423
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetConnection AWS API Documentation
6381
6424
  #
@@ -6422,7 +6465,7 @@ module Aws::Glue
6422
6465
  # catalog_id: "CatalogIdString",
6423
6466
  # filter: {
6424
6467
  # match_criteria: ["NameString"],
6425
- # connection_type: "JDBC", # accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK, MARKETPLACE, CUSTOM
6468
+ # connection_type: "JDBC", # accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK, MARKETPLACE, CUSTOM, SALESFORCE
6426
6469
  # },
6427
6470
  # hide_password: false,
6428
6471
  # next_token: "Token",
@@ -6434,7 +6477,7 @@ module Aws::Glue
6434
6477
  # resp.connection_list #=> Array
6435
6478
  # resp.connection_list[0].name #=> String
6436
6479
  # resp.connection_list[0].description #=> String
6437
- # resp.connection_list[0].connection_type #=> String, one of "JDBC", "SFTP", "MONGODB", "KAFKA", "NETWORK", "MARKETPLACE", "CUSTOM"
6480
+ # resp.connection_list[0].connection_type #=> String, one of "JDBC", "SFTP", "MONGODB", "KAFKA", "NETWORK", "MARKETPLACE", "CUSTOM", "SALESFORCE"
6438
6481
  # resp.connection_list[0].match_criteria #=> Array
6439
6482
  # resp.connection_list[0].match_criteria[0] #=> String
6440
6483
  # resp.connection_list[0].connection_properties #=> Hash
@@ -6446,6 +6489,17 @@ module Aws::Glue
6446
6489
  # resp.connection_list[0].creation_time #=> Time
6447
6490
  # resp.connection_list[0].last_updated_time #=> Time
6448
6491
  # resp.connection_list[0].last_updated_by #=> String
6492
+ # resp.connection_list[0].status #=> String, one of "READY", "IN_PROGRESS", "FAILED"
6493
+ # resp.connection_list[0].status_reason #=> String
6494
+ # resp.connection_list[0].last_connection_validation_time #=> Time
6495
+ # resp.connection_list[0].authentication_configuration.authentication_type #=> String, one of "BASIC", "OAUTH2", "CUSTOM"
6496
+ # resp.connection_list[0].authentication_configuration.secret_arn #=> String
6497
+ # resp.connection_list[0].authentication_configuration.o_auth_2_properties.o_auth_2_grant_type #=> String, one of "AUTHORIZATION_CODE", "CLIENT_CREDENTIALS", "JWT_BEARER"
6498
+ # resp.connection_list[0].authentication_configuration.o_auth_2_properties.o_auth_2_client_application.user_managed_client_application_client_id #=> String
6499
+ # resp.connection_list[0].authentication_configuration.o_auth_2_properties.o_auth_2_client_application.aws_managed_client_application_reference #=> String
6500
+ # resp.connection_list[0].authentication_configuration.o_auth_2_properties.token_url #=> String
6501
+ # resp.connection_list[0].authentication_configuration.o_auth_2_properties.token_url_parameters_map #=> Hash
6502
+ # resp.connection_list[0].authentication_configuration.o_auth_2_properties.token_url_parameters_map["TokenUrlParameterKey"] #=> String
6449
6503
  # resp.next_token #=> String
6450
6504
  #
6451
6505
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetConnections AWS API Documentation
@@ -15021,8 +15075,11 @@ module Aws::Glue
15021
15075
  # run can consume resources before it is terminated and enters `TIMEOUT`
15022
15076
  # status. This value overrides the timeout value set in the parent job.
15023
15077
  #
15024
- # Streaming jobs do not have a timeout. The default for non-streaming
15025
- # jobs is 2,880 minutes (48 hours).
15078
+ # Streaming jobs must have timeout values less than 7 days or 10080
15079
+ # minutes. When the value is left blank, the job will be restarted after
15080
+ # 7 days based if you have not setup a maintenance window. If you have
15081
+ # setup maintenance window, it will be restarted during the maintenance
15082
+ # window after 7 days.
15026
15083
  #
15027
15084
  # @option params [Float] :max_capacity
15028
15085
  # For Glue version 1.0 or earlier jobs, using the standard worker type,
@@ -15926,7 +15983,7 @@ module Aws::Glue
15926
15983
  # connection_input: { # required
15927
15984
  # name: "NameString", # required
15928
15985
  # description: "DescriptionString",
15929
- # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK, MARKETPLACE, CUSTOM
15986
+ # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK, MARKETPLACE, CUSTOM, SALESFORCE
15930
15987
  # match_criteria: ["NameString"],
15931
15988
  # connection_properties: { # required
15932
15989
  # "HOST" => "ValueString",
@@ -15936,6 +15993,26 @@ module Aws::Glue
15936
15993
  # security_group_id_list: ["NameString"],
15937
15994
  # availability_zone: "NameString",
15938
15995
  # },
15996
+ # authentication_configuration: {
15997
+ # authentication_type: "BASIC", # accepts BASIC, OAUTH2, CUSTOM
15998
+ # secret_arn: "SecretArn",
15999
+ # o_auth_2_properties: {
16000
+ # o_auth_2_grant_type: "AUTHORIZATION_CODE", # accepts AUTHORIZATION_CODE, CLIENT_CREDENTIALS, JWT_BEARER
16001
+ # o_auth_2_client_application: {
16002
+ # user_managed_client_application_client_id: "UserManagedClientApplicationClientId",
16003
+ # aws_managed_client_application_reference: "AWSManagedClientApplicationReference",
16004
+ # },
16005
+ # token_url: "TokenUrl",
16006
+ # token_url_parameters_map: {
16007
+ # "TokenUrlParameterKey" => "TokenUrlParameterValue",
16008
+ # },
16009
+ # authorization_code_properties: {
16010
+ # authorization_code: "AuthorizationCode",
16011
+ # redirect_uri: "RedirectUri",
16012
+ # },
16013
+ # },
16014
+ # },
16015
+ # validate_credentials: false,
15939
16016
  # },
15940
16017
  # })
15941
16018
  #
@@ -17192,7 +17269,7 @@ module Aws::Glue
17192
17269
  params: params,
17193
17270
  config: config)
17194
17271
  context[:gem_name] = 'aws-sdk-glue'
17195
- context[:gem_version] = '1.175.0'
17272
+ context[:gem_version] = '1.176.0'
17196
17273
  Seahorse::Client::Request.new(handlers, context)
17197
17274
  end
17198
17275
 
@@ -13,6 +13,7 @@ module Aws::Glue
13
13
 
14
14
  include Seahorse::Model
15
15
 
16
+ AWSManagedClientApplicationReference = Shapes::StringShape.new(name: 'AWSManagedClientApplicationReference')
16
17
  AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
17
18
  AccountId = Shapes::StringShape.new(name: 'AccountId')
18
19
  Action = Shapes::StructureShape.new(name: 'Action')
@@ -39,6 +40,11 @@ module Aws::Glue
39
40
  AuditContext = Shapes::StructureShape.new(name: 'AuditContext')
40
41
  AuditContextString = Shapes::StringShape.new(name: 'AuditContextString')
41
42
  AuthTokenString = Shapes::StringShape.new(name: 'AuthTokenString')
43
+ AuthenticationConfiguration = Shapes::StructureShape.new(name: 'AuthenticationConfiguration')
44
+ AuthenticationConfigurationInput = Shapes::StructureShape.new(name: 'AuthenticationConfigurationInput')
45
+ AuthenticationType = Shapes::StringShape.new(name: 'AuthenticationType')
46
+ AuthorizationCode = Shapes::StringShape.new(name: 'AuthorizationCode')
47
+ AuthorizationCodeProperties = Shapes::StructureShape.new(name: 'AuthorizationCodeProperties')
42
48
  BackfillError = Shapes::StructureShape.new(name: 'BackfillError')
43
49
  BackfillErrorCode = Shapes::StringShape.new(name: 'BackfillErrorCode')
44
50
  BackfillErroredPartitionsList = Shapes::ListShape.new(name: 'BackfillErroredPartitionsList')
@@ -209,6 +215,7 @@ module Aws::Glue
209
215
  ConnectionPasswordEncryption = Shapes::StructureShape.new(name: 'ConnectionPasswordEncryption')
210
216
  ConnectionProperties = Shapes::MapShape.new(name: 'ConnectionProperties')
211
217
  ConnectionPropertyKey = Shapes::StringShape.new(name: 'ConnectionPropertyKey')
218
+ ConnectionStatus = Shapes::StringShape.new(name: 'ConnectionStatus')
212
219
  ConnectionType = Shapes::StringShape.new(name: 'ConnectionType')
213
220
  ConnectionsList = Shapes::StructureShape.new(name: 'ConnectionsList')
214
221
  ConnectorDataSource = Shapes::StructureShape.new(name: 'ConnectorDataSource')
@@ -774,6 +781,7 @@ module Aws::Glue
774
781
  Long = Shapes::IntegerShape.new(name: 'Long')
775
782
  LongColumnStatisticsData = Shapes::StructureShape.new(name: 'LongColumnStatisticsData')
776
783
  LongValue = Shapes::IntegerShape.new(name: 'LongValue')
784
+ LongValueString = Shapes::StringShape.new(name: 'LongValueString')
777
785
  MLTransform = Shapes::StructureShape.new(name: 'MLTransform')
778
786
  MLTransformNotReadyException = Shapes::StructureShape.new(name: 'MLTransformNotReadyException')
779
787
  MLUserDataEncryption = Shapes::StructureShape.new(name: 'MLUserDataEncryption')
@@ -832,6 +840,10 @@ module Aws::Glue
832
840
  NullableDouble = Shapes::FloatShape.new(name: 'NullableDouble')
833
841
  NullableInteger = Shapes::IntegerShape.new(name: 'NullableInteger')
834
842
  NullableString = Shapes::StringShape.new(name: 'NullableString')
843
+ OAuth2ClientApplication = Shapes::StructureShape.new(name: 'OAuth2ClientApplication')
844
+ OAuth2GrantType = Shapes::StringShape.new(name: 'OAuth2GrantType')
845
+ OAuth2Properties = Shapes::StructureShape.new(name: 'OAuth2Properties')
846
+ OAuth2PropertiesInput = Shapes::StructureShape.new(name: 'OAuth2PropertiesInput')
835
847
  OneInput = Shapes::ListShape.new(name: 'OneInput')
836
848
  OpenTableFormatInput = Shapes::StructureShape.new(name: 'OpenTableFormatInput')
837
849
  OperationTimeoutException = Shapes::StructureShape.new(name: 'OperationTimeoutException')
@@ -919,6 +931,7 @@ module Aws::Glue
919
931
  RecordsCount = Shapes::IntegerShape.new(name: 'RecordsCount')
920
932
  RecrawlBehavior = Shapes::StringShape.new(name: 'RecrawlBehavior')
921
933
  RecrawlPolicy = Shapes::StructureShape.new(name: 'RecrawlPolicy')
934
+ RedirectUri = Shapes::StringShape.new(name: 'RedirectUri')
922
935
  RedshiftSource = Shapes::StructureShape.new(name: 'RedshiftSource')
923
936
  RedshiftTarget = Shapes::StructureShape.new(name: 'RedshiftTarget')
924
937
  RegisterSchemaVersionInput = Shapes::StructureShape.new(name: 'RegisterSchemaVersionInput')
@@ -1007,6 +1020,7 @@ module Aws::Glue
1007
1020
  SearchPropertyPredicates = Shapes::ListShape.new(name: 'SearchPropertyPredicates')
1008
1021
  SearchTablesRequest = Shapes::StructureShape.new(name: 'SearchTablesRequest')
1009
1022
  SearchTablesResponse = Shapes::StructureShape.new(name: 'SearchTablesResponse')
1023
+ SecretArn = Shapes::StringShape.new(name: 'SecretArn')
1010
1024
  SecurityConfiguration = Shapes::StructureShape.new(name: 'SecurityConfiguration')
1011
1025
  SecurityConfigurationList = Shapes::ListShape.new(name: 'SecurityConfigurationList')
1012
1026
  SecurityGroupIdList = Shapes::ListShape.new(name: 'SecurityGroupIdList')
@@ -1127,6 +1141,10 @@ module Aws::Glue
1127
1141
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
1128
1142
  TimestampValue = Shapes::TimestampShape.new(name: 'TimestampValue')
1129
1143
  Token = Shapes::StringShape.new(name: 'Token')
1144
+ TokenUrl = Shapes::StringShape.new(name: 'TokenUrl')
1145
+ TokenUrlParameterKey = Shapes::StringShape.new(name: 'TokenUrlParameterKey')
1146
+ TokenUrlParameterValue = Shapes::StringShape.new(name: 'TokenUrlParameterValue')
1147
+ TokenUrlParametersMap = Shapes::MapShape.new(name: 'TokenUrlParametersMap')
1130
1148
  Topk = Shapes::IntegerShape.new(name: 'Topk')
1131
1149
  TotalSegmentsInteger = Shapes::IntegerShape.new(name: 'TotalSegmentsInteger')
1132
1150
  TransactionIdString = Shapes::StringShape.new(name: 'TransactionIdString')
@@ -1215,6 +1233,7 @@ module Aws::Glue
1215
1233
  UserDefinedFunction = Shapes::StructureShape.new(name: 'UserDefinedFunction')
1216
1234
  UserDefinedFunctionInput = Shapes::StructureShape.new(name: 'UserDefinedFunctionInput')
1217
1235
  UserDefinedFunctionList = Shapes::ListShape.new(name: 'UserDefinedFunctionList')
1236
+ UserManagedClientApplicationClientId = Shapes::StringShape.new(name: 'UserManagedClientApplicationClientId')
1218
1237
  ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
1219
1238
  ValueString = Shapes::StringShape.new(name: 'ValueString')
1220
1239
  ValueStringList = Shapes::ListShape.new(name: 'ValueStringList')
@@ -1345,6 +1364,20 @@ module Aws::Glue
1345
1364
  AuditContext.add_member(:all_columns_requested, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "AllColumnsRequested"))
1346
1365
  AuditContext.struct_class = Types::AuditContext
1347
1366
 
1367
+ AuthenticationConfiguration.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AuthenticationType, location_name: "AuthenticationType"))
1368
+ AuthenticationConfiguration.add_member(:secret_arn, Shapes::ShapeRef.new(shape: SecretArn, location_name: "SecretArn"))
1369
+ AuthenticationConfiguration.add_member(:o_auth_2_properties, Shapes::ShapeRef.new(shape: OAuth2Properties, location_name: "OAuth2Properties"))
1370
+ AuthenticationConfiguration.struct_class = Types::AuthenticationConfiguration
1371
+
1372
+ AuthenticationConfigurationInput.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AuthenticationType, location_name: "AuthenticationType"))
1373
+ AuthenticationConfigurationInput.add_member(:secret_arn, Shapes::ShapeRef.new(shape: SecretArn, location_name: "SecretArn"))
1374
+ AuthenticationConfigurationInput.add_member(:o_auth_2_properties, Shapes::ShapeRef.new(shape: OAuth2PropertiesInput, location_name: "OAuth2Properties"))
1375
+ AuthenticationConfigurationInput.struct_class = Types::AuthenticationConfigurationInput
1376
+
1377
+ AuthorizationCodeProperties.add_member(:authorization_code, Shapes::ShapeRef.new(shape: AuthorizationCode, location_name: "AuthorizationCode"))
1378
+ AuthorizationCodeProperties.add_member(:redirect_uri, Shapes::ShapeRef.new(shape: RedirectUri, location_name: "RedirectUri"))
1379
+ AuthorizationCodeProperties.struct_class = Types::AuthorizationCodeProperties
1380
+
1348
1381
  BackfillError.add_member(:code, Shapes::ShapeRef.new(shape: BackfillErrorCode, location_name: "Code"))
1349
1382
  BackfillError.add_member(:partitions, Shapes::ShapeRef.new(shape: BackfillErroredPartitionsList, location_name: "Partitions"))
1350
1383
  BackfillError.struct_class = Types::BackfillError
@@ -1932,6 +1965,10 @@ module Aws::Glue
1932
1965
  Connection.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
1933
1966
  Connection.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedTime"))
1934
1967
  Connection.add_member(:last_updated_by, Shapes::ShapeRef.new(shape: NameString, location_name: "LastUpdatedBy"))
1968
+ Connection.add_member(:status, Shapes::ShapeRef.new(shape: ConnectionStatus, location_name: "Status"))
1969
+ Connection.add_member(:status_reason, Shapes::ShapeRef.new(shape: LongValueString, location_name: "StatusReason"))
1970
+ Connection.add_member(:last_connection_validation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastConnectionValidationTime"))
1971
+ Connection.add_member(:authentication_configuration, Shapes::ShapeRef.new(shape: AuthenticationConfiguration, location_name: "AuthenticationConfiguration"))
1935
1972
  Connection.struct_class = Types::Connection
1936
1973
 
1937
1974
  ConnectionInput.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
@@ -1940,6 +1977,8 @@ module Aws::Glue
1940
1977
  ConnectionInput.add_member(:match_criteria, Shapes::ShapeRef.new(shape: MatchCriteria, location_name: "MatchCriteria"))
1941
1978
  ConnectionInput.add_member(:connection_properties, Shapes::ShapeRef.new(shape: ConnectionProperties, required: true, location_name: "ConnectionProperties"))
1942
1979
  ConnectionInput.add_member(:physical_connection_requirements, Shapes::ShapeRef.new(shape: PhysicalConnectionRequirements, location_name: "PhysicalConnectionRequirements"))
1980
+ ConnectionInput.add_member(:authentication_configuration, Shapes::ShapeRef.new(shape: AuthenticationConfigurationInput, location_name: "AuthenticationConfiguration"))
1981
+ ConnectionInput.add_member(:validate_credentials, Shapes::ShapeRef.new(shape: Boolean, location_name: "ValidateCredentials"))
1943
1982
  ConnectionInput.struct_class = Types::ConnectionInput
1944
1983
 
1945
1984
  ConnectionList.member = Shapes::ShapeRef.new(shape: Connection)
@@ -2084,6 +2123,7 @@ module Aws::Glue
2084
2123
  CreateConnectionRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
2085
2124
  CreateConnectionRequest.struct_class = Types::CreateConnectionRequest
2086
2125
 
2126
+ CreateConnectionResponse.add_member(:create_connection_status, Shapes::ShapeRef.new(shape: ConnectionStatus, location_name: "CreateConnectionStatus"))
2087
2127
  CreateConnectionResponse.struct_class = Types::CreateConnectionResponse
2088
2128
 
2089
2129
  CreateCrawlerRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
@@ -4454,6 +4494,23 @@ module Aws::Glue
4454
4494
 
4455
4495
  NullValueFields.member = Shapes::ShapeRef.new(shape: NullValueField)
4456
4496
 
4497
+ OAuth2ClientApplication.add_member(:user_managed_client_application_client_id, Shapes::ShapeRef.new(shape: UserManagedClientApplicationClientId, location_name: "UserManagedClientApplicationClientId"))
4498
+ OAuth2ClientApplication.add_member(:aws_managed_client_application_reference, Shapes::ShapeRef.new(shape: AWSManagedClientApplicationReference, location_name: "AWSManagedClientApplicationReference"))
4499
+ OAuth2ClientApplication.struct_class = Types::OAuth2ClientApplication
4500
+
4501
+ OAuth2Properties.add_member(:o_auth_2_grant_type, Shapes::ShapeRef.new(shape: OAuth2GrantType, location_name: "OAuth2GrantType"))
4502
+ OAuth2Properties.add_member(:o_auth_2_client_application, Shapes::ShapeRef.new(shape: OAuth2ClientApplication, location_name: "OAuth2ClientApplication"))
4503
+ OAuth2Properties.add_member(:token_url, Shapes::ShapeRef.new(shape: TokenUrl, location_name: "TokenUrl"))
4504
+ OAuth2Properties.add_member(:token_url_parameters_map, Shapes::ShapeRef.new(shape: TokenUrlParametersMap, location_name: "TokenUrlParametersMap"))
4505
+ OAuth2Properties.struct_class = Types::OAuth2Properties
4506
+
4507
+ OAuth2PropertiesInput.add_member(:o_auth_2_grant_type, Shapes::ShapeRef.new(shape: OAuth2GrantType, location_name: "OAuth2GrantType"))
4508
+ OAuth2PropertiesInput.add_member(:o_auth_2_client_application, Shapes::ShapeRef.new(shape: OAuth2ClientApplication, location_name: "OAuth2ClientApplication"))
4509
+ OAuth2PropertiesInput.add_member(:token_url, Shapes::ShapeRef.new(shape: TokenUrl, location_name: "TokenUrl"))
4510
+ OAuth2PropertiesInput.add_member(:token_url_parameters_map, Shapes::ShapeRef.new(shape: TokenUrlParametersMap, location_name: "TokenUrlParametersMap"))
4511
+ OAuth2PropertiesInput.add_member(:authorization_code_properties, Shapes::ShapeRef.new(shape: AuthorizationCodeProperties, location_name: "AuthorizationCodeProperties"))
4512
+ OAuth2PropertiesInput.struct_class = Types::OAuth2PropertiesInput
4513
+
4457
4514
  OneInput.member = Shapes::ShapeRef.new(shape: NodeId)
4458
4515
 
4459
4516
  OpenTableFormatInput.add_member(:iceberg_input, Shapes::ShapeRef.new(shape: IcebergInput, location_name: "IcebergInput"))
@@ -5515,6 +5572,9 @@ module Aws::Glue
5515
5572
  TaskRunSortCriteria.add_member(:sort_direction, Shapes::ShapeRef.new(shape: SortDirectionType, required: true, location_name: "SortDirection"))
5516
5573
  TaskRunSortCriteria.struct_class = Types::TaskRunSortCriteria
5517
5574
 
5575
+ TokenUrlParametersMap.key = Shapes::ShapeRef.new(shape: TokenUrlParameterKey)
5576
+ TokenUrlParametersMap.value = Shapes::ShapeRef.new(shape: TokenUrlParameterValue)
5577
+
5518
5578
  TransformConfigParameter.add_member(:name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Name"))
5519
5579
  TransformConfigParameter.add_member(:type, Shapes::ShapeRef.new(shape: ParamType, required: true, location_name: "Type"))
5520
5580
  TransformConfigParameter.add_member(:validation_rule, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "ValidationRule"))
@@ -5960,6 +6020,7 @@ module Aws::Glue
5960
6020
 
5961
6021
  api.metadata = {
5962
6022
  "apiVersion" => "2017-03-31",
6023
+ "auth" => ["aws.auth#sigv4"],
5963
6024
  "endpointPrefix" => "glue",
5964
6025
  "jsonVersion" => "1.1",
5965
6026
  "protocol" => "json",
@@ -467,6 +467,83 @@ module Aws::Glue
467
467
  include Aws::Structure
468
468
  end
469
469
 
470
+ # A structure containing the authentication configuration.
471
+ #
472
+ # @!attribute [rw] authentication_type
473
+ # A structure containing the authentication configuration.
474
+ # @return [String]
475
+ #
476
+ # @!attribute [rw] secret_arn
477
+ # The secret manager ARN to store credentials.
478
+ # @return [String]
479
+ #
480
+ # @!attribute [rw] o_auth_2_properties
481
+ # The properties for OAuth2 authentication.
482
+ # @return [Types::OAuth2Properties]
483
+ #
484
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/AuthenticationConfiguration AWS API Documentation
485
+ #
486
+ class AuthenticationConfiguration < Struct.new(
487
+ :authentication_type,
488
+ :secret_arn,
489
+ :o_auth_2_properties)
490
+ SENSITIVE = []
491
+ include Aws::Structure
492
+ end
493
+
494
+ # A structure containing the authentication configuration in the
495
+ # CreateConnection request.
496
+ #
497
+ # @!attribute [rw] authentication_type
498
+ # A structure containing the authentication configuration in the
499
+ # CreateConnection request.
500
+ # @return [String]
501
+ #
502
+ # @!attribute [rw] secret_arn
503
+ # The secret manager ARN to store credentials in the CreateConnection
504
+ # request.
505
+ # @return [String]
506
+ #
507
+ # @!attribute [rw] o_auth_2_properties
508
+ # The properties for OAuth2 authentication in the CreateConnection
509
+ # request.
510
+ # @return [Types::OAuth2PropertiesInput]
511
+ #
512
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/AuthenticationConfigurationInput AWS API Documentation
513
+ #
514
+ class AuthenticationConfigurationInput < Struct.new(
515
+ :authentication_type,
516
+ :secret_arn,
517
+ :o_auth_2_properties)
518
+ SENSITIVE = []
519
+ include Aws::Structure
520
+ end
521
+
522
+ # The set of properties required for the the OAuth2 `AUTHORIZATION_CODE`
523
+ # grant type workflow.
524
+ #
525
+ # @!attribute [rw] authorization_code
526
+ # An authorization code to be used in the third leg of the
527
+ # `AUTHORIZATION_CODE` grant workflow. This is a single-use code which
528
+ # becomes invalid once exchanged for an access token, thus it is
529
+ # acceptable to have this value as a request parameter.
530
+ # @return [String]
531
+ #
532
+ # @!attribute [rw] redirect_uri
533
+ # The redirect URI where the user gets redirected to by authorization
534
+ # server when issuing an authorization code. The URI is subsequently
535
+ # used when the authorization code is exchanged for an access token.
536
+ # @return [String]
537
+ #
538
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/AuthorizationCodeProperties AWS API Documentation
539
+ #
540
+ class AuthorizationCodeProperties < Struct.new(
541
+ :authorization_code,
542
+ :redirect_uri)
543
+ SENSITIVE = []
544
+ include Aws::Structure
545
+ end
546
+
470
547
  # A list of errors that can occur when registering partition indexes for
471
548
  # an existing table.
472
549
  #
@@ -3184,17 +3261,19 @@ module Aws::Glue
3184
3261
  # @return [Hash<String,String>]
3185
3262
  #
3186
3263
  # @!attribute [rw] physical_connection_requirements
3187
- # A map of physical connection requirements, such as virtual private
3188
- # cloud (VPC) and `SecurityGroup`, that are needed to make this
3189
- # connection successfully.
3264
+ # The physical connection requirements, such as virtual private cloud
3265
+ # (VPC) and `SecurityGroup`, that are needed to make this connection
3266
+ # successfully.
3190
3267
  # @return [Types::PhysicalConnectionRequirements]
3191
3268
  #
3192
3269
  # @!attribute [rw] creation_time
3193
- # The time that this connection definition was created.
3270
+ # The timestamp of the time that this connection definition was
3271
+ # created.
3194
3272
  # @return [Time]
3195
3273
  #
3196
3274
  # @!attribute [rw] last_updated_time
3197
- # The last time that this connection definition was updated.
3275
+ # The timestamp of the last time the connection definition was
3276
+ # updated.
3198
3277
  # @return [Time]
3199
3278
  #
3200
3279
  # @!attribute [rw] last_updated_by
@@ -3202,6 +3281,23 @@ module Aws::Glue
3202
3281
  # definition.
3203
3282
  # @return [String]
3204
3283
  #
3284
+ # @!attribute [rw] status
3285
+ # The status of the connection. Can be one of: `READY`, `IN_PROGRESS`,
3286
+ # or `FAILED`.
3287
+ # @return [String]
3288
+ #
3289
+ # @!attribute [rw] status_reason
3290
+ # The reason for the connection status.
3291
+ # @return [String]
3292
+ #
3293
+ # @!attribute [rw] last_connection_validation_time
3294
+ # A timestamp of the time this connection was last validated.
3295
+ # @return [Time]
3296
+ #
3297
+ # @!attribute [rw] authentication_configuration
3298
+ # The authentication properties of the connection.
3299
+ # @return [Types::AuthenticationConfiguration]
3300
+ #
3205
3301
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/Connection AWS API Documentation
3206
3302
  #
3207
3303
  class Connection < Struct.new(
@@ -3213,7 +3309,11 @@ module Aws::Glue
3213
3309
  :physical_connection_requirements,
3214
3310
  :creation_time,
3215
3311
  :last_updated_time,
3216
- :last_updated_by)
3312
+ :last_updated_by,
3313
+ :status,
3314
+ :status_reason,
3315
+ :last_connection_validation_time,
3316
+ :authentication_configuration)
3217
3317
  SENSITIVE = []
3218
3318
  include Aws::Structure
3219
3319
  end
@@ -3221,8 +3321,7 @@ module Aws::Glue
3221
3321
  # A structure that is used to specify a connection to create or update.
3222
3322
  #
3223
3323
  # @!attribute [rw] name
3224
- # The name of the connection. Connection will not function as expected
3225
- # without a name.
3324
+ # The name of the connection.
3226
3325
  # @return [String]
3227
3326
  #
3228
3327
  # @!attribute [rw] description
@@ -3285,6 +3384,14 @@ module Aws::Glue
3285
3384
  #
3286
3385
  # * Required: All of (`USERNAME`, `PASSWORD`) or `SECRET_ID`.
3287
3386
  #
3387
+ # * `SALESFORCE` - Designates a connection to Salesforce using OAuth
3388
+ # authencation.
3389
+ #
3390
+ # * Requires the `AuthenticationConfiguration` member to be
3391
+ # configured.
3392
+ #
3393
+ # ^
3394
+ #
3288
3395
  # * `NETWORK` - Designates a network connection to a data source
3289
3396
  # within an Amazon Virtual Private Cloud environment (Amazon VPC).
3290
3397
  #
@@ -3333,11 +3440,21 @@ module Aws::Glue
3333
3440
  # @return [Hash<String,String>]
3334
3441
  #
3335
3442
  # @!attribute [rw] physical_connection_requirements
3336
- # A map of physical connection requirements, such as virtual private
3337
- # cloud (VPC) and `SecurityGroup`, that are needed to successfully
3338
- # make this connection.
3443
+ # The physical connection requirements, such as virtual private cloud
3444
+ # (VPC) and `SecurityGroup`, that are needed to successfully make this
3445
+ # connection.
3339
3446
  # @return [Types::PhysicalConnectionRequirements]
3340
3447
  #
3448
+ # @!attribute [rw] authentication_configuration
3449
+ # The authentication properties of the connection. Used for a
3450
+ # Salesforce connection.
3451
+ # @return [Types::AuthenticationConfigurationInput]
3452
+ #
3453
+ # @!attribute [rw] validate_credentials
3454
+ # A flag to validate the credentials during create connection. Used
3455
+ # for a Salesforce connection. Default is true.
3456
+ # @return [Boolean]
3457
+ #
3341
3458
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ConnectionInput AWS API Documentation
3342
3459
  #
3343
3460
  class ConnectionInput < Struct.new(
@@ -3346,7 +3463,9 @@ module Aws::Glue
3346
3463
  :connection_type,
3347
3464
  :match_criteria,
3348
3465
  :connection_properties,
3349
- :physical_connection_requirements)
3466
+ :physical_connection_requirements,
3467
+ :authentication_configuration,
3468
+ :validate_credentials)
3350
3469
  SENSITIVE = []
3351
3470
  include Aws::Structure
3352
3471
  end
@@ -4034,9 +4153,19 @@ module Aws::Glue
4034
4153
  include Aws::Structure
4035
4154
  end
4036
4155
 
4156
+ # @!attribute [rw] create_connection_status
4157
+ # The status of the connection creation request. The request can take
4158
+ # some time for certain authentication types, for example when
4159
+ # creating an OAuth connection with token exchange over VPC.
4160
+ # @return [String]
4161
+ #
4037
4162
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateConnectionResponse AWS API Documentation
4038
4163
  #
4039
- class CreateConnectionResponse < Aws::EmptyStructure; end
4164
+ class CreateConnectionResponse < Struct.new(
4165
+ :create_connection_status)
4166
+ SENSITIVE = []
4167
+ include Aws::Structure
4168
+ end
4040
4169
 
4041
4170
  # @!attribute [rw] name
4042
4171
  # Name of the new crawler.
@@ -4760,7 +4889,13 @@ module Aws::Glue
4760
4889
  # @!attribute [rw] timeout
4761
4890
  # The job timeout in minutes. This is the maximum time that a job run
4762
4891
  # can consume resources before it is terminated and enters `TIMEOUT`
4763
- # status. The default is 2,880 minutes (48 hours).
4892
+ # status. The default is 2,880 minutes (48 hours) for batch jobs.
4893
+ #
4894
+ # Streaming jobs must have timeout values less than 7 days or 10080
4895
+ # minutes. When the value is left blank, the job will be restarted
4896
+ # after 7 days based if you have not setup a maintenance window. If
4897
+ # you have setup maintenance window, it will be restarted during the
4898
+ # maintenance window after 7 days.
4764
4899
  # @return [Integer]
4765
4900
  #
4766
4901
  # @!attribute [rw] max_capacity
@@ -13330,7 +13465,13 @@ module Aws::Glue
13330
13465
  # @!attribute [rw] timeout
13331
13466
  # The job timeout in minutes. This is the maximum time that a job run
13332
13467
  # can consume resources before it is terminated and enters `TIMEOUT`
13333
- # status. The default is 2,880 minutes (48 hours).
13468
+ # status. The default is 2,880 minutes (48 hours) for batch jobs.
13469
+ #
13470
+ # Streaming jobs must have timeout values less than 7 days or 10080
13471
+ # minutes. When the value is left blank, the job will be restarted
13472
+ # after 7 days based if you have not setup a maintenance window. If
13473
+ # you have setup maintenance window, it will be restarted during the
13474
+ # maintenance window after 7 days.
13334
13475
  # @return [Integer]
13335
13476
  #
13336
13477
  # @!attribute [rw] max_capacity
@@ -13763,13 +13904,6 @@ module Aws::Glue
13763
13904
  # `TIMEOUT` status. This value overrides the timeout value set in the
13764
13905
  # parent job.
13765
13906
  #
13766
- # The maximum value for timeout for batch jobs is 7 days or 10080
13767
- # minutes. The default is 2880 minutes (48 hours) for batch jobs.
13768
- #
13769
- # Any existing Glue jobs that have a greater timeout value are
13770
- # defaulted to 7 days. For instance you have specified a timeout of 20
13771
- # days for a batch job, it will be stopped on the 7th day.
13772
- #
13773
13907
  # Streaming jobs must have timeout values less than 7 days or 10080
13774
13908
  # minutes. When the value is left blank, the job will be restarted
13775
13909
  # after 7 days based if you have not setup a maintenance window. If
@@ -14078,7 +14212,13 @@ module Aws::Glue
14078
14212
  # @!attribute [rw] timeout
14079
14213
  # The job timeout in minutes. This is the maximum time that a job run
14080
14214
  # can consume resources before it is terminated and enters `TIMEOUT`
14081
- # status. The default is 2,880 minutes (48 hours).
14215
+ # status. The default is 2,880 minutes (48 hours) for batch jobs.
14216
+ #
14217
+ # Streaming jobs must have timeout values less than 7 days or 10080
14218
+ # minutes. When the value is left blank, the job will be restarted
14219
+ # after 7 days based if you have not setup a maintenance window. If
14220
+ # you have setup maintenance window, it will be restarted during the
14221
+ # maintenance window after 7 days.
14082
14222
  # @return [Integer]
14083
14223
  #
14084
14224
  # @!attribute [rw] max_capacity
@@ -16427,6 +16567,98 @@ module Aws::Glue
16427
16567
  include Aws::Structure
16428
16568
  end
16429
16569
 
16570
+ # The OAuth2 client app used for the connection.
16571
+ #
16572
+ # @!attribute [rw] user_managed_client_application_client_id
16573
+ # The client application clientID if the ClientAppType is
16574
+ # `USER_MANAGED`.
16575
+ # @return [String]
16576
+ #
16577
+ # @!attribute [rw] aws_managed_client_application_reference
16578
+ # The reference to the SaaS-side client app that is Amazon Web
16579
+ # Services managed.
16580
+ # @return [String]
16581
+ #
16582
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/OAuth2ClientApplication AWS API Documentation
16583
+ #
16584
+ class OAuth2ClientApplication < Struct.new(
16585
+ :user_managed_client_application_client_id,
16586
+ :aws_managed_client_application_reference)
16587
+ SENSITIVE = []
16588
+ include Aws::Structure
16589
+ end
16590
+
16591
+ # A structure containing properties for OAuth2 authentication.
16592
+ #
16593
+ # @!attribute [rw] o_auth_2_grant_type
16594
+ # The OAuth2 grant type. For example, `AUTHORIZATION_CODE`,
16595
+ # `JWT_BEARER`, or `CLIENT_CREDENTIALS`.
16596
+ # @return [String]
16597
+ #
16598
+ # @!attribute [rw] o_auth_2_client_application
16599
+ # The client application type. For example, AWS\_MANAGED or
16600
+ # USER\_MANAGED.
16601
+ # @return [Types::OAuth2ClientApplication]
16602
+ #
16603
+ # @!attribute [rw] token_url
16604
+ # The URL of the provider's authentication server, to exchange an
16605
+ # authorization code for an access token.
16606
+ # @return [String]
16607
+ #
16608
+ # @!attribute [rw] token_url_parameters_map
16609
+ # A map of parameters that are added to the token `GET` request.
16610
+ # @return [Hash<String,String>]
16611
+ #
16612
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/OAuth2Properties AWS API Documentation
16613
+ #
16614
+ class OAuth2Properties < Struct.new(
16615
+ :o_auth_2_grant_type,
16616
+ :o_auth_2_client_application,
16617
+ :token_url,
16618
+ :token_url_parameters_map)
16619
+ SENSITIVE = []
16620
+ include Aws::Structure
16621
+ end
16622
+
16623
+ # A structure containing properties for OAuth2 in the CreateConnection
16624
+ # request.
16625
+ #
16626
+ # @!attribute [rw] o_auth_2_grant_type
16627
+ # The OAuth2 grant type in the CreateConnection request. For example,
16628
+ # `AUTHORIZATION_CODE`, `JWT_BEARER`, or `CLIENT_CREDENTIALS`.
16629
+ # @return [String]
16630
+ #
16631
+ # @!attribute [rw] o_auth_2_client_application
16632
+ # The client application type in the CreateConnection request. For
16633
+ # example, `AWS_MANAGED` or `USER_MANAGED`.
16634
+ # @return [Types::OAuth2ClientApplication]
16635
+ #
16636
+ # @!attribute [rw] token_url
16637
+ # The URL of the provider's authentication server, to exchange an
16638
+ # authorization code for an access token.
16639
+ # @return [String]
16640
+ #
16641
+ # @!attribute [rw] token_url_parameters_map
16642
+ # A map of parameters that are added to the token `GET` request.
16643
+ # @return [Hash<String,String>]
16644
+ #
16645
+ # @!attribute [rw] authorization_code_properties
16646
+ # The set of properties required for the the OAuth2
16647
+ # `AUTHORIZATION_CODE` grant type.
16648
+ # @return [Types::AuthorizationCodeProperties]
16649
+ #
16650
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/OAuth2PropertiesInput AWS API Documentation
16651
+ #
16652
+ class OAuth2PropertiesInput < Struct.new(
16653
+ :o_auth_2_grant_type,
16654
+ :o_auth_2_client_application,
16655
+ :token_url,
16656
+ :token_url_parameters_map,
16657
+ :authorization_code_properties)
16658
+ SENSITIVE = []
16659
+ include Aws::Structure
16660
+ end
16661
+
16430
16662
  # A structure representing an open format table.
16431
16663
  #
16432
16664
  # @!attribute [rw] iceberg_input
@@ -16840,7 +17072,7 @@ module Aws::Glue
16840
17072
  include Aws::Structure
16841
17073
  end
16842
17074
 
16843
- # Specifies the physical requirements for a connection.
17075
+ # The OAuth client app in GetConnection response.
16844
17076
  #
16845
17077
  # @!attribute [rw] subnet_id
16846
17078
  # The subnet ID used by the connection.
@@ -16851,10 +17083,7 @@ module Aws::Glue
16851
17083
  # @return [Array<String>]
16852
17084
  #
16853
17085
  # @!attribute [rw] availability_zone
16854
- # The connection's Availability Zone. This field is redundant because
16855
- # the specified subnet implies the Availability Zone to be used.
16856
- # Currently the field must be populated, but it will be deprecated in
16857
- # the future.
17086
+ # The connection's Availability Zone.
16858
17087
  # @return [String]
16859
17088
  #
16860
17089
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/PhysicalConnectionRequirements AWS API Documentation
@@ -20280,8 +20509,11 @@ module Aws::Glue
20280
20509
  # `TIMEOUT` status. This value overrides the timeout value set in the
20281
20510
  # parent job.
20282
20511
  #
20283
- # Streaming jobs do not have a timeout. The default for non-streaming
20284
- # jobs is 2,880 minutes (48 hours).
20512
+ # Streaming jobs must have timeout values less than 7 days or 10080
20513
+ # minutes. When the value is left blank, the job will be restarted
20514
+ # after 7 days based if you have not setup a maintenance window. If
20515
+ # you have setup maintenance window, it will be restarted during the
20516
+ # maintenance window after 7 days.
20285
20517
  # @return [Integer]
20286
20518
  #
20287
20519
  # @!attribute [rw] max_capacity
@@ -23355,8 +23587,8 @@ module Aws::Glue
23355
23587
  # view creation to transform `ViewOriginalText` to `ViewExpandedText`.
23356
23588
  # For example:
23357
23589
  #
23358
- # * Fully qualify identifiers: `SELECT * from table1 SELECT * from
23359
- # db1.table1`
23590
+ # * Fully qualified identifiers: `SELECT * from table1 -> SELECT *
23591
+ # from db1.table1`
23360
23592
  #
23361
23593
  # ^
23362
23594
  # @return [String]
data/lib/aws-sdk-glue.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-glue/customizations'
52
52
  # @!group service
53
53
  module Aws::Glue
54
54
 
55
- GEM_VERSION = '1.175.0'
55
+ GEM_VERSION = '1.176.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -501,6 +501,7 @@ module Aws
501
501
 
502
502
  interface _CreateConnectionResponseSuccess
503
503
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateConnectionResponse]
504
+ def create_connection_status: () -> ("READY" | "IN_PROGRESS" | "FAILED")
504
505
  end
505
506
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#create_connection-instance_method
506
507
  def create_connection: (
@@ -508,14 +509,32 @@ module Aws
508
509
  connection_input: {
509
510
  name: ::String,
510
511
  description: ::String?,
511
- connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM"),
512
+ connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE"),
512
513
  match_criteria: Array[::String]?,
513
- connection_properties: Hash[("HOST" | "PORT" | "USERNAME" | "PASSWORD" | "ENCRYPTED_PASSWORD" | "JDBC_DRIVER_JAR_URI" | "JDBC_DRIVER_CLASS_NAME" | "JDBC_ENGINE" | "JDBC_ENGINE_VERSION" | "CONFIG_FILES" | "INSTANCE_ID" | "JDBC_CONNECTION_URL" | "JDBC_ENFORCE_SSL" | "CUSTOM_JDBC_CERT" | "SKIP_CUSTOM_JDBC_CERT_VALIDATION" | "CUSTOM_JDBC_CERT_STRING" | "CONNECTION_URL" | "KAFKA_BOOTSTRAP_SERVERS" | "KAFKA_SSL_ENABLED" | "KAFKA_CUSTOM_CERT" | "KAFKA_SKIP_CUSTOM_CERT_VALIDATION" | "KAFKA_CLIENT_KEYSTORE" | "KAFKA_CLIENT_KEYSTORE_PASSWORD" | "KAFKA_CLIENT_KEY_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD" | "SECRET_ID" | "CONNECTOR_URL" | "CONNECTOR_TYPE" | "CONNECTOR_CLASS_NAME" | "KAFKA_SASL_MECHANISM" | "KAFKA_SASL_PLAIN_USERNAME" | "KAFKA_SASL_PLAIN_PASSWORD" | "ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD" | "KAFKA_SASL_SCRAM_USERNAME" | "KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_SCRAM_SECRETS_ARN" | "ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_GSSAPI_KEYTAB" | "KAFKA_SASL_GSSAPI_KRB5_CONF" | "KAFKA_SASL_GSSAPI_SERVICE" | "KAFKA_SASL_GSSAPI_PRINCIPAL"), ::String],
514
+ connection_properties: Hash[("HOST" | "PORT" | "USERNAME" | "PASSWORD" | "ENCRYPTED_PASSWORD" | "JDBC_DRIVER_JAR_URI" | "JDBC_DRIVER_CLASS_NAME" | "JDBC_ENGINE" | "JDBC_ENGINE_VERSION" | "CONFIG_FILES" | "INSTANCE_ID" | "JDBC_CONNECTION_URL" | "JDBC_ENFORCE_SSL" | "CUSTOM_JDBC_CERT" | "SKIP_CUSTOM_JDBC_CERT_VALIDATION" | "CUSTOM_JDBC_CERT_STRING" | "CONNECTION_URL" | "KAFKA_BOOTSTRAP_SERVERS" | "KAFKA_SSL_ENABLED" | "KAFKA_CUSTOM_CERT" | "KAFKA_SKIP_CUSTOM_CERT_VALIDATION" | "KAFKA_CLIENT_KEYSTORE" | "KAFKA_CLIENT_KEYSTORE_PASSWORD" | "KAFKA_CLIENT_KEY_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD" | "SECRET_ID" | "CONNECTOR_URL" | "CONNECTOR_TYPE" | "CONNECTOR_CLASS_NAME" | "KAFKA_SASL_MECHANISM" | "KAFKA_SASL_PLAIN_USERNAME" | "KAFKA_SASL_PLAIN_PASSWORD" | "ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD" | "KAFKA_SASL_SCRAM_USERNAME" | "KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_SCRAM_SECRETS_ARN" | "ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_GSSAPI_KEYTAB" | "KAFKA_SASL_GSSAPI_KRB5_CONF" | "KAFKA_SASL_GSSAPI_SERVICE" | "KAFKA_SASL_GSSAPI_PRINCIPAL" | "ROLE_ARN"), ::String],
514
515
  physical_connection_requirements: {
515
516
  subnet_id: ::String?,
516
517
  security_group_id_list: Array[::String]?,
517
518
  availability_zone: ::String?
518
- }?
519
+ }?,
520
+ authentication_configuration: {
521
+ authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")?,
522
+ secret_arn: ::String?,
523
+ o_auth_2_properties: {
524
+ o_auth_2_grant_type: ("AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER")?,
525
+ o_auth_2_client_application: {
526
+ user_managed_client_application_client_id: ::String?,
527
+ aws_managed_client_application_reference: ::String?
528
+ }?,
529
+ token_url: ::String?,
530
+ token_url_parameters_map: Hash[::String, ::String]?,
531
+ authorization_code_properties: {
532
+ authorization_code: ::String?,
533
+ redirect_uri: ::String?
534
+ }?
535
+ }?
536
+ }?,
537
+ validate_credentials: bool?
519
538
  },
520
539
  ?tags: Hash[::String, ::String]
521
540
  ) -> _CreateConnectionResponseSuccess
@@ -2837,7 +2856,7 @@ module Aws
2837
2856
  ?catalog_id: ::String,
2838
2857
  ?filter: {
2839
2858
  match_criteria: Array[::String]?,
2840
- connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM")?
2859
+ connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE")?
2841
2860
  },
2842
2861
  ?hide_password: bool,
2843
2862
  ?next_token: ::String,
@@ -4861,14 +4880,32 @@ module Aws
4861
4880
  connection_input: {
4862
4881
  name: ::String,
4863
4882
  description: ::String?,
4864
- connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM"),
4883
+ connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE"),
4865
4884
  match_criteria: Array[::String]?,
4866
- connection_properties: Hash[("HOST" | "PORT" | "USERNAME" | "PASSWORD" | "ENCRYPTED_PASSWORD" | "JDBC_DRIVER_JAR_URI" | "JDBC_DRIVER_CLASS_NAME" | "JDBC_ENGINE" | "JDBC_ENGINE_VERSION" | "CONFIG_FILES" | "INSTANCE_ID" | "JDBC_CONNECTION_URL" | "JDBC_ENFORCE_SSL" | "CUSTOM_JDBC_CERT" | "SKIP_CUSTOM_JDBC_CERT_VALIDATION" | "CUSTOM_JDBC_CERT_STRING" | "CONNECTION_URL" | "KAFKA_BOOTSTRAP_SERVERS" | "KAFKA_SSL_ENABLED" | "KAFKA_CUSTOM_CERT" | "KAFKA_SKIP_CUSTOM_CERT_VALIDATION" | "KAFKA_CLIENT_KEYSTORE" | "KAFKA_CLIENT_KEYSTORE_PASSWORD" | "KAFKA_CLIENT_KEY_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD" | "SECRET_ID" | "CONNECTOR_URL" | "CONNECTOR_TYPE" | "CONNECTOR_CLASS_NAME" | "KAFKA_SASL_MECHANISM" | "KAFKA_SASL_PLAIN_USERNAME" | "KAFKA_SASL_PLAIN_PASSWORD" | "ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD" | "KAFKA_SASL_SCRAM_USERNAME" | "KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_SCRAM_SECRETS_ARN" | "ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_GSSAPI_KEYTAB" | "KAFKA_SASL_GSSAPI_KRB5_CONF" | "KAFKA_SASL_GSSAPI_SERVICE" | "KAFKA_SASL_GSSAPI_PRINCIPAL"), ::String],
4885
+ connection_properties: Hash[("HOST" | "PORT" | "USERNAME" | "PASSWORD" | "ENCRYPTED_PASSWORD" | "JDBC_DRIVER_JAR_URI" | "JDBC_DRIVER_CLASS_NAME" | "JDBC_ENGINE" | "JDBC_ENGINE_VERSION" | "CONFIG_FILES" | "INSTANCE_ID" | "JDBC_CONNECTION_URL" | "JDBC_ENFORCE_SSL" | "CUSTOM_JDBC_CERT" | "SKIP_CUSTOM_JDBC_CERT_VALIDATION" | "CUSTOM_JDBC_CERT_STRING" | "CONNECTION_URL" | "KAFKA_BOOTSTRAP_SERVERS" | "KAFKA_SSL_ENABLED" | "KAFKA_CUSTOM_CERT" | "KAFKA_SKIP_CUSTOM_CERT_VALIDATION" | "KAFKA_CLIENT_KEYSTORE" | "KAFKA_CLIENT_KEYSTORE_PASSWORD" | "KAFKA_CLIENT_KEY_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD" | "SECRET_ID" | "CONNECTOR_URL" | "CONNECTOR_TYPE" | "CONNECTOR_CLASS_NAME" | "KAFKA_SASL_MECHANISM" | "KAFKA_SASL_PLAIN_USERNAME" | "KAFKA_SASL_PLAIN_PASSWORD" | "ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD" | "KAFKA_SASL_SCRAM_USERNAME" | "KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_SCRAM_SECRETS_ARN" | "ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_GSSAPI_KEYTAB" | "KAFKA_SASL_GSSAPI_KRB5_CONF" | "KAFKA_SASL_GSSAPI_SERVICE" | "KAFKA_SASL_GSSAPI_PRINCIPAL" | "ROLE_ARN"), ::String],
4867
4886
  physical_connection_requirements: {
4868
4887
  subnet_id: ::String?,
4869
4888
  security_group_id_list: Array[::String]?,
4870
4889
  availability_zone: ::String?
4871
- }?
4890
+ }?,
4891
+ authentication_configuration: {
4892
+ authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")?,
4893
+ secret_arn: ::String?,
4894
+ o_auth_2_properties: {
4895
+ o_auth_2_grant_type: ("AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER")?,
4896
+ o_auth_2_client_application: {
4897
+ user_managed_client_application_client_id: ::String?,
4898
+ aws_managed_client_application_reference: ::String?
4899
+ }?,
4900
+ token_url: ::String?,
4901
+ token_url_parameters_map: Hash[::String, ::String]?,
4902
+ authorization_code_properties: {
4903
+ authorization_code: ::String?,
4904
+ redirect_uri: ::String?
4905
+ }?
4906
+ }?
4907
+ }?,
4908
+ validate_credentials: bool?
4872
4909
  }
4873
4910
  ) -> _UpdateConnectionResponseSuccess
4874
4911
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConnectionResponseSuccess
data/sig/types.rbs CHANGED
@@ -116,6 +116,26 @@ module Aws::Glue
116
116
  SENSITIVE: []
117
117
  end
118
118
 
119
+ class AuthenticationConfiguration
120
+ attr_accessor authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")
121
+ attr_accessor secret_arn: ::String
122
+ attr_accessor o_auth_2_properties: Types::OAuth2Properties
123
+ SENSITIVE: []
124
+ end
125
+
126
+ class AuthenticationConfigurationInput
127
+ attr_accessor authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")
128
+ attr_accessor secret_arn: ::String
129
+ attr_accessor o_auth_2_properties: Types::OAuth2PropertiesInput
130
+ SENSITIVE: []
131
+ end
132
+
133
+ class AuthorizationCodeProperties
134
+ attr_accessor authorization_code: ::String
135
+ attr_accessor redirect_uri: ::String
136
+ SENSITIVE: []
137
+ end
138
+
119
139
  class BackfillError
120
140
  attr_accessor code: ("ENCRYPTED_PARTITION_ERROR" | "INTERNAL_ERROR" | "INVALID_PARTITION_TYPE_DATA_ERROR" | "MISSING_PARTITION_VALUE_ERROR" | "UNSUPPORTED_PARTITION_CHARACTER_ERROR")
121
141
  attr_accessor partitions: ::Array[Types::PartitionValueList]
@@ -799,23 +819,29 @@ module Aws::Glue
799
819
  class Connection
800
820
  attr_accessor name: ::String
801
821
  attr_accessor description: ::String
802
- attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM")
822
+ attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE")
803
823
  attr_accessor match_criteria: ::Array[::String]
804
- attr_accessor connection_properties: ::Hash[("HOST" | "PORT" | "USERNAME" | "PASSWORD" | "ENCRYPTED_PASSWORD" | "JDBC_DRIVER_JAR_URI" | "JDBC_DRIVER_CLASS_NAME" | "JDBC_ENGINE" | "JDBC_ENGINE_VERSION" | "CONFIG_FILES" | "INSTANCE_ID" | "JDBC_CONNECTION_URL" | "JDBC_ENFORCE_SSL" | "CUSTOM_JDBC_CERT" | "SKIP_CUSTOM_JDBC_CERT_VALIDATION" | "CUSTOM_JDBC_CERT_STRING" | "CONNECTION_URL" | "KAFKA_BOOTSTRAP_SERVERS" | "KAFKA_SSL_ENABLED" | "KAFKA_CUSTOM_CERT" | "KAFKA_SKIP_CUSTOM_CERT_VALIDATION" | "KAFKA_CLIENT_KEYSTORE" | "KAFKA_CLIENT_KEYSTORE_PASSWORD" | "KAFKA_CLIENT_KEY_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD" | "SECRET_ID" | "CONNECTOR_URL" | "CONNECTOR_TYPE" | "CONNECTOR_CLASS_NAME" | "KAFKA_SASL_MECHANISM" | "KAFKA_SASL_PLAIN_USERNAME" | "KAFKA_SASL_PLAIN_PASSWORD" | "ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD" | "KAFKA_SASL_SCRAM_USERNAME" | "KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_SCRAM_SECRETS_ARN" | "ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_GSSAPI_KEYTAB" | "KAFKA_SASL_GSSAPI_KRB5_CONF" | "KAFKA_SASL_GSSAPI_SERVICE" | "KAFKA_SASL_GSSAPI_PRINCIPAL"), ::String]
824
+ attr_accessor connection_properties: ::Hash[("HOST" | "PORT" | "USERNAME" | "PASSWORD" | "ENCRYPTED_PASSWORD" | "JDBC_DRIVER_JAR_URI" | "JDBC_DRIVER_CLASS_NAME" | "JDBC_ENGINE" | "JDBC_ENGINE_VERSION" | "CONFIG_FILES" | "INSTANCE_ID" | "JDBC_CONNECTION_URL" | "JDBC_ENFORCE_SSL" | "CUSTOM_JDBC_CERT" | "SKIP_CUSTOM_JDBC_CERT_VALIDATION" | "CUSTOM_JDBC_CERT_STRING" | "CONNECTION_URL" | "KAFKA_BOOTSTRAP_SERVERS" | "KAFKA_SSL_ENABLED" | "KAFKA_CUSTOM_CERT" | "KAFKA_SKIP_CUSTOM_CERT_VALIDATION" | "KAFKA_CLIENT_KEYSTORE" | "KAFKA_CLIENT_KEYSTORE_PASSWORD" | "KAFKA_CLIENT_KEY_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD" | "SECRET_ID" | "CONNECTOR_URL" | "CONNECTOR_TYPE" | "CONNECTOR_CLASS_NAME" | "KAFKA_SASL_MECHANISM" | "KAFKA_SASL_PLAIN_USERNAME" | "KAFKA_SASL_PLAIN_PASSWORD" | "ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD" | "KAFKA_SASL_SCRAM_USERNAME" | "KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_SCRAM_SECRETS_ARN" | "ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_GSSAPI_KEYTAB" | "KAFKA_SASL_GSSAPI_KRB5_CONF" | "KAFKA_SASL_GSSAPI_SERVICE" | "KAFKA_SASL_GSSAPI_PRINCIPAL" | "ROLE_ARN"), ::String]
805
825
  attr_accessor physical_connection_requirements: Types::PhysicalConnectionRequirements
806
826
  attr_accessor creation_time: ::Time
807
827
  attr_accessor last_updated_time: ::Time
808
828
  attr_accessor last_updated_by: ::String
829
+ attr_accessor status: ("READY" | "IN_PROGRESS" | "FAILED")
830
+ attr_accessor status_reason: ::String
831
+ attr_accessor last_connection_validation_time: ::Time
832
+ attr_accessor authentication_configuration: Types::AuthenticationConfiguration
809
833
  SENSITIVE: []
810
834
  end
811
835
 
812
836
  class ConnectionInput
813
837
  attr_accessor name: ::String
814
838
  attr_accessor description: ::String
815
- attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM")
839
+ attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE")
816
840
  attr_accessor match_criteria: ::Array[::String]
817
- attr_accessor connection_properties: ::Hash[("HOST" | "PORT" | "USERNAME" | "PASSWORD" | "ENCRYPTED_PASSWORD" | "JDBC_DRIVER_JAR_URI" | "JDBC_DRIVER_CLASS_NAME" | "JDBC_ENGINE" | "JDBC_ENGINE_VERSION" | "CONFIG_FILES" | "INSTANCE_ID" | "JDBC_CONNECTION_URL" | "JDBC_ENFORCE_SSL" | "CUSTOM_JDBC_CERT" | "SKIP_CUSTOM_JDBC_CERT_VALIDATION" | "CUSTOM_JDBC_CERT_STRING" | "CONNECTION_URL" | "KAFKA_BOOTSTRAP_SERVERS" | "KAFKA_SSL_ENABLED" | "KAFKA_CUSTOM_CERT" | "KAFKA_SKIP_CUSTOM_CERT_VALIDATION" | "KAFKA_CLIENT_KEYSTORE" | "KAFKA_CLIENT_KEYSTORE_PASSWORD" | "KAFKA_CLIENT_KEY_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD" | "SECRET_ID" | "CONNECTOR_URL" | "CONNECTOR_TYPE" | "CONNECTOR_CLASS_NAME" | "KAFKA_SASL_MECHANISM" | "KAFKA_SASL_PLAIN_USERNAME" | "KAFKA_SASL_PLAIN_PASSWORD" | "ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD" | "KAFKA_SASL_SCRAM_USERNAME" | "KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_SCRAM_SECRETS_ARN" | "ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_GSSAPI_KEYTAB" | "KAFKA_SASL_GSSAPI_KRB5_CONF" | "KAFKA_SASL_GSSAPI_SERVICE" | "KAFKA_SASL_GSSAPI_PRINCIPAL"), ::String]
841
+ attr_accessor connection_properties: ::Hash[("HOST" | "PORT" | "USERNAME" | "PASSWORD" | "ENCRYPTED_PASSWORD" | "JDBC_DRIVER_JAR_URI" | "JDBC_DRIVER_CLASS_NAME" | "JDBC_ENGINE" | "JDBC_ENGINE_VERSION" | "CONFIG_FILES" | "INSTANCE_ID" | "JDBC_CONNECTION_URL" | "JDBC_ENFORCE_SSL" | "CUSTOM_JDBC_CERT" | "SKIP_CUSTOM_JDBC_CERT_VALIDATION" | "CUSTOM_JDBC_CERT_STRING" | "CONNECTION_URL" | "KAFKA_BOOTSTRAP_SERVERS" | "KAFKA_SSL_ENABLED" | "KAFKA_CUSTOM_CERT" | "KAFKA_SKIP_CUSTOM_CERT_VALIDATION" | "KAFKA_CLIENT_KEYSTORE" | "KAFKA_CLIENT_KEYSTORE_PASSWORD" | "KAFKA_CLIENT_KEY_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD" | "SECRET_ID" | "CONNECTOR_URL" | "CONNECTOR_TYPE" | "CONNECTOR_CLASS_NAME" | "KAFKA_SASL_MECHANISM" | "KAFKA_SASL_PLAIN_USERNAME" | "KAFKA_SASL_PLAIN_PASSWORD" | "ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD" | "KAFKA_SASL_SCRAM_USERNAME" | "KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_SCRAM_SECRETS_ARN" | "ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_GSSAPI_KEYTAB" | "KAFKA_SASL_GSSAPI_KRB5_CONF" | "KAFKA_SASL_GSSAPI_SERVICE" | "KAFKA_SASL_GSSAPI_PRINCIPAL" | "ROLE_ARN"), ::String]
818
842
  attr_accessor physical_connection_requirements: Types::PhysicalConnectionRequirements
843
+ attr_accessor authentication_configuration: Types::AuthenticationConfigurationInput
844
+ attr_accessor validate_credentials: bool
819
845
  SENSITIVE: []
820
846
  end
821
847
 
@@ -976,7 +1002,9 @@ module Aws::Glue
976
1002
  SENSITIVE: []
977
1003
  end
978
1004
 
979
- class CreateConnectionResponse < Aws::EmptyStructure
1005
+ class CreateConnectionResponse
1006
+ attr_accessor create_connection_status: ("READY" | "IN_PROGRESS" | "FAILED")
1007
+ SENSITIVE: []
980
1008
  end
981
1009
 
982
1010
  class CreateCrawlerRequest
@@ -2103,7 +2131,7 @@ module Aws::Glue
2103
2131
  end
2104
2132
 
2105
2133
  class FederationSourceException
2106
- attr_accessor federation_source_error_code: ("InvalidResponseException" | "OperationTimeoutException" | "OperationNotSupportedException" | "InternalServiceException" | "ThrottlingException")
2134
+ attr_accessor federation_source_error_code: ("AccessDeniedException" | "EntityNotFoundException" | "InvalidCredentialsException" | "InvalidInputException" | "InvalidResponseException" | "OperationTimeoutException" | "OperationNotSupportedException" | "InternalServiceException" | "PartialFailureException" | "ThrottlingException")
2107
2135
  attr_accessor message: ::String
2108
2136
  SENSITIVE: []
2109
2137
  end
@@ -2302,7 +2330,7 @@ module Aws::Glue
2302
2330
 
2303
2331
  class GetConnectionsFilter
2304
2332
  attr_accessor match_criteria: ::Array[::String]
2305
- attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM")
2333
+ attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE")
2306
2334
  SENSITIVE: []
2307
2335
  end
2308
2336
 
@@ -3978,6 +4006,29 @@ module Aws::Glue
3978
4006
  SENSITIVE: []
3979
4007
  end
3980
4008
 
4009
+ class OAuth2ClientApplication
4010
+ attr_accessor user_managed_client_application_client_id: ::String
4011
+ attr_accessor aws_managed_client_application_reference: ::String
4012
+ SENSITIVE: []
4013
+ end
4014
+
4015
+ class OAuth2Properties
4016
+ attr_accessor o_auth_2_grant_type: ("AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER")
4017
+ attr_accessor o_auth_2_client_application: Types::OAuth2ClientApplication
4018
+ attr_accessor token_url: ::String
4019
+ attr_accessor token_url_parameters_map: ::Hash[::String, ::String]
4020
+ SENSITIVE: []
4021
+ end
4022
+
4023
+ class OAuth2PropertiesInput
4024
+ attr_accessor o_auth_2_grant_type: ("AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER")
4025
+ attr_accessor o_auth_2_client_application: Types::OAuth2ClientApplication
4026
+ attr_accessor token_url: ::String
4027
+ attr_accessor token_url_parameters_map: ::Hash[::String, ::String]
4028
+ attr_accessor authorization_code_properties: Types::AuthorizationCodeProperties
4029
+ SENSITIVE: []
4030
+ end
4031
+
3981
4032
  class OpenTableFormatInput
3982
4033
  attr_accessor iceberg_input: Types::IcebergInput
3983
4034
  SENSITIVE: []
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-glue
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.175.0
4
+ version: 1.176.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-05-29 00:00:00.000000000 Z
11
+ date: 2024-06-05 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.193.0
22
+ version: 3.197.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.193.0
32
+ version: 3.197.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement