@aws-sdk/client-glue 3.590.0 → 3.591.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.
- package/dist-cjs/index.js +38 -6
- package/dist-es/models/models_0.js +15 -53
- package/dist-es/models/models_1.js +60 -3
- package/dist-es/models/models_2.js +3 -0
- package/dist-es/protocols/Aws_json1_1.js +4 -0
- package/dist-types/commands/CreateConnectionCommand.d.ts +25 -3
- package/dist-types/commands/CreateCrawlerCommand.d.ts +1 -1
- package/dist-types/commands/GetConnectionCommand.d.ts +19 -1
- package/dist-types/commands/GetConnectionsCommand.d.ts +20 -2
- package/dist-types/commands/GetSchemaVersionCommand.d.ts +1 -1
- package/dist-types/commands/GetSchemaVersionsDiffCommand.d.ts +1 -1
- package/dist-types/commands/GetSecurityConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConnectionCommand.d.ts +21 -1
- package/dist-types/models/models_0.d.ts +162 -342
- package/dist-types/models/models_1.d.ts +400 -184
- package/dist-types/models/models_2.d.ts +190 -8
- package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateCrawlerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetSchemaVersionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetSchemaVersionsDiffCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetSecurityConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +50 -96
- package/dist-types/ts3.4/models/models_1.d.ts +120 -46
- package/dist-types/ts3.4/models/models_2.d.ts +46 -3
- package/package.json +1 -1
|
@@ -469,6 +469,163 @@ export interface AuditContext {
|
|
|
469
469
|
*/
|
|
470
470
|
AllColumnsRequested?: boolean;
|
|
471
471
|
}
|
|
472
|
+
/**
|
|
473
|
+
* @public
|
|
474
|
+
* @enum
|
|
475
|
+
*/
|
|
476
|
+
export declare const AuthenticationType: {
|
|
477
|
+
readonly BASIC: "BASIC";
|
|
478
|
+
readonly CUSTOM: "CUSTOM";
|
|
479
|
+
readonly OAUTH2: "OAUTH2";
|
|
480
|
+
};
|
|
481
|
+
/**
|
|
482
|
+
* @public
|
|
483
|
+
*/
|
|
484
|
+
export type AuthenticationType = (typeof AuthenticationType)[keyof typeof AuthenticationType];
|
|
485
|
+
/**
|
|
486
|
+
* <p>The OAuth2 client app used for the connection.</p>
|
|
487
|
+
* @public
|
|
488
|
+
*/
|
|
489
|
+
export interface OAuth2ClientApplication {
|
|
490
|
+
/**
|
|
491
|
+
* <p>The client application clientID if the ClientAppType is <code>USER_MANAGED</code>.</p>
|
|
492
|
+
* @public
|
|
493
|
+
*/
|
|
494
|
+
UserManagedClientApplicationClientId?: string;
|
|
495
|
+
/**
|
|
496
|
+
* <p>The reference to the SaaS-side client app that is Amazon Web Services managed.</p>
|
|
497
|
+
* @public
|
|
498
|
+
*/
|
|
499
|
+
AWSManagedClientApplicationReference?: string;
|
|
500
|
+
}
|
|
501
|
+
/**
|
|
502
|
+
* @public
|
|
503
|
+
* @enum
|
|
504
|
+
*/
|
|
505
|
+
export declare const OAuth2GrantType: {
|
|
506
|
+
readonly AUTHORIZATION_CODE: "AUTHORIZATION_CODE";
|
|
507
|
+
readonly CLIENT_CREDENTIALS: "CLIENT_CREDENTIALS";
|
|
508
|
+
readonly JWT_BEARER: "JWT_BEARER";
|
|
509
|
+
};
|
|
510
|
+
/**
|
|
511
|
+
* @public
|
|
512
|
+
*/
|
|
513
|
+
export type OAuth2GrantType = (typeof OAuth2GrantType)[keyof typeof OAuth2GrantType];
|
|
514
|
+
/**
|
|
515
|
+
* <p>A structure containing properties for OAuth2 authentication.</p>
|
|
516
|
+
* @public
|
|
517
|
+
*/
|
|
518
|
+
export interface OAuth2Properties {
|
|
519
|
+
/**
|
|
520
|
+
* <p>The OAuth2 grant type. For example, <code>AUTHORIZATION_CODE</code>, <code>JWT_BEARER</code>, or <code>CLIENT_CREDENTIALS</code>.</p>
|
|
521
|
+
* @public
|
|
522
|
+
*/
|
|
523
|
+
OAuth2GrantType?: OAuth2GrantType;
|
|
524
|
+
/**
|
|
525
|
+
* <p>The client application type. For example, AWS_MANAGED or USER_MANAGED.</p>
|
|
526
|
+
* @public
|
|
527
|
+
*/
|
|
528
|
+
OAuth2ClientApplication?: OAuth2ClientApplication;
|
|
529
|
+
/**
|
|
530
|
+
* <p>The URL of the provider's authentication server, to exchange an authorization code for an access token.</p>
|
|
531
|
+
* @public
|
|
532
|
+
*/
|
|
533
|
+
TokenUrl?: string;
|
|
534
|
+
/**
|
|
535
|
+
* <p>A map of parameters that are added to the token <code>GET</code> request.</p>
|
|
536
|
+
* @public
|
|
537
|
+
*/
|
|
538
|
+
TokenUrlParametersMap?: Record<string, string>;
|
|
539
|
+
}
|
|
540
|
+
/**
|
|
541
|
+
* <p>A structure containing the authentication configuration.</p>
|
|
542
|
+
* @public
|
|
543
|
+
*/
|
|
544
|
+
export interface AuthenticationConfiguration {
|
|
545
|
+
/**
|
|
546
|
+
* <p>A structure containing the authentication configuration.</p>
|
|
547
|
+
* @public
|
|
548
|
+
*/
|
|
549
|
+
AuthenticationType?: AuthenticationType;
|
|
550
|
+
/**
|
|
551
|
+
* <p>The secret manager ARN to store credentials.</p>
|
|
552
|
+
* @public
|
|
553
|
+
*/
|
|
554
|
+
SecretArn?: string;
|
|
555
|
+
/**
|
|
556
|
+
* <p>The properties for OAuth2 authentication.</p>
|
|
557
|
+
* @public
|
|
558
|
+
*/
|
|
559
|
+
OAuth2Properties?: OAuth2Properties;
|
|
560
|
+
}
|
|
561
|
+
/**
|
|
562
|
+
* <p>The set of properties required for the the OAuth2 <code>AUTHORIZATION_CODE</code> grant type workflow.</p>
|
|
563
|
+
* @public
|
|
564
|
+
*/
|
|
565
|
+
export interface AuthorizationCodeProperties {
|
|
566
|
+
/**
|
|
567
|
+
* <p>An authorization code to be used in the third leg of the <code>AUTHORIZATION_CODE</code> grant workflow. This is a single-use code which becomes invalid once exchanged for an access token, thus it is acceptable to have this value as a request parameter.</p>
|
|
568
|
+
* @public
|
|
569
|
+
*/
|
|
570
|
+
AuthorizationCode?: string;
|
|
571
|
+
/**
|
|
572
|
+
* <p>The redirect URI where the user gets redirected to by authorization server when issuing an authorization code. The URI is subsequently used when the authorization code is exchanged for an access token.</p>
|
|
573
|
+
* @public
|
|
574
|
+
*/
|
|
575
|
+
RedirectUri?: string;
|
|
576
|
+
}
|
|
577
|
+
/**
|
|
578
|
+
* <p>A structure containing properties for OAuth2 in the CreateConnection request.</p>
|
|
579
|
+
* @public
|
|
580
|
+
*/
|
|
581
|
+
export interface OAuth2PropertiesInput {
|
|
582
|
+
/**
|
|
583
|
+
* <p>The OAuth2 grant type in the CreateConnection request. For example, <code>AUTHORIZATION_CODE</code>, <code>JWT_BEARER</code>, or <code>CLIENT_CREDENTIALS</code>.</p>
|
|
584
|
+
* @public
|
|
585
|
+
*/
|
|
586
|
+
OAuth2GrantType?: OAuth2GrantType;
|
|
587
|
+
/**
|
|
588
|
+
* <p>The client application type in the CreateConnection request. For example, <code>AWS_MANAGED</code> or <code>USER_MANAGED</code>.</p>
|
|
589
|
+
* @public
|
|
590
|
+
*/
|
|
591
|
+
OAuth2ClientApplication?: OAuth2ClientApplication;
|
|
592
|
+
/**
|
|
593
|
+
* <p>The URL of the provider's authentication server, to exchange an authorization code for an access token.</p>
|
|
594
|
+
* @public
|
|
595
|
+
*/
|
|
596
|
+
TokenUrl?: string;
|
|
597
|
+
/**
|
|
598
|
+
* <p>A map of parameters that are added to the token <code>GET</code> request.</p>
|
|
599
|
+
* @public
|
|
600
|
+
*/
|
|
601
|
+
TokenUrlParametersMap?: Record<string, string>;
|
|
602
|
+
/**
|
|
603
|
+
* <p>The set of properties required for the the OAuth2 <code>AUTHORIZATION_CODE</code> grant type.</p>
|
|
604
|
+
* @public
|
|
605
|
+
*/
|
|
606
|
+
AuthorizationCodeProperties?: AuthorizationCodeProperties;
|
|
607
|
+
}
|
|
608
|
+
/**
|
|
609
|
+
* <p>A structure containing the authentication configuration in the CreateConnection request.</p>
|
|
610
|
+
* @public
|
|
611
|
+
*/
|
|
612
|
+
export interface AuthenticationConfigurationInput {
|
|
613
|
+
/**
|
|
614
|
+
* <p>A structure containing the authentication configuration in the CreateConnection request.</p>
|
|
615
|
+
* @public
|
|
616
|
+
*/
|
|
617
|
+
AuthenticationType?: AuthenticationType;
|
|
618
|
+
/**
|
|
619
|
+
* <p>The secret manager ARN to store credentials in the CreateConnection request.</p>
|
|
620
|
+
* @public
|
|
621
|
+
*/
|
|
622
|
+
SecretArn?: string;
|
|
623
|
+
/**
|
|
624
|
+
* <p>The properties for OAuth2 authentication in the CreateConnection request.</p>
|
|
625
|
+
* @public
|
|
626
|
+
*/
|
|
627
|
+
OAuth2Properties?: OAuth2PropertiesInput;
|
|
628
|
+
}
|
|
472
629
|
/**
|
|
473
630
|
* <p>A column in a <code>Table</code>.</p>
|
|
474
631
|
* @public
|
|
@@ -6033,10 +6190,15 @@ export interface BatchGetPartitionResponse {
|
|
|
6033
6190
|
* @enum
|
|
6034
6191
|
*/
|
|
6035
6192
|
export declare const FederationSourceErrorCode: {
|
|
6193
|
+
readonly AccessDeniedException: "AccessDeniedException";
|
|
6194
|
+
readonly EntityNotFoundException: "EntityNotFoundException";
|
|
6036
6195
|
readonly InternalServiceException: "InternalServiceException";
|
|
6196
|
+
readonly InvalidCredentialsException: "InvalidCredentialsException";
|
|
6197
|
+
readonly InvalidInputException: "InvalidInputException";
|
|
6037
6198
|
readonly InvalidResponseException: "InvalidResponseException";
|
|
6038
6199
|
readonly OperationNotSupportedException: "OperationNotSupportedException";
|
|
6039
6200
|
readonly OperationTimeoutException: "OperationTimeoutException";
|
|
6201
|
+
readonly PartialFailureException: "PartialFailureException";
|
|
6040
6202
|
readonly ThrottlingException: "ThrottlingException";
|
|
6041
6203
|
};
|
|
6042
6204
|
/**
|
|
@@ -6798,8 +6960,6 @@ export interface JobRun {
|
|
|
6798
6960
|
/**
|
|
6799
6961
|
* <p>The <code>JobRun</code> timeout in minutes. This is the maximum time that a job run can
|
|
6800
6962
|
* consume resources before it is terminated and enters <code>TIMEOUT</code> status. This value overrides the timeout value set in the parent job.</p>
|
|
6801
|
-
* <p>The maximum value for timeout for batch jobs is 7 days or 10080 minutes. The default is 2880 minutes (48 hours) for batch jobs.</p>
|
|
6802
|
-
* <p>Any existing Glue jobs that have a greater timeout value are defaulted to 7 days. For instance you have specified a timeout of 20 days for a batch job, it will be stopped on the 7th day.</p>
|
|
6803
6963
|
* <p>Streaming jobs must have timeout values less than 7 days or 10080 minutes. When the value is left blank, the job will be restarted after 7 days based if you have not setup a maintenance window. If you have setup maintenance window, it will be restarted during the maintenance window after 7 days.</p>
|
|
6804
6964
|
* @public
|
|
6805
6965
|
*/
|
|
@@ -7743,343 +7903,3 @@ export interface CreateClassifierRequest {
|
|
|
7743
7903
|
*/
|
|
7744
7904
|
export interface CreateClassifierResponse {
|
|
7745
7905
|
}
|
|
7746
|
-
/**
|
|
7747
|
-
* @public
|
|
7748
|
-
* @enum
|
|
7749
|
-
*/
|
|
7750
|
-
export declare const ConnectionPropertyKey: {
|
|
7751
|
-
readonly CONFIG_FILES: "CONFIG_FILES";
|
|
7752
|
-
readonly CONNECTION_URL: "CONNECTION_URL";
|
|
7753
|
-
readonly CONNECTOR_CLASS_NAME: "CONNECTOR_CLASS_NAME";
|
|
7754
|
-
readonly CONNECTOR_TYPE: "CONNECTOR_TYPE";
|
|
7755
|
-
readonly CONNECTOR_URL: "CONNECTOR_URL";
|
|
7756
|
-
readonly CUSTOM_JDBC_CERT: "CUSTOM_JDBC_CERT";
|
|
7757
|
-
readonly CUSTOM_JDBC_CERT_STRING: "CUSTOM_JDBC_CERT_STRING";
|
|
7758
|
-
readonly ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD: "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD";
|
|
7759
|
-
readonly ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD: "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD";
|
|
7760
|
-
readonly ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD: "ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD";
|
|
7761
|
-
readonly ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD: "ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD";
|
|
7762
|
-
readonly ENCRYPTED_PASSWORD: "ENCRYPTED_PASSWORD";
|
|
7763
|
-
readonly HOST: "HOST";
|
|
7764
|
-
readonly INSTANCE_ID: "INSTANCE_ID";
|
|
7765
|
-
readonly JDBC_CONNECTION_URL: "JDBC_CONNECTION_URL";
|
|
7766
|
-
readonly JDBC_DRIVER_CLASS_NAME: "JDBC_DRIVER_CLASS_NAME";
|
|
7767
|
-
readonly JDBC_DRIVER_JAR_URI: "JDBC_DRIVER_JAR_URI";
|
|
7768
|
-
readonly JDBC_ENFORCE_SSL: "JDBC_ENFORCE_SSL";
|
|
7769
|
-
readonly JDBC_ENGINE: "JDBC_ENGINE";
|
|
7770
|
-
readonly JDBC_ENGINE_VERSION: "JDBC_ENGINE_VERSION";
|
|
7771
|
-
readonly KAFKA_BOOTSTRAP_SERVERS: "KAFKA_BOOTSTRAP_SERVERS";
|
|
7772
|
-
readonly KAFKA_CLIENT_KEYSTORE: "KAFKA_CLIENT_KEYSTORE";
|
|
7773
|
-
readonly KAFKA_CLIENT_KEYSTORE_PASSWORD: "KAFKA_CLIENT_KEYSTORE_PASSWORD";
|
|
7774
|
-
readonly KAFKA_CLIENT_KEY_PASSWORD: "KAFKA_CLIENT_KEY_PASSWORD";
|
|
7775
|
-
readonly KAFKA_CUSTOM_CERT: "KAFKA_CUSTOM_CERT";
|
|
7776
|
-
readonly KAFKA_SASL_GSSAPI_KEYTAB: "KAFKA_SASL_GSSAPI_KEYTAB";
|
|
7777
|
-
readonly KAFKA_SASL_GSSAPI_KRB5_CONF: "KAFKA_SASL_GSSAPI_KRB5_CONF";
|
|
7778
|
-
readonly KAFKA_SASL_GSSAPI_PRINCIPAL: "KAFKA_SASL_GSSAPI_PRINCIPAL";
|
|
7779
|
-
readonly KAFKA_SASL_GSSAPI_SERVICE: "KAFKA_SASL_GSSAPI_SERVICE";
|
|
7780
|
-
readonly KAFKA_SASL_MECHANISM: "KAFKA_SASL_MECHANISM";
|
|
7781
|
-
readonly KAFKA_SASL_PLAIN_PASSWORD: "KAFKA_SASL_PLAIN_PASSWORD";
|
|
7782
|
-
readonly KAFKA_SASL_PLAIN_USERNAME: "KAFKA_SASL_PLAIN_USERNAME";
|
|
7783
|
-
readonly KAFKA_SASL_SCRAM_PASSWORD: "KAFKA_SASL_SCRAM_PASSWORD";
|
|
7784
|
-
readonly KAFKA_SASL_SCRAM_SECRETS_ARN: "KAFKA_SASL_SCRAM_SECRETS_ARN";
|
|
7785
|
-
readonly KAFKA_SASL_SCRAM_USERNAME: "KAFKA_SASL_SCRAM_USERNAME";
|
|
7786
|
-
readonly KAFKA_SKIP_CUSTOM_CERT_VALIDATION: "KAFKA_SKIP_CUSTOM_CERT_VALIDATION";
|
|
7787
|
-
readonly KAFKA_SSL_ENABLED: "KAFKA_SSL_ENABLED";
|
|
7788
|
-
readonly PASSWORD: "PASSWORD";
|
|
7789
|
-
readonly PORT: "PORT";
|
|
7790
|
-
readonly SECRET_ID: "SECRET_ID";
|
|
7791
|
-
readonly SKIP_CUSTOM_JDBC_CERT_VALIDATION: "SKIP_CUSTOM_JDBC_CERT_VALIDATION";
|
|
7792
|
-
readonly USER_NAME: "USERNAME";
|
|
7793
|
-
};
|
|
7794
|
-
/**
|
|
7795
|
-
* @public
|
|
7796
|
-
*/
|
|
7797
|
-
export type ConnectionPropertyKey = (typeof ConnectionPropertyKey)[keyof typeof ConnectionPropertyKey];
|
|
7798
|
-
/**
|
|
7799
|
-
* @public
|
|
7800
|
-
* @enum
|
|
7801
|
-
*/
|
|
7802
|
-
export declare const ConnectionType: {
|
|
7803
|
-
readonly CUSTOM: "CUSTOM";
|
|
7804
|
-
readonly JDBC: "JDBC";
|
|
7805
|
-
readonly KAFKA: "KAFKA";
|
|
7806
|
-
readonly MARKETPLACE: "MARKETPLACE";
|
|
7807
|
-
readonly MONGODB: "MONGODB";
|
|
7808
|
-
readonly NETWORK: "NETWORK";
|
|
7809
|
-
readonly SFTP: "SFTP";
|
|
7810
|
-
};
|
|
7811
|
-
/**
|
|
7812
|
-
* @public
|
|
7813
|
-
*/
|
|
7814
|
-
export type ConnectionType = (typeof ConnectionType)[keyof typeof ConnectionType];
|
|
7815
|
-
/**
|
|
7816
|
-
* <p>Specifies the physical requirements for a connection.</p>
|
|
7817
|
-
* @public
|
|
7818
|
-
*/
|
|
7819
|
-
export interface PhysicalConnectionRequirements {
|
|
7820
|
-
/**
|
|
7821
|
-
* <p>The subnet ID used by the connection.</p>
|
|
7822
|
-
* @public
|
|
7823
|
-
*/
|
|
7824
|
-
SubnetId?: string;
|
|
7825
|
-
/**
|
|
7826
|
-
* <p>The security group ID list used by the connection.</p>
|
|
7827
|
-
* @public
|
|
7828
|
-
*/
|
|
7829
|
-
SecurityGroupIdList?: string[];
|
|
7830
|
-
/**
|
|
7831
|
-
* <p>The connection's Availability Zone. This field is redundant because the specified subnet
|
|
7832
|
-
* implies the Availability Zone to be used. Currently the field must be populated, but it will
|
|
7833
|
-
* be deprecated in the future.</p>
|
|
7834
|
-
* @public
|
|
7835
|
-
*/
|
|
7836
|
-
AvailabilityZone?: string;
|
|
7837
|
-
}
|
|
7838
|
-
/**
|
|
7839
|
-
* <p>A structure that is used to specify a connection to create or update.</p>
|
|
7840
|
-
* @public
|
|
7841
|
-
*/
|
|
7842
|
-
export interface ConnectionInput {
|
|
7843
|
-
/**
|
|
7844
|
-
* <p>The name of the connection. Connection will not function as expected without a name.</p>
|
|
7845
|
-
* @public
|
|
7846
|
-
*/
|
|
7847
|
-
Name: string | undefined;
|
|
7848
|
-
/**
|
|
7849
|
-
* <p>The description of the connection.</p>
|
|
7850
|
-
* @public
|
|
7851
|
-
*/
|
|
7852
|
-
Description?: string;
|
|
7853
|
-
/**
|
|
7854
|
-
* <p>The type of the connection. Currently, these types are supported:</p>
|
|
7855
|
-
* <ul>
|
|
7856
|
-
* <li>
|
|
7857
|
-
* <p>
|
|
7858
|
-
* <code>JDBC</code> - Designates a connection to a database through Java Database Connectivity (JDBC).</p>
|
|
7859
|
-
* <p>
|
|
7860
|
-
* <code>JDBC</code> Connections use the following ConnectionParameters.</p>
|
|
7861
|
-
* <ul>
|
|
7862
|
-
* <li>
|
|
7863
|
-
* <p>Required: All of (<code>HOST</code>, <code>PORT</code>, <code>JDBC_ENGINE</code>) or <code>JDBC_CONNECTION_URL</code>.</p>
|
|
7864
|
-
* </li>
|
|
7865
|
-
* <li>
|
|
7866
|
-
* <p>Required: All of (<code>USERNAME</code>, <code>PASSWORD</code>) or <code>SECRET_ID</code>.</p>
|
|
7867
|
-
* </li>
|
|
7868
|
-
* <li>
|
|
7869
|
-
* <p>Optional: <code>JDBC_ENFORCE_SSL</code>, <code>CUSTOM_JDBC_CERT</code>, <code>CUSTOM_JDBC_CERT_STRING</code>, <code>SKIP_CUSTOM_JDBC_CERT_VALIDATION</code>. These parameters are used to configure SSL with JDBC.</p>
|
|
7870
|
-
* </li>
|
|
7871
|
-
* </ul>
|
|
7872
|
-
* </li>
|
|
7873
|
-
* <li>
|
|
7874
|
-
* <p>
|
|
7875
|
-
* <code>KAFKA</code> - Designates a connection to an Apache Kafka streaming platform.</p>
|
|
7876
|
-
* <p>
|
|
7877
|
-
* <code>KAFKA</code> Connections use the following ConnectionParameters.</p>
|
|
7878
|
-
* <ul>
|
|
7879
|
-
* <li>
|
|
7880
|
-
* <p>Required: <code>KAFKA_BOOTSTRAP_SERVERS</code>.</p>
|
|
7881
|
-
* </li>
|
|
7882
|
-
* <li>
|
|
7883
|
-
* <p>Optional: <code>KAFKA_SSL_ENABLED</code>, <code>KAFKA_CUSTOM_CERT</code>, <code>KAFKA_SKIP_CUSTOM_CERT_VALIDATION</code>. These parameters are used to configure SSL with <code>KAFKA</code>.</p>
|
|
7884
|
-
* </li>
|
|
7885
|
-
* <li>
|
|
7886
|
-
* <p>Optional: <code>KAFKA_CLIENT_KEYSTORE</code>, <code>KAFKA_CLIENT_KEYSTORE_PASSWORD</code>, <code>KAFKA_CLIENT_KEY_PASSWORD</code>, <code>ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD</code>, <code>ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD</code>. These parameters are used to configure TLS client configuration with SSL in <code>KAFKA</code>.</p>
|
|
7887
|
-
* </li>
|
|
7888
|
-
* <li>
|
|
7889
|
-
* <p>Optional: <code>KAFKA_SASL_MECHANISM</code>. Can be specified as <code>SCRAM-SHA-512</code>, <code>GSSAPI</code>, or <code>AWS_MSK_IAM</code>.</p>
|
|
7890
|
-
* </li>
|
|
7891
|
-
* <li>
|
|
7892
|
-
* <p>Optional: <code>KAFKA_SASL_SCRAM_USERNAME</code>, <code>KAFKA_SASL_SCRAM_PASSWORD</code>, <code>ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD</code>. These parameters are used to configure SASL/SCRAM-SHA-512 authentication with <code>KAFKA</code>.</p>
|
|
7893
|
-
* </li>
|
|
7894
|
-
* <li>
|
|
7895
|
-
* <p>Optional: <code>KAFKA_SASL_GSSAPI_KEYTAB</code>, <code>KAFKA_SASL_GSSAPI_KRB5_CONF</code>, <code>KAFKA_SASL_GSSAPI_SERVICE</code>, <code>KAFKA_SASL_GSSAPI_PRINCIPAL</code>. These parameters are used to configure SASL/GSSAPI authentication with <code>KAFKA</code>.</p>
|
|
7896
|
-
* </li>
|
|
7897
|
-
* </ul>
|
|
7898
|
-
* </li>
|
|
7899
|
-
* <li>
|
|
7900
|
-
* <p>
|
|
7901
|
-
* <code>MONGODB</code> - Designates a connection to a MongoDB document database.</p>
|
|
7902
|
-
* <p>
|
|
7903
|
-
* <code>MONGODB</code> Connections use the following ConnectionParameters.</p>
|
|
7904
|
-
* <ul>
|
|
7905
|
-
* <li>
|
|
7906
|
-
* <p>Required: <code>CONNECTION_URL</code>.</p>
|
|
7907
|
-
* </li>
|
|
7908
|
-
* <li>
|
|
7909
|
-
* <p>Required: All of (<code>USERNAME</code>, <code>PASSWORD</code>) or <code>SECRET_ID</code>.</p>
|
|
7910
|
-
* </li>
|
|
7911
|
-
* </ul>
|
|
7912
|
-
* </li>
|
|
7913
|
-
* <li>
|
|
7914
|
-
* <p>
|
|
7915
|
-
* <code>NETWORK</code> - Designates a network connection to a data source within an Amazon Virtual Private Cloud environment (Amazon VPC).</p>
|
|
7916
|
-
* <p>
|
|
7917
|
-
* <code>NETWORK</code> Connections do not require ConnectionParameters. Instead, provide a PhysicalConnectionRequirements.</p>
|
|
7918
|
-
* </li>
|
|
7919
|
-
* <li>
|
|
7920
|
-
* <p>
|
|
7921
|
-
* <code>MARKETPLACE</code> - Uses configuration settings contained in a connector purchased from Amazon Web Services Marketplace to read from and write to data stores that are not natively supported by Glue.</p>
|
|
7922
|
-
* <p>
|
|
7923
|
-
* <code>MARKETPLACE</code> Connections use the following ConnectionParameters.</p>
|
|
7924
|
-
* <ul>
|
|
7925
|
-
* <li>
|
|
7926
|
-
* <p>Required: <code>CONNECTOR_TYPE</code>, <code>CONNECTOR_URL</code>, <code>CONNECTOR_CLASS_NAME</code>, <code>CONNECTION_URL</code>.</p>
|
|
7927
|
-
* </li>
|
|
7928
|
-
* <li>
|
|
7929
|
-
* <p>Required for <code>JDBC</code>
|
|
7930
|
-
* <code>CONNECTOR_TYPE</code> connections: All of (<code>USERNAME</code>, <code>PASSWORD</code>) or <code>SECRET_ID</code>.</p>
|
|
7931
|
-
* </li>
|
|
7932
|
-
* </ul>
|
|
7933
|
-
* </li>
|
|
7934
|
-
* <li>
|
|
7935
|
-
* <p>
|
|
7936
|
-
* <code>CUSTOM</code> - Uses configuration settings contained in a custom connector to read from and write to data stores that are not natively supported by Glue.</p>
|
|
7937
|
-
* </li>
|
|
7938
|
-
* </ul>
|
|
7939
|
-
* <p>
|
|
7940
|
-
* <code>SFTP</code> is not supported.</p>
|
|
7941
|
-
* <p>For more information about how optional ConnectionProperties are used to configure features in Glue, consult <a href="https://docs.aws.amazon.com/glue/latest/dg/connection-defining.html">Glue connection properties</a>.</p>
|
|
7942
|
-
* <p>For more information about how optional ConnectionProperties are used to configure features in Glue Studio, consult <a href="https://docs.aws.amazon.com/glue/latest/ug/connectors-chapter.html">Using connectors and connections</a>.</p>
|
|
7943
|
-
* @public
|
|
7944
|
-
*/
|
|
7945
|
-
ConnectionType: ConnectionType | undefined;
|
|
7946
|
-
/**
|
|
7947
|
-
* <p>A list of criteria that can be used in selecting this connection.</p>
|
|
7948
|
-
* @public
|
|
7949
|
-
*/
|
|
7950
|
-
MatchCriteria?: string[];
|
|
7951
|
-
/**
|
|
7952
|
-
* <p>These key-value pairs define parameters for the connection.</p>
|
|
7953
|
-
* @public
|
|
7954
|
-
*/
|
|
7955
|
-
ConnectionProperties: Partial<Record<ConnectionPropertyKey, string>> | undefined;
|
|
7956
|
-
/**
|
|
7957
|
-
* <p>A map of physical connection requirements, such as virtual private cloud (VPC) and
|
|
7958
|
-
* <code>SecurityGroup</code>, that are needed to successfully make this connection.</p>
|
|
7959
|
-
* @public
|
|
7960
|
-
*/
|
|
7961
|
-
PhysicalConnectionRequirements?: PhysicalConnectionRequirements;
|
|
7962
|
-
}
|
|
7963
|
-
/**
|
|
7964
|
-
* @public
|
|
7965
|
-
*/
|
|
7966
|
-
export interface CreateConnectionRequest {
|
|
7967
|
-
/**
|
|
7968
|
-
* <p>The ID of the Data Catalog in which to create the connection. If none is provided, the Amazon Web Services
|
|
7969
|
-
* account ID is used by default.</p>
|
|
7970
|
-
* @public
|
|
7971
|
-
*/
|
|
7972
|
-
CatalogId?: string;
|
|
7973
|
-
/**
|
|
7974
|
-
* <p>A <code>ConnectionInput</code> object defining the connection
|
|
7975
|
-
* to create.</p>
|
|
7976
|
-
* @public
|
|
7977
|
-
*/
|
|
7978
|
-
ConnectionInput: ConnectionInput | undefined;
|
|
7979
|
-
/**
|
|
7980
|
-
* <p>The tags you assign to the connection.</p>
|
|
7981
|
-
* @public
|
|
7982
|
-
*/
|
|
7983
|
-
Tags?: Record<string, string>;
|
|
7984
|
-
}
|
|
7985
|
-
/**
|
|
7986
|
-
* @public
|
|
7987
|
-
*/
|
|
7988
|
-
export interface CreateConnectionResponse {
|
|
7989
|
-
}
|
|
7990
|
-
/**
|
|
7991
|
-
* @public
|
|
7992
|
-
*/
|
|
7993
|
-
export interface CreateCrawlerRequest {
|
|
7994
|
-
/**
|
|
7995
|
-
* <p>Name of the new crawler.</p>
|
|
7996
|
-
* @public
|
|
7997
|
-
*/
|
|
7998
|
-
Name: string | undefined;
|
|
7999
|
-
/**
|
|
8000
|
-
* <p>The IAM role or Amazon Resource Name (ARN) of an IAM role used by the new crawler to
|
|
8001
|
-
* access customer resources.</p>
|
|
8002
|
-
* @public
|
|
8003
|
-
*/
|
|
8004
|
-
Role: string | undefined;
|
|
8005
|
-
/**
|
|
8006
|
-
* <p>The Glue database where results are written, such as:
|
|
8007
|
-
* <code>arn:aws:daylight:us-east-1::database/sometable/*</code>.</p>
|
|
8008
|
-
* @public
|
|
8009
|
-
*/
|
|
8010
|
-
DatabaseName?: string;
|
|
8011
|
-
/**
|
|
8012
|
-
* <p>A description of the new crawler.</p>
|
|
8013
|
-
* @public
|
|
8014
|
-
*/
|
|
8015
|
-
Description?: string;
|
|
8016
|
-
/**
|
|
8017
|
-
* <p>A list of collection of targets to crawl.</p>
|
|
8018
|
-
* @public
|
|
8019
|
-
*/
|
|
8020
|
-
Targets: CrawlerTargets | undefined;
|
|
8021
|
-
/**
|
|
8022
|
-
* <p>A <code>cron</code> expression used to specify the schedule (see <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html">Time-Based Schedules for Jobs and Crawlers</a>. For example, to run
|
|
8023
|
-
* something every day at 12:15 UTC, you would specify:
|
|
8024
|
-
* <code>cron(15 12 * * ? *)</code>.</p>
|
|
8025
|
-
* @public
|
|
8026
|
-
*/
|
|
8027
|
-
Schedule?: string;
|
|
8028
|
-
/**
|
|
8029
|
-
* <p>A list of custom classifiers that the user has registered. By default, all built-in
|
|
8030
|
-
* classifiers are included in a crawl, but these custom classifiers always override the default
|
|
8031
|
-
* classifiers for a given classification.</p>
|
|
8032
|
-
* @public
|
|
8033
|
-
*/
|
|
8034
|
-
Classifiers?: string[];
|
|
8035
|
-
/**
|
|
8036
|
-
* <p>The table prefix used for catalog tables that are created.</p>
|
|
8037
|
-
* @public
|
|
8038
|
-
*/
|
|
8039
|
-
TablePrefix?: string;
|
|
8040
|
-
/**
|
|
8041
|
-
* <p>The policy for the crawler's update and deletion behavior.</p>
|
|
8042
|
-
* @public
|
|
8043
|
-
*/
|
|
8044
|
-
SchemaChangePolicy?: SchemaChangePolicy;
|
|
8045
|
-
/**
|
|
8046
|
-
* <p>A policy that specifies whether to crawl the entire dataset again, or to crawl only folders that were added since the last crawler run.</p>
|
|
8047
|
-
* @public
|
|
8048
|
-
*/
|
|
8049
|
-
RecrawlPolicy?: RecrawlPolicy;
|
|
8050
|
-
/**
|
|
8051
|
-
* <p>Specifies data lineage configuration settings for the crawler.</p>
|
|
8052
|
-
* @public
|
|
8053
|
-
*/
|
|
8054
|
-
LineageConfiguration?: LineageConfiguration;
|
|
8055
|
-
/**
|
|
8056
|
-
* <p>Specifies Lake Formation configuration settings for the crawler.</p>
|
|
8057
|
-
* @public
|
|
8058
|
-
*/
|
|
8059
|
-
LakeFormationConfiguration?: LakeFormationConfiguration;
|
|
8060
|
-
/**
|
|
8061
|
-
* <p>Crawler configuration information. This versioned JSON
|
|
8062
|
-
* string allows users to specify aspects of a crawler's behavior.
|
|
8063
|
-
* For more information, see <a href="https://docs.aws.amazon.com/glue/latest/dg/crawler-configuration.html">Setting crawler configuration options</a>.</p>
|
|
8064
|
-
* @public
|
|
8065
|
-
*/
|
|
8066
|
-
Configuration?: string;
|
|
8067
|
-
/**
|
|
8068
|
-
* <p>The name of the <code>SecurityConfiguration</code> structure to be used by this
|
|
8069
|
-
* crawler.</p>
|
|
8070
|
-
* @public
|
|
8071
|
-
*/
|
|
8072
|
-
CrawlerSecurityConfiguration?: string;
|
|
8073
|
-
/**
|
|
8074
|
-
* <p>The tags to use with this crawler request. You may use tags to limit access to the
|
|
8075
|
-
* crawler. For more information about tags in Glue, see <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-tags.html">Amazon Web Services Tags in Glue</a> in the developer
|
|
8076
|
-
* guide.</p>
|
|
8077
|
-
* @public
|
|
8078
|
-
*/
|
|
8079
|
-
Tags?: Record<string, string>;
|
|
8080
|
-
}
|
|
8081
|
-
/**
|
|
8082
|
-
* @public
|
|
8083
|
-
*/
|
|
8084
|
-
export interface CreateCrawlerResponse {
|
|
8085
|
-
}
|