aws-sdk-glue 1.203.0 → 1.205.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +1729 -157
- data/lib/aws-sdk-glue/client_api.rb +1094 -0
- data/lib/aws-sdk-glue/errors.rb +128 -0
- data/lib/aws-sdk-glue/types.rb +2932 -403
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +512 -16
- data/sig/errors.rbs +24 -0
- data/sig/types.rbs +648 -10
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -37,6 +37,12 @@ module Aws::Glue
|
|
37
37
|
SENSITIVE: []
|
38
38
|
end
|
39
39
|
|
40
|
+
class AllowedValue
|
41
|
+
attr_accessor description: ::String
|
42
|
+
attr_accessor value: ::String
|
43
|
+
SENSITIVE: []
|
44
|
+
end
|
45
|
+
|
40
46
|
class AlreadyExistsException
|
41
47
|
attr_accessor message: ::String
|
42
48
|
SENSITIVE: []
|
@@ -123,18 +129,30 @@ module Aws::Glue
|
|
123
129
|
SENSITIVE: []
|
124
130
|
end
|
125
131
|
|
132
|
+
class AuthConfiguration
|
133
|
+
attr_accessor authentication_type: Types::Property
|
134
|
+
attr_accessor secret_arn: Types::Property
|
135
|
+
attr_accessor o_auth_2_properties: ::Hash[::String, Types::Property]
|
136
|
+
attr_accessor basic_authentication_properties: ::Hash[::String, Types::Property]
|
137
|
+
attr_accessor custom_authentication_properties: ::Hash[::String, Types::Property]
|
138
|
+
SENSITIVE: []
|
139
|
+
end
|
140
|
+
|
126
141
|
class AuthenticationConfiguration
|
127
|
-
attr_accessor authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")
|
142
|
+
attr_accessor authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM" | "IAM")
|
128
143
|
attr_accessor secret_arn: ::String
|
129
144
|
attr_accessor o_auth_2_properties: Types::OAuth2Properties
|
130
145
|
SENSITIVE: []
|
131
146
|
end
|
132
147
|
|
133
148
|
class AuthenticationConfigurationInput
|
134
|
-
attr_accessor authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")
|
149
|
+
attr_accessor authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM" | "IAM")
|
135
150
|
attr_accessor o_auth_2_properties: Types::OAuth2PropertiesInput
|
136
151
|
attr_accessor secret_arn: ::String
|
137
|
-
|
152
|
+
attr_accessor kms_key_arn: ::String
|
153
|
+
attr_accessor basic_authentication_credentials: Types::BasicAuthenticationCredentials
|
154
|
+
attr_accessor custom_authentication_credentials: ::Hash[::String, ::String]
|
155
|
+
SENSITIVE: [:custom_authentication_credentials]
|
138
156
|
end
|
139
157
|
|
140
158
|
class AuthorizationCodeProperties
|
@@ -149,6 +167,12 @@ module Aws::Glue
|
|
149
167
|
SENSITIVE: []
|
150
168
|
end
|
151
169
|
|
170
|
+
class BasicAuthenticationCredentials
|
171
|
+
attr_accessor username: ::String
|
172
|
+
attr_accessor password: ::String
|
173
|
+
SENSITIVE: [:password]
|
174
|
+
end
|
175
|
+
|
152
176
|
class BasicCatalogTarget
|
153
177
|
attr_accessor name: ::String
|
154
178
|
attr_accessor inputs: ::Array[::String]
|
@@ -511,6 +535,29 @@ module Aws::Glue
|
|
511
535
|
class CancelStatementResponse < Aws::EmptyStructure
|
512
536
|
end
|
513
537
|
|
538
|
+
class Capabilities
|
539
|
+
attr_accessor supported_authentication_types: ::Array[("BASIC" | "OAUTH2" | "CUSTOM" | "IAM")]
|
540
|
+
attr_accessor supported_data_operations: ::Array[("READ" | "WRITE")]
|
541
|
+
attr_accessor supported_compute_environments: ::Array[("SPARK" | "ATHENA" | "PYTHON")]
|
542
|
+
SENSITIVE: []
|
543
|
+
end
|
544
|
+
|
545
|
+
class Catalog
|
546
|
+
attr_accessor catalog_id: ::String
|
547
|
+
attr_accessor name: ::String
|
548
|
+
attr_accessor resource_arn: ::String
|
549
|
+
attr_accessor description: ::String
|
550
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
551
|
+
attr_accessor create_time: ::Time
|
552
|
+
attr_accessor update_time: ::Time
|
553
|
+
attr_accessor target_redshift_catalog: Types::TargetRedshiftCatalog
|
554
|
+
attr_accessor federated_catalog: Types::FederatedCatalog
|
555
|
+
attr_accessor catalog_properties: Types::CatalogPropertiesOutput
|
556
|
+
attr_accessor create_table_default_permissions: ::Array[Types::PrincipalPermissions]
|
557
|
+
attr_accessor create_database_default_permissions: ::Array[Types::PrincipalPermissions]
|
558
|
+
SENSITIVE: []
|
559
|
+
end
|
560
|
+
|
514
561
|
class CatalogDeltaSource
|
515
562
|
attr_accessor name: ::String
|
516
563
|
attr_accessor database: ::String
|
@@ -542,6 +589,17 @@ module Aws::Glue
|
|
542
589
|
SENSITIVE: []
|
543
590
|
end
|
544
591
|
|
592
|
+
class CatalogInput
|
593
|
+
attr_accessor description: ::String
|
594
|
+
attr_accessor federated_catalog: Types::FederatedCatalog
|
595
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
596
|
+
attr_accessor target_redshift_catalog: Types::TargetRedshiftCatalog
|
597
|
+
attr_accessor catalog_properties: Types::CatalogProperties
|
598
|
+
attr_accessor create_table_default_permissions: ::Array[Types::PrincipalPermissions]
|
599
|
+
attr_accessor create_database_default_permissions: ::Array[Types::PrincipalPermissions]
|
600
|
+
SENSITIVE: []
|
601
|
+
end
|
602
|
+
|
545
603
|
class CatalogKafkaSource
|
546
604
|
attr_accessor name: ::String
|
547
605
|
attr_accessor window_size: ::Integer
|
@@ -564,6 +622,18 @@ module Aws::Glue
|
|
564
622
|
SENSITIVE: []
|
565
623
|
end
|
566
624
|
|
625
|
+
class CatalogProperties
|
626
|
+
attr_accessor data_lake_access_properties: Types::DataLakeAccessProperties
|
627
|
+
attr_accessor custom_properties: ::Hash[::String, ::String]
|
628
|
+
SENSITIVE: []
|
629
|
+
end
|
630
|
+
|
631
|
+
class CatalogPropertiesOutput
|
632
|
+
attr_accessor data_lake_access_properties: Types::DataLakeAccessPropertiesOutput
|
633
|
+
attr_accessor custom_properties: ::Hash[::String, ::String]
|
634
|
+
SENSITIVE: []
|
635
|
+
end
|
636
|
+
|
567
637
|
class CatalogSchemaChangePolicy
|
568
638
|
attr_accessor enable_update_catalog: bool
|
569
639
|
attr_accessor update_behavior: ("UPDATE_IN_DATABASE" | "LOG")
|
@@ -803,6 +873,9 @@ module Aws::Glue
|
|
803
873
|
attr_accessor role: ::String
|
804
874
|
attr_accessor sample_size: ::Float
|
805
875
|
attr_accessor security_configuration: ::String
|
876
|
+
attr_accessor schedule_type: ("CRON" | "AUTO")
|
877
|
+
attr_accessor setting_source: ("CATALOG" | "TABLE")
|
878
|
+
attr_accessor last_execution_attempt: Types::ExecutionAttempt
|
806
879
|
SENSITIVE: []
|
807
880
|
end
|
808
881
|
|
@@ -816,6 +889,19 @@ module Aws::Glue
|
|
816
889
|
SENSITIVE: []
|
817
890
|
end
|
818
891
|
|
892
|
+
class ComputeEnvironmentConfiguration
|
893
|
+
attr_accessor name: ::String
|
894
|
+
attr_accessor description: ::String
|
895
|
+
attr_accessor compute_environment: ("SPARK" | "ATHENA" | "PYTHON")
|
896
|
+
attr_accessor supported_authentication_types: ::Array[("BASIC" | "OAUTH2" | "CUSTOM" | "IAM")]
|
897
|
+
attr_accessor connection_options: ::Hash[::String, Types::Property]
|
898
|
+
attr_accessor connection_property_name_overrides: ::Hash[::String, ::String]
|
899
|
+
attr_accessor connection_option_name_overrides: ::Hash[::String, ::String]
|
900
|
+
attr_accessor connection_properties_required_overrides: ::Array[::String]
|
901
|
+
attr_accessor physical_connection_properties_required: bool
|
902
|
+
SENSITIVE: []
|
903
|
+
end
|
904
|
+
|
819
905
|
class ConcurrentModificationException
|
820
906
|
attr_accessor message: ::String
|
821
907
|
SENSITIVE: []
|
@@ -871,10 +957,12 @@ module Aws::Glue
|
|
871
957
|
class Connection
|
872
958
|
attr_accessor name: ::String
|
873
959
|
attr_accessor description: ::String
|
874
|
-
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA")
|
960
|
+
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA" | "GOOGLEADS" | "GOOGLESHEETS" | "GOOGLEANALYTICS4" | "SERVICENOW" | "MARKETO" | "SAPODATA" | "ZENDESK" | "JIRACLOUD" | "NETSUITEERP" | "HUBSPOT" | "FACEBOOKADS" | "INSTAGRAMADS" | "ZOHOCRM" | "SALESFORCEPARDOT" | "SALESFORCEMARKETINGCLOUD" | "SLACK" | "STRIPE" | "INTERCOM" | "SNAPCHATADS")
|
875
961
|
attr_accessor match_criteria: ::Array[::String]
|
876
|
-
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" | "
|
962
|
+
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" | "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" | "SECRET_ID" | "CONNECTOR_URL" | "CONNECTOR_TYPE" | "CONNECTOR_CLASS_NAME" | "ENDPOINT" | "ENDPOINT_TYPE" | "ROLE_ARN" | "REGION" | "WORKGROUP_NAME" | "CLUSTER_IDENTIFIER" | "DATABASE"), ::String]
|
963
|
+
attr_accessor spark_properties: ::Hash[::String, ::String]
|
877
964
|
attr_accessor athena_properties: ::Hash[::String, ::String]
|
965
|
+
attr_accessor python_properties: ::Hash[::String, ::String]
|
878
966
|
attr_accessor physical_connection_requirements: Types::PhysicalConnectionRequirements
|
879
967
|
attr_accessor creation_time: ::Time
|
880
968
|
attr_accessor last_updated_time: ::Time
|
@@ -883,19 +971,24 @@ module Aws::Glue
|
|
883
971
|
attr_accessor status_reason: ::String
|
884
972
|
attr_accessor last_connection_validation_time: ::Time
|
885
973
|
attr_accessor authentication_configuration: Types::AuthenticationConfiguration
|
974
|
+
attr_accessor connection_schema_version: ::Integer
|
975
|
+
attr_accessor compatible_compute_environments: ::Array[("SPARK" | "ATHENA" | "PYTHON")]
|
886
976
|
SENSITIVE: []
|
887
977
|
end
|
888
978
|
|
889
979
|
class ConnectionInput
|
890
980
|
attr_accessor name: ::String
|
891
981
|
attr_accessor description: ::String
|
892
|
-
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA")
|
982
|
+
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA" | "GOOGLEADS" | "GOOGLESHEETS" | "GOOGLEANALYTICS4" | "SERVICENOW" | "MARKETO" | "SAPODATA" | "ZENDESK" | "JIRACLOUD" | "NETSUITEERP" | "HUBSPOT" | "FACEBOOKADS" | "INSTAGRAMADS" | "ZOHOCRM" | "SALESFORCEPARDOT" | "SALESFORCEMARKETINGCLOUD" | "SLACK" | "STRIPE" | "INTERCOM" | "SNAPCHATADS")
|
893
983
|
attr_accessor match_criteria: ::Array[::String]
|
894
|
-
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" | "
|
984
|
+
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" | "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" | "SECRET_ID" | "CONNECTOR_URL" | "CONNECTOR_TYPE" | "CONNECTOR_CLASS_NAME" | "ENDPOINT" | "ENDPOINT_TYPE" | "ROLE_ARN" | "REGION" | "WORKGROUP_NAME" | "CLUSTER_IDENTIFIER" | "DATABASE"), ::String]
|
985
|
+
attr_accessor spark_properties: ::Hash[::String, ::String]
|
895
986
|
attr_accessor athena_properties: ::Hash[::String, ::String]
|
987
|
+
attr_accessor python_properties: ::Hash[::String, ::String]
|
896
988
|
attr_accessor physical_connection_requirements: Types::PhysicalConnectionRequirements
|
897
989
|
attr_accessor authentication_configuration: Types::AuthenticationConfigurationInput
|
898
990
|
attr_accessor validate_credentials: bool
|
991
|
+
attr_accessor validate_for_compute_environments: ::Array[("SPARK" | "ATHENA" | "PYTHON")]
|
899
992
|
SENSITIVE: []
|
900
993
|
end
|
901
994
|
|
@@ -905,6 +998,13 @@ module Aws::Glue
|
|
905
998
|
SENSITIVE: []
|
906
999
|
end
|
907
1000
|
|
1001
|
+
class ConnectionTypeBrief
|
1002
|
+
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA" | "GOOGLEADS" | "GOOGLESHEETS" | "GOOGLEANALYTICS4" | "SERVICENOW" | "MARKETO" | "SAPODATA" | "ZENDESK" | "JIRACLOUD" | "NETSUITEERP" | "HUBSPOT" | "FACEBOOKADS" | "INSTAGRAMADS" | "ZOHOCRM" | "SALESFORCEPARDOT" | "SALESFORCEMARKETINGCLOUD" | "SLACK" | "STRIPE" | "INTERCOM" | "SNAPCHATADS")
|
1003
|
+
attr_accessor description: ::String
|
1004
|
+
attr_accessor capabilities: Types::Capabilities
|
1005
|
+
SENSITIVE: []
|
1006
|
+
end
|
1007
|
+
|
908
1008
|
class ConnectionsList
|
909
1009
|
attr_accessor connections: ::Array[::String]
|
910
1010
|
SENSITIVE: []
|
@@ -1038,6 +1138,16 @@ module Aws::Glue
|
|
1038
1138
|
SENSITIVE: []
|
1039
1139
|
end
|
1040
1140
|
|
1141
|
+
class CreateCatalogRequest
|
1142
|
+
attr_accessor name: ::String
|
1143
|
+
attr_accessor catalog_input: Types::CatalogInput
|
1144
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1145
|
+
SENSITIVE: []
|
1146
|
+
end
|
1147
|
+
|
1148
|
+
class CreateCatalogResponse < Aws::EmptyStructure
|
1149
|
+
end
|
1150
|
+
|
1041
1151
|
class CreateClassifierRequest
|
1042
1152
|
attr_accessor grok_classifier: Types::CreateGrokClassifierRequest
|
1043
1153
|
attr_accessor xml_classifier: Types::CreateXMLClassifierRequest
|
@@ -1202,6 +1312,59 @@ module Aws::Glue
|
|
1202
1312
|
SENSITIVE: []
|
1203
1313
|
end
|
1204
1314
|
|
1315
|
+
class CreateIntegrationRequest
|
1316
|
+
attr_accessor integration_name: ::String
|
1317
|
+
attr_accessor source_arn: ::String
|
1318
|
+
attr_accessor target_arn: ::String
|
1319
|
+
attr_accessor description: ::String
|
1320
|
+
attr_accessor data_filter: ::String
|
1321
|
+
attr_accessor kms_key_id: ::String
|
1322
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
1323
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1324
|
+
SENSITIVE: []
|
1325
|
+
end
|
1326
|
+
|
1327
|
+
class CreateIntegrationResourcePropertyRequest
|
1328
|
+
attr_accessor resource_arn: ::String
|
1329
|
+
attr_accessor source_processing_properties: Types::SourceProcessingProperties
|
1330
|
+
attr_accessor target_processing_properties: Types::TargetProcessingProperties
|
1331
|
+
SENSITIVE: []
|
1332
|
+
end
|
1333
|
+
|
1334
|
+
class CreateIntegrationResourcePropertyResponse
|
1335
|
+
attr_accessor resource_arn: ::String
|
1336
|
+
attr_accessor source_processing_properties: Types::SourceProcessingProperties
|
1337
|
+
attr_accessor target_processing_properties: Types::TargetProcessingProperties
|
1338
|
+
SENSITIVE: []
|
1339
|
+
end
|
1340
|
+
|
1341
|
+
class CreateIntegrationResponse
|
1342
|
+
attr_accessor source_arn: ::String
|
1343
|
+
attr_accessor target_arn: ::String
|
1344
|
+
attr_accessor integration_name: ::String
|
1345
|
+
attr_accessor description: ::String
|
1346
|
+
attr_accessor integration_arn: ::String
|
1347
|
+
attr_accessor kms_key_id: ::String
|
1348
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
1349
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1350
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "MODIFYING" | "FAILED" | "DELETING" | "SYNCING" | "NEEDS_ATTENTION")
|
1351
|
+
attr_accessor create_time: ::Time
|
1352
|
+
attr_accessor errors: ::Array[Types::IntegrationError]
|
1353
|
+
attr_accessor data_filter: ::String
|
1354
|
+
SENSITIVE: []
|
1355
|
+
end
|
1356
|
+
|
1357
|
+
class CreateIntegrationTablePropertiesRequest
|
1358
|
+
attr_accessor resource_arn: ::String
|
1359
|
+
attr_accessor table_name: ::String
|
1360
|
+
attr_accessor source_table_config: Types::SourceTableConfig
|
1361
|
+
attr_accessor target_table_config: Types::TargetTableConfig
|
1362
|
+
SENSITIVE: []
|
1363
|
+
end
|
1364
|
+
|
1365
|
+
class CreateIntegrationTablePropertiesResponse < Aws::EmptyStructure
|
1366
|
+
end
|
1367
|
+
|
1205
1368
|
class CreateJobRequest
|
1206
1369
|
attr_accessor name: ::String
|
1207
1370
|
attr_accessor job_mode: ("SCRIPT" | "VISUAL" | "NOTEBOOK")
|
@@ -1519,6 +1682,26 @@ module Aws::Glue
|
|
1519
1682
|
SENSITIVE: []
|
1520
1683
|
end
|
1521
1684
|
|
1685
|
+
class DataLakeAccessProperties
|
1686
|
+
attr_accessor data_lake_access: bool
|
1687
|
+
attr_accessor data_transfer_role: ::String
|
1688
|
+
attr_accessor kms_key: ::String
|
1689
|
+
attr_accessor catalog_type: ::String
|
1690
|
+
SENSITIVE: []
|
1691
|
+
end
|
1692
|
+
|
1693
|
+
class DataLakeAccessPropertiesOutput
|
1694
|
+
attr_accessor data_lake_access: bool
|
1695
|
+
attr_accessor data_transfer_role: ::String
|
1696
|
+
attr_accessor kms_key: ::String
|
1697
|
+
attr_accessor managed_workgroup_name: ::String
|
1698
|
+
attr_accessor managed_workgroup_status: ::String
|
1699
|
+
attr_accessor redshift_database_name: ::String
|
1700
|
+
attr_accessor status_message: ::String
|
1701
|
+
attr_accessor catalog_type: ::String
|
1702
|
+
SENSITIVE: []
|
1703
|
+
end
|
1704
|
+
|
1522
1705
|
class DataLakePrincipal
|
1523
1706
|
attr_accessor data_lake_principal_identifier: ::String
|
1524
1707
|
SENSITIVE: []
|
@@ -1532,6 +1715,12 @@ module Aws::Glue
|
|
1532
1715
|
SENSITIVE: [:description, :evaluation_message, :evaluated_metrics]
|
1533
1716
|
end
|
1534
1717
|
|
1718
|
+
class DataQualityEncryption
|
1719
|
+
attr_accessor data_quality_encryption_mode: ("DISABLED" | "SSE-KMS")
|
1720
|
+
attr_accessor kms_key_arn: ::String
|
1721
|
+
SENSITIVE: []
|
1722
|
+
end
|
1723
|
+
|
1535
1724
|
class DataQualityEvaluationRunAdditionalRunOptions
|
1536
1725
|
attr_accessor cloud_watch_metrics_enabled: bool
|
1537
1726
|
attr_accessor results_s3_prefix: ::String
|
@@ -1739,6 +1928,14 @@ module Aws::Glue
|
|
1739
1928
|
SENSITIVE: []
|
1740
1929
|
end
|
1741
1930
|
|
1931
|
+
class DeleteCatalogRequest
|
1932
|
+
attr_accessor catalog_id: ::String
|
1933
|
+
SENSITIVE: []
|
1934
|
+
end
|
1935
|
+
|
1936
|
+
class DeleteCatalogResponse < Aws::EmptyStructure
|
1937
|
+
end
|
1938
|
+
|
1742
1939
|
class DeleteClassifierRequest
|
1743
1940
|
attr_accessor name: ::String
|
1744
1941
|
SENSITIVE: []
|
@@ -1831,6 +2028,36 @@ module Aws::Glue
|
|
1831
2028
|
class DeleteDevEndpointResponse < Aws::EmptyStructure
|
1832
2029
|
end
|
1833
2030
|
|
2031
|
+
class DeleteIntegrationRequest
|
2032
|
+
attr_accessor integration_identifier: ::String
|
2033
|
+
SENSITIVE: []
|
2034
|
+
end
|
2035
|
+
|
2036
|
+
class DeleteIntegrationResponse
|
2037
|
+
attr_accessor source_arn: ::String
|
2038
|
+
attr_accessor target_arn: ::String
|
2039
|
+
attr_accessor integration_name: ::String
|
2040
|
+
attr_accessor description: ::String
|
2041
|
+
attr_accessor integration_arn: ::String
|
2042
|
+
attr_accessor kms_key_id: ::String
|
2043
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
2044
|
+
attr_accessor tags: ::Array[Types::Tag]
|
2045
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "MODIFYING" | "FAILED" | "DELETING" | "SYNCING" | "NEEDS_ATTENTION")
|
2046
|
+
attr_accessor create_time: ::Time
|
2047
|
+
attr_accessor errors: ::Array[Types::IntegrationError]
|
2048
|
+
attr_accessor data_filter: ::String
|
2049
|
+
SENSITIVE: []
|
2050
|
+
end
|
2051
|
+
|
2052
|
+
class DeleteIntegrationTablePropertiesRequest
|
2053
|
+
attr_accessor resource_arn: ::String
|
2054
|
+
attr_accessor table_name: ::String
|
2055
|
+
SENSITIVE: []
|
2056
|
+
end
|
2057
|
+
|
2058
|
+
class DeleteIntegrationTablePropertiesResponse < Aws::EmptyStructure
|
2059
|
+
end
|
2060
|
+
|
1834
2061
|
class DeleteJobRequest
|
1835
2062
|
attr_accessor job_name: ::String
|
1836
2063
|
SENSITIVE: []
|
@@ -2015,6 +2242,69 @@ module Aws::Glue
|
|
2015
2242
|
SENSITIVE: []
|
2016
2243
|
end
|
2017
2244
|
|
2245
|
+
class DescribeConnectionTypeRequest
|
2246
|
+
attr_accessor connection_type: ::String
|
2247
|
+
SENSITIVE: []
|
2248
|
+
end
|
2249
|
+
|
2250
|
+
class DescribeConnectionTypeResponse
|
2251
|
+
attr_accessor connection_type: ::String
|
2252
|
+
attr_accessor description: ::String
|
2253
|
+
attr_accessor capabilities: Types::Capabilities
|
2254
|
+
attr_accessor connection_properties: ::Hash[::String, Types::Property]
|
2255
|
+
attr_accessor connection_options: ::Hash[::String, Types::Property]
|
2256
|
+
attr_accessor authentication_configuration: Types::AuthConfiguration
|
2257
|
+
attr_accessor compute_environment_configurations: ::Hash[::String, Types::ComputeEnvironmentConfiguration]
|
2258
|
+
attr_accessor physical_connection_requirements: ::Hash[::String, Types::Property]
|
2259
|
+
attr_accessor athena_connection_properties: ::Hash[::String, Types::Property]
|
2260
|
+
attr_accessor python_connection_properties: ::Hash[::String, Types::Property]
|
2261
|
+
attr_accessor spark_connection_properties: ::Hash[::String, Types::Property]
|
2262
|
+
SENSITIVE: []
|
2263
|
+
end
|
2264
|
+
|
2265
|
+
class DescribeEntityRequest
|
2266
|
+
attr_accessor connection_name: ::String
|
2267
|
+
attr_accessor catalog_id: ::String
|
2268
|
+
attr_accessor entity_name: ::String
|
2269
|
+
attr_accessor next_token: ::String
|
2270
|
+
attr_accessor data_store_api_version: ::String
|
2271
|
+
SENSITIVE: []
|
2272
|
+
end
|
2273
|
+
|
2274
|
+
class DescribeEntityResponse
|
2275
|
+
attr_accessor fields: ::Array[Types::Field]
|
2276
|
+
attr_accessor next_token: ::String
|
2277
|
+
SENSITIVE: []
|
2278
|
+
end
|
2279
|
+
|
2280
|
+
class DescribeInboundIntegrationsRequest
|
2281
|
+
attr_accessor integration_arn: ::String
|
2282
|
+
attr_accessor marker: ::String
|
2283
|
+
attr_accessor max_records: ::Integer
|
2284
|
+
attr_accessor target_arn: ::String
|
2285
|
+
SENSITIVE: []
|
2286
|
+
end
|
2287
|
+
|
2288
|
+
class DescribeInboundIntegrationsResponse
|
2289
|
+
attr_accessor inbound_integrations: ::Array[Types::InboundIntegration]
|
2290
|
+
attr_accessor marker: ::String
|
2291
|
+
SENSITIVE: []
|
2292
|
+
end
|
2293
|
+
|
2294
|
+
class DescribeIntegrationsRequest
|
2295
|
+
attr_accessor integration_identifier: ::String
|
2296
|
+
attr_accessor marker: ::String
|
2297
|
+
attr_accessor max_records: ::Integer
|
2298
|
+
attr_accessor filters: ::Array[Types::IntegrationFilter]
|
2299
|
+
SENSITIVE: []
|
2300
|
+
end
|
2301
|
+
|
2302
|
+
class DescribeIntegrationsResponse
|
2303
|
+
attr_accessor integrations: ::Array[Types::Integration]
|
2304
|
+
attr_accessor marker: ::String
|
2305
|
+
SENSITIVE: []
|
2306
|
+
end
|
2307
|
+
|
2018
2308
|
class DevEndpoint
|
2019
2309
|
attr_accessor endpoint_name: ::String
|
2020
2310
|
attr_accessor role_arn: ::String
|
@@ -2159,6 +2449,17 @@ module Aws::Glue
|
|
2159
2449
|
attr_accessor s3_encryption: ::Array[Types::S3Encryption]
|
2160
2450
|
attr_accessor cloud_watch_encryption: Types::CloudWatchEncryption
|
2161
2451
|
attr_accessor job_bookmarks_encryption: Types::JobBookmarksEncryption
|
2452
|
+
attr_accessor data_quality_encryption: Types::DataQualityEncryption
|
2453
|
+
SENSITIVE: []
|
2454
|
+
end
|
2455
|
+
|
2456
|
+
class Entity
|
2457
|
+
attr_accessor entity_name: ::String
|
2458
|
+
attr_accessor label: ::String
|
2459
|
+
attr_accessor is_parent_entity: bool
|
2460
|
+
attr_accessor description: ::String
|
2461
|
+
attr_accessor category: ::String
|
2462
|
+
attr_accessor custom_properties: ::Hash[::String, ::String]
|
2162
2463
|
SENSITIVE: []
|
2163
2464
|
end
|
2164
2465
|
|
@@ -2213,6 +2514,14 @@ module Aws::Glue
|
|
2213
2514
|
SENSITIVE: []
|
2214
2515
|
end
|
2215
2516
|
|
2517
|
+
class ExecutionAttempt
|
2518
|
+
attr_accessor status: ("FAILED" | "STARTED")
|
2519
|
+
attr_accessor column_statistics_task_run_id: ::String
|
2520
|
+
attr_accessor execution_timestamp: ::Time
|
2521
|
+
attr_accessor error_message: ::String
|
2522
|
+
SENSITIVE: []
|
2523
|
+
end
|
2524
|
+
|
2216
2525
|
class ExecutionProperty
|
2217
2526
|
attr_accessor max_concurrent_runs: ::Integer
|
2218
2527
|
SENSITIVE: []
|
@@ -2223,6 +2532,12 @@ module Aws::Glue
|
|
2223
2532
|
SENSITIVE: []
|
2224
2533
|
end
|
2225
2534
|
|
2535
|
+
class FederatedCatalog
|
2536
|
+
attr_accessor identifier: ::String
|
2537
|
+
attr_accessor connection_name: ::String
|
2538
|
+
SENSITIVE: []
|
2539
|
+
end
|
2540
|
+
|
2226
2541
|
class FederatedDatabase
|
2227
2542
|
attr_accessor identifier: ::String
|
2228
2543
|
attr_accessor connection_name: ::String
|
@@ -2253,6 +2568,28 @@ module Aws::Glue
|
|
2253
2568
|
SENSITIVE: []
|
2254
2569
|
end
|
2255
2570
|
|
2571
|
+
class Field
|
2572
|
+
attr_accessor field_name: ::String
|
2573
|
+
attr_accessor label: ::String
|
2574
|
+
attr_accessor description: ::String
|
2575
|
+
attr_accessor field_type: ("INT" | "SMALLINT" | "BIGINT" | "FLOAT" | "LONG" | "DATE" | "BOOLEAN" | "MAP" | "ARRAY" | "STRING" | "TIMESTAMP" | "DECIMAL" | "BYTE" | "SHORT" | "DOUBLE" | "STRUCT")
|
2576
|
+
attr_accessor is_primary_key: bool
|
2577
|
+
attr_accessor is_nullable: bool
|
2578
|
+
attr_accessor is_retrievable: bool
|
2579
|
+
attr_accessor is_filterable: bool
|
2580
|
+
attr_accessor is_partitionable: bool
|
2581
|
+
attr_accessor is_createable: bool
|
2582
|
+
attr_accessor is_updateable: bool
|
2583
|
+
attr_accessor is_upsertable: bool
|
2584
|
+
attr_accessor is_default_on_create: bool
|
2585
|
+
attr_accessor supported_values: ::Array[::String]
|
2586
|
+
attr_accessor supported_filter_operators: ::Array[("LESS_THAN" | "GREATER_THAN" | "BETWEEN" | "EQUAL_TO" | "NOT_EQUAL_TO" | "GREATER_THAN_OR_EQUAL_TO" | "LESS_THAN_OR_EQUAL_TO" | "CONTAINS" | "ORDER_BY")]
|
2587
|
+
attr_accessor parent_field: ::String
|
2588
|
+
attr_accessor native_data_type: ::String
|
2589
|
+
attr_accessor custom_properties: ::Hash[::String, ::String]
|
2590
|
+
SENSITIVE: []
|
2591
|
+
end
|
2592
|
+
|
2256
2593
|
class FillMissingValues
|
2257
2594
|
attr_accessor name: ::String
|
2258
2595
|
attr_accessor inputs: ::Array[::String]
|
@@ -2353,6 +2690,30 @@ module Aws::Glue
|
|
2353
2690
|
SENSITIVE: []
|
2354
2691
|
end
|
2355
2692
|
|
2693
|
+
class GetCatalogRequest
|
2694
|
+
attr_accessor catalog_id: ::String
|
2695
|
+
SENSITIVE: []
|
2696
|
+
end
|
2697
|
+
|
2698
|
+
class GetCatalogResponse
|
2699
|
+
attr_accessor catalog: Types::Catalog
|
2700
|
+
SENSITIVE: []
|
2701
|
+
end
|
2702
|
+
|
2703
|
+
class GetCatalogsRequest
|
2704
|
+
attr_accessor parent_catalog_id: ::String
|
2705
|
+
attr_accessor next_token: ::String
|
2706
|
+
attr_accessor max_results: ::Integer
|
2707
|
+
attr_accessor recursive: bool
|
2708
|
+
SENSITIVE: []
|
2709
|
+
end
|
2710
|
+
|
2711
|
+
class GetCatalogsResponse
|
2712
|
+
attr_accessor catalog_list: ::Array[Types::Catalog]
|
2713
|
+
attr_accessor next_token: ::String
|
2714
|
+
SENSITIVE: []
|
2715
|
+
end
|
2716
|
+
|
2356
2717
|
class GetClassifierRequest
|
2357
2718
|
attr_accessor name: ::String
|
2358
2719
|
SENSITIVE: []
|
@@ -2443,6 +2804,7 @@ module Aws::Glue
|
|
2443
2804
|
attr_accessor catalog_id: ::String
|
2444
2805
|
attr_accessor name: ::String
|
2445
2806
|
attr_accessor hide_password: bool
|
2807
|
+
attr_accessor apply_override_for_compute_environment: ("SPARK" | "ATHENA" | "PYTHON")
|
2446
2808
|
SENSITIVE: []
|
2447
2809
|
end
|
2448
2810
|
|
@@ -2453,7 +2815,8 @@ module Aws::Glue
|
|
2453
2815
|
|
2454
2816
|
class GetConnectionsFilter
|
2455
2817
|
attr_accessor match_criteria: ::Array[::String]
|
2456
|
-
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA")
|
2818
|
+
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA" | "GOOGLEADS" | "GOOGLESHEETS" | "GOOGLEANALYTICS4" | "SERVICENOW" | "MARKETO" | "SAPODATA" | "ZENDESK" | "JIRACLOUD" | "NETSUITEERP" | "HUBSPOT" | "FACEBOOKADS" | "INSTAGRAMADS" | "ZOHOCRM" | "SALESFORCEPARDOT" | "SALESFORCEMARKETINGCLOUD" | "SLACK" | "STRIPE" | "INTERCOM" | "SNAPCHATADS")
|
2819
|
+
attr_accessor connection_schema_version: ::Integer
|
2457
2820
|
SENSITIVE: []
|
2458
2821
|
end
|
2459
2822
|
|
@@ -2701,6 +3064,52 @@ module Aws::Glue
|
|
2701
3064
|
SENSITIVE: []
|
2702
3065
|
end
|
2703
3066
|
|
3067
|
+
class GetEntityRecordsRequest
|
3068
|
+
attr_accessor connection_name: ::String
|
3069
|
+
attr_accessor catalog_id: ::String
|
3070
|
+
attr_accessor entity_name: ::String
|
3071
|
+
attr_accessor next_token: ::String
|
3072
|
+
attr_accessor data_store_api_version: ::String
|
3073
|
+
attr_accessor connection_options: ::Hash[::String, ::String]
|
3074
|
+
attr_accessor filter_predicate: ::String
|
3075
|
+
attr_accessor limit: ::Integer
|
3076
|
+
attr_accessor order_by: ::String
|
3077
|
+
attr_accessor selected_fields: ::Array[::String]
|
3078
|
+
SENSITIVE: []
|
3079
|
+
end
|
3080
|
+
|
3081
|
+
class GetEntityRecordsResponse
|
3082
|
+
attr_accessor records: ::Array[untyped]
|
3083
|
+
attr_accessor next_token: ::String
|
3084
|
+
SENSITIVE: [:records]
|
3085
|
+
end
|
3086
|
+
|
3087
|
+
class GetIntegrationResourcePropertyRequest
|
3088
|
+
attr_accessor resource_arn: ::String
|
3089
|
+
SENSITIVE: []
|
3090
|
+
end
|
3091
|
+
|
3092
|
+
class GetIntegrationResourcePropertyResponse
|
3093
|
+
attr_accessor resource_arn: ::String
|
3094
|
+
attr_accessor source_processing_properties: Types::SourceProcessingProperties
|
3095
|
+
attr_accessor target_processing_properties: Types::TargetProcessingProperties
|
3096
|
+
SENSITIVE: []
|
3097
|
+
end
|
3098
|
+
|
3099
|
+
class GetIntegrationTablePropertiesRequest
|
3100
|
+
attr_accessor resource_arn: ::String
|
3101
|
+
attr_accessor table_name: ::String
|
3102
|
+
SENSITIVE: []
|
3103
|
+
end
|
3104
|
+
|
3105
|
+
class GetIntegrationTablePropertiesResponse
|
3106
|
+
attr_accessor resource_arn: ::String
|
3107
|
+
attr_accessor table_name: ::String
|
3108
|
+
attr_accessor source_table_config: Types::SourceTableConfig
|
3109
|
+
attr_accessor target_table_config: Types::TargetTableConfig
|
3110
|
+
SENSITIVE: []
|
3111
|
+
end
|
3112
|
+
|
2704
3113
|
class GetJobBookmarkRequest
|
2705
3114
|
attr_accessor job_name: ::String
|
2706
3115
|
attr_accessor run_id: ::String
|
@@ -3489,6 +3898,70 @@ module Aws::Glue
|
|
3489
3898
|
SENSITIVE: []
|
3490
3899
|
end
|
3491
3900
|
|
3901
|
+
class InboundIntegration
|
3902
|
+
attr_accessor source_arn: ::String
|
3903
|
+
attr_accessor target_arn: ::String
|
3904
|
+
attr_accessor integration_arn: ::String
|
3905
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "MODIFYING" | "FAILED" | "DELETING" | "SYNCING" | "NEEDS_ATTENTION")
|
3906
|
+
attr_accessor create_time: ::Time
|
3907
|
+
attr_accessor errors: ::Array[Types::IntegrationError]
|
3908
|
+
SENSITIVE: []
|
3909
|
+
end
|
3910
|
+
|
3911
|
+
class Integration
|
3912
|
+
attr_accessor source_arn: ::String
|
3913
|
+
attr_accessor target_arn: ::String
|
3914
|
+
attr_accessor description: ::String
|
3915
|
+
attr_accessor integration_name: ::String
|
3916
|
+
attr_accessor integration_arn: ::String
|
3917
|
+
attr_accessor kms_key_id: ::String
|
3918
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
3919
|
+
attr_accessor tags: ::Array[Types::Tag]
|
3920
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "MODIFYING" | "FAILED" | "DELETING" | "SYNCING" | "NEEDS_ATTENTION")
|
3921
|
+
attr_accessor create_time: ::Time
|
3922
|
+
attr_accessor errors: ::Array[Types::IntegrationError]
|
3923
|
+
attr_accessor data_filter: ::String
|
3924
|
+
SENSITIVE: []
|
3925
|
+
end
|
3926
|
+
|
3927
|
+
class IntegrationConflictOperationFault
|
3928
|
+
attr_accessor message: ::String
|
3929
|
+
SENSITIVE: []
|
3930
|
+
end
|
3931
|
+
|
3932
|
+
class IntegrationError
|
3933
|
+
attr_accessor error_code: ::String
|
3934
|
+
attr_accessor error_message: ::String
|
3935
|
+
SENSITIVE: []
|
3936
|
+
end
|
3937
|
+
|
3938
|
+
class IntegrationFilter
|
3939
|
+
attr_accessor name: ::String
|
3940
|
+
attr_accessor values: ::Array[::String]
|
3941
|
+
SENSITIVE: []
|
3942
|
+
end
|
3943
|
+
|
3944
|
+
class IntegrationNotFoundFault
|
3945
|
+
attr_accessor message: ::String
|
3946
|
+
SENSITIVE: []
|
3947
|
+
end
|
3948
|
+
|
3949
|
+
class IntegrationPartition
|
3950
|
+
attr_accessor field_name: ::String
|
3951
|
+
attr_accessor function_spec: ::String
|
3952
|
+
SENSITIVE: []
|
3953
|
+
end
|
3954
|
+
|
3955
|
+
class IntegrationQuotaExceededFault
|
3956
|
+
attr_accessor message: ::String
|
3957
|
+
SENSITIVE: []
|
3958
|
+
end
|
3959
|
+
|
3960
|
+
class InternalServerException
|
3961
|
+
attr_accessor message: ::String
|
3962
|
+
SENSITIVE: []
|
3963
|
+
end
|
3964
|
+
|
3492
3965
|
class InternalServiceException
|
3493
3966
|
attr_accessor message: ::String
|
3494
3967
|
SENSITIVE: []
|
@@ -3500,6 +3973,11 @@ module Aws::Glue
|
|
3500
3973
|
SENSITIVE: []
|
3501
3974
|
end
|
3502
3975
|
|
3976
|
+
class InvalidIntegrationStateFault
|
3977
|
+
attr_accessor message: ::String
|
3978
|
+
SENSITIVE: []
|
3979
|
+
end
|
3980
|
+
|
3503
3981
|
class InvalidStateException
|
3504
3982
|
attr_accessor message: ::String
|
3505
3983
|
SENSITIVE: []
|
@@ -3693,6 +4171,11 @@ module Aws::Glue
|
|
3693
4171
|
SENSITIVE: []
|
3694
4172
|
end
|
3695
4173
|
|
4174
|
+
class KMSKeyNotAccessibleFault
|
4175
|
+
attr_accessor message: ::String
|
4176
|
+
SENSITIVE: []
|
4177
|
+
end
|
4178
|
+
|
3696
4179
|
class KafkaStreamingSourceOptions
|
3697
4180
|
attr_accessor bootstrap_servers: ::String
|
3698
4181
|
attr_accessor security_protocol: ::String
|
@@ -3807,6 +4290,18 @@ module Aws::Glue
|
|
3807
4290
|
SENSITIVE: []
|
3808
4291
|
end
|
3809
4292
|
|
4293
|
+
class ListConnectionTypesRequest
|
4294
|
+
attr_accessor max_results: ::Integer
|
4295
|
+
attr_accessor next_token: ::String
|
4296
|
+
SENSITIVE: []
|
4297
|
+
end
|
4298
|
+
|
4299
|
+
class ListConnectionTypesResponse
|
4300
|
+
attr_accessor connection_types: ::Array[Types::ConnectionTypeBrief]
|
4301
|
+
attr_accessor next_token: ::String
|
4302
|
+
SENSITIVE: []
|
4303
|
+
end
|
4304
|
+
|
3810
4305
|
class ListCrawlersRequest
|
3811
4306
|
attr_accessor max_results: ::Integer
|
3812
4307
|
attr_accessor next_token: ::String
|
@@ -3943,6 +4438,21 @@ module Aws::Glue
|
|
3943
4438
|
SENSITIVE: []
|
3944
4439
|
end
|
3945
4440
|
|
4441
|
+
class ListEntitiesRequest
|
4442
|
+
attr_accessor connection_name: ::String
|
4443
|
+
attr_accessor catalog_id: ::String
|
4444
|
+
attr_accessor parent_entity_name: ::String
|
4445
|
+
attr_accessor next_token: ::String
|
4446
|
+
attr_accessor data_store_api_version: ::String
|
4447
|
+
SENSITIVE: []
|
4448
|
+
end
|
4449
|
+
|
4450
|
+
class ListEntitiesResponse
|
4451
|
+
attr_accessor entities: ::Array[Types::Entity]
|
4452
|
+
attr_accessor next_token: ::String
|
4453
|
+
SENSITIVE: []
|
4454
|
+
end
|
4455
|
+
|
3946
4456
|
class ListJobsRequest
|
3947
4457
|
attr_accessor next_token: ::String
|
3948
4458
|
attr_accessor max_results: ::Integer
|
@@ -4207,6 +4717,30 @@ module Aws::Glue
|
|
4207
4717
|
SENSITIVE: []
|
4208
4718
|
end
|
4209
4719
|
|
4720
|
+
class ModifyIntegrationRequest
|
4721
|
+
attr_accessor integration_identifier: ::String
|
4722
|
+
attr_accessor description: ::String
|
4723
|
+
attr_accessor data_filter: ::String
|
4724
|
+
attr_accessor integration_name: ::String
|
4725
|
+
SENSITIVE: []
|
4726
|
+
end
|
4727
|
+
|
4728
|
+
class ModifyIntegrationResponse
|
4729
|
+
attr_accessor source_arn: ::String
|
4730
|
+
attr_accessor target_arn: ::String
|
4731
|
+
attr_accessor integration_name: ::String
|
4732
|
+
attr_accessor description: ::String
|
4733
|
+
attr_accessor integration_arn: ::String
|
4734
|
+
attr_accessor kms_key_id: ::String
|
4735
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
4736
|
+
attr_accessor tags: ::Array[Types::Tag]
|
4737
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "MODIFYING" | "FAILED" | "DELETING" | "SYNCING" | "NEEDS_ATTENTION")
|
4738
|
+
attr_accessor create_time: ::Time
|
4739
|
+
attr_accessor errors: ::Array[Types::IntegrationError]
|
4740
|
+
attr_accessor data_filter: ::String
|
4741
|
+
SENSITIVE: []
|
4742
|
+
end
|
4743
|
+
|
4210
4744
|
class MongoDBTarget
|
4211
4745
|
attr_accessor connection_name: ::String
|
4212
4746
|
attr_accessor path: ::String
|
@@ -4268,6 +4802,14 @@ module Aws::Glue
|
|
4268
4802
|
SENSITIVE: []
|
4269
4803
|
end
|
4270
4804
|
|
4805
|
+
class OAuth2Credentials
|
4806
|
+
attr_accessor user_managed_client_application_client_secret: ::String
|
4807
|
+
attr_accessor access_token: ::String
|
4808
|
+
attr_accessor refresh_token: ::String
|
4809
|
+
attr_accessor jwt_token: ::String
|
4810
|
+
SENSITIVE: [:user_managed_client_application_client_secret, :access_token, :refresh_token, :jwt_token]
|
4811
|
+
end
|
4812
|
+
|
4271
4813
|
class OAuth2Properties
|
4272
4814
|
attr_accessor o_auth_2_grant_type: ("AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER")
|
4273
4815
|
attr_accessor o_auth_2_client_application: Types::OAuth2ClientApplication
|
@@ -4282,6 +4824,7 @@ module Aws::Glue
|
|
4282
4824
|
attr_accessor token_url: ::String
|
4283
4825
|
attr_accessor token_url_parameters_map: ::Hash[::String, ::String]
|
4284
4826
|
attr_accessor authorization_code_properties: Types::AuthorizationCodeProperties
|
4827
|
+
attr_accessor o_auth_2_credentials: Types::OAuth2Credentials
|
4285
4828
|
SENSITIVE: []
|
4286
4829
|
end
|
4287
4830
|
|
@@ -4454,6 +4997,17 @@ module Aws::Glue
|
|
4454
4997
|
SENSITIVE: []
|
4455
4998
|
end
|
4456
4999
|
|
5000
|
+
class Property
|
5001
|
+
attr_accessor name: ::String
|
5002
|
+
attr_accessor description: ::String
|
5003
|
+
attr_accessor required: bool
|
5004
|
+
attr_accessor default_value: ::String
|
5005
|
+
attr_accessor property_types: ::Array[("USER_INPUT" | "SECRET" | "READ_ONLY" | "UNUSED" | "SECRET_OR_USER_INPUT")]
|
5006
|
+
attr_accessor allowed_values: ::Array[Types::AllowedValue]
|
5007
|
+
attr_accessor data_operation_scopes: ::Array[("READ" | "WRITE")]
|
5008
|
+
SENSITIVE: []
|
5009
|
+
end
|
5010
|
+
|
4457
5011
|
class PropertyPredicate
|
4458
5012
|
attr_accessor key: ::String
|
4459
5013
|
attr_accessor value: ::String
|
@@ -4675,6 +5229,11 @@ module Aws::Glue
|
|
4675
5229
|
SENSITIVE: []
|
4676
5230
|
end
|
4677
5231
|
|
5232
|
+
class ResourceNotFoundException
|
5233
|
+
attr_accessor message: ::String
|
5234
|
+
SENSITIVE: []
|
5235
|
+
end
|
5236
|
+
|
4678
5237
|
class ResourceNotReadyException
|
4679
5238
|
attr_accessor message: ::String
|
4680
5239
|
SENSITIVE: []
|
@@ -5172,6 +5731,19 @@ module Aws::Glue
|
|
5172
5731
|
SENSITIVE: []
|
5173
5732
|
end
|
5174
5733
|
|
5734
|
+
class SourceProcessingProperties
|
5735
|
+
attr_accessor role_arn: ::String
|
5736
|
+
SENSITIVE: []
|
5737
|
+
end
|
5738
|
+
|
5739
|
+
class SourceTableConfig
|
5740
|
+
attr_accessor fields: ::Array[::String]
|
5741
|
+
attr_accessor filter_predicate: ::String
|
5742
|
+
attr_accessor primary_key: ::Array[::String]
|
5743
|
+
attr_accessor record_update_field: ::String
|
5744
|
+
SENSITIVE: []
|
5745
|
+
end
|
5746
|
+
|
5175
5747
|
class SparkConnectorSource
|
5176
5748
|
attr_accessor name: ::String
|
5177
5749
|
attr_accessor connection_name: ::String
|
@@ -5693,6 +6265,12 @@ module Aws::Glue
|
|
5693
6265
|
SENSITIVE: []
|
5694
6266
|
end
|
5695
6267
|
|
6268
|
+
class Tag
|
6269
|
+
attr_accessor key: ::String
|
6270
|
+
attr_accessor value: ::String
|
6271
|
+
SENSITIVE: []
|
6272
|
+
end
|
6273
|
+
|
5696
6274
|
class TagResourceRequest
|
5697
6275
|
attr_accessor resource_arn: ::String
|
5698
6276
|
attr_accessor tags_to_add: ::Hash[::String, ::String]
|
@@ -5702,6 +6280,31 @@ module Aws::Glue
|
|
5702
6280
|
class TagResourceResponse < Aws::EmptyStructure
|
5703
6281
|
end
|
5704
6282
|
|
6283
|
+
class TargetProcessingProperties
|
6284
|
+
attr_accessor role_arn: ::String
|
6285
|
+
attr_accessor kms_arn: ::String
|
6286
|
+
attr_accessor connection_name: ::String
|
6287
|
+
attr_accessor event_bus_arn: ::String
|
6288
|
+
SENSITIVE: []
|
6289
|
+
end
|
6290
|
+
|
6291
|
+
class TargetRedshiftCatalog
|
6292
|
+
attr_accessor catalog_arn: ::String
|
6293
|
+
SENSITIVE: []
|
6294
|
+
end
|
6295
|
+
|
6296
|
+
class TargetResourceNotFound
|
6297
|
+
attr_accessor message: ::String
|
6298
|
+
SENSITIVE: []
|
6299
|
+
end
|
6300
|
+
|
6301
|
+
class TargetTableConfig
|
6302
|
+
attr_accessor unnest_spec: ("TOPLEVEL" | "FULL" | "NOUNNEST")
|
6303
|
+
attr_accessor partition_spec: ::Array[Types::IntegrationPartition]
|
6304
|
+
attr_accessor target_table_name: ::String
|
6305
|
+
SENSITIVE: []
|
6306
|
+
end
|
6307
|
+
|
5705
6308
|
class TaskRun
|
5706
6309
|
attr_accessor transform_id: ::String
|
5707
6310
|
attr_accessor task_run_id: ::String
|
@@ -5740,14 +6343,15 @@ module Aws::Glue
|
|
5740
6343
|
end
|
5741
6344
|
|
5742
6345
|
class TestConnectionInput
|
5743
|
-
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA")
|
5744
|
-
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" | "
|
6346
|
+
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA" | "GOOGLEADS" | "GOOGLESHEETS" | "GOOGLEANALYTICS4" | "SERVICENOW" | "MARKETO" | "SAPODATA" | "ZENDESK" | "JIRACLOUD" | "NETSUITEERP" | "HUBSPOT" | "FACEBOOKADS" | "INSTAGRAMADS" | "ZOHOCRM" | "SALESFORCEPARDOT" | "SALESFORCEMARKETINGCLOUD" | "SLACK" | "STRIPE" | "INTERCOM" | "SNAPCHATADS")
|
6347
|
+
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" | "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" | "SECRET_ID" | "CONNECTOR_URL" | "CONNECTOR_TYPE" | "CONNECTOR_CLASS_NAME" | "ENDPOINT" | "ENDPOINT_TYPE" | "ROLE_ARN" | "REGION" | "WORKGROUP_NAME" | "CLUSTER_IDENTIFIER" | "DATABASE"), ::String]
|
5745
6348
|
attr_accessor authentication_configuration: Types::AuthenticationConfigurationInput
|
5746
6349
|
SENSITIVE: []
|
5747
6350
|
end
|
5748
6351
|
|
5749
6352
|
class TestConnectionRequest
|
5750
6353
|
attr_accessor connection_name: ::String
|
6354
|
+
attr_accessor catalog_id: ::String
|
5751
6355
|
attr_accessor test_connection_input: Types::TestConnectionInput
|
5752
6356
|
SENSITIVE: []
|
5753
6357
|
end
|
@@ -5878,6 +6482,15 @@ module Aws::Glue
|
|
5878
6482
|
SENSITIVE: []
|
5879
6483
|
end
|
5880
6484
|
|
6485
|
+
class UpdateCatalogRequest
|
6486
|
+
attr_accessor catalog_id: ::String
|
6487
|
+
attr_accessor catalog_input: Types::CatalogInput
|
6488
|
+
SENSITIVE: []
|
6489
|
+
end
|
6490
|
+
|
6491
|
+
class UpdateCatalogResponse < Aws::EmptyStructure
|
6492
|
+
end
|
6493
|
+
|
5881
6494
|
class UpdateClassifierRequest
|
5882
6495
|
attr_accessor grok_classifier: Types::UpdateGrokClassifierRequest
|
5883
6496
|
attr_accessor xml_classifier: Types::UpdateXMLClassifierRequest
|
@@ -6032,6 +6645,31 @@ module Aws::Glue
|
|
6032
6645
|
SENSITIVE: []
|
6033
6646
|
end
|
6034
6647
|
|
6648
|
+
class UpdateIntegrationResourcePropertyRequest
|
6649
|
+
attr_accessor resource_arn: ::String
|
6650
|
+
attr_accessor source_processing_properties: Types::SourceProcessingProperties
|
6651
|
+
attr_accessor target_processing_properties: Types::TargetProcessingProperties
|
6652
|
+
SENSITIVE: []
|
6653
|
+
end
|
6654
|
+
|
6655
|
+
class UpdateIntegrationResourcePropertyResponse
|
6656
|
+
attr_accessor resource_arn: ::String
|
6657
|
+
attr_accessor source_processing_properties: Types::SourceProcessingProperties
|
6658
|
+
attr_accessor target_processing_properties: Types::TargetProcessingProperties
|
6659
|
+
SENSITIVE: []
|
6660
|
+
end
|
6661
|
+
|
6662
|
+
class UpdateIntegrationTablePropertiesRequest
|
6663
|
+
attr_accessor resource_arn: ::String
|
6664
|
+
attr_accessor table_name: ::String
|
6665
|
+
attr_accessor source_table_config: Types::SourceTableConfig
|
6666
|
+
attr_accessor target_table_config: Types::TargetTableConfig
|
6667
|
+
SENSITIVE: []
|
6668
|
+
end
|
6669
|
+
|
6670
|
+
class UpdateIntegrationTablePropertiesResponse < Aws::EmptyStructure
|
6671
|
+
end
|
6672
|
+
|
6035
6673
|
class UpdateJobFromSourceControlRequest
|
6036
6674
|
attr_accessor job_name: ::String
|
6037
6675
|
attr_accessor provider: ("GITHUB" | "GITLAB" | "BITBUCKET" | "AWS_CODE_COMMIT")
|