import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; import type { ListConnectionTypesRequest, ListConnectionTypesResponse } from "../models/models_2"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListConnectionTypesCommand}. */ export interface ListConnectionTypesCommandInput extends ListConnectionTypesRequest { } /** * @public * * The output of {@link ListConnectionTypesCommand}. */ export interface ListConnectionTypesCommandOutput extends ListConnectionTypesResponse, __MetadataBearer { } declare const ListConnectionTypesCommand_base: { new (input: ListConnectionTypesCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListConnectionTypesCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

The ListConnectionTypes API provides a discovery mechanism to learn available connection types in Glue. The response contains a list of connection types with high-level details of what is supported for each connection type, including both built-in connection types and custom connection types registered via RegisterConnectionType. The connection types listed are the set of supported options for the ConnectionType value in the CreateConnection API.

*

See also: DescribeConnectionType, RegisterConnectionType, DeleteConnectionType *

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, ListConnectionTypesCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, ListConnectionTypesCommand } = require("@aws-sdk/client-glue"); // CommonJS import * // import type { GlueClientConfig } from "@aws-sdk/client-glue"; * const config = {}; // type is GlueClientConfig * const client = new GlueClient(config); * const input = { // ListConnectionTypesRequest * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new ListConnectionTypesCommand(input); * const response = await client.send(command); * // { // ListConnectionTypesResponse * // ConnectionTypes: [ // ConnectionTypeList * // { // ConnectionTypeBrief * // ConnectionType: "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" || "ADOBEANALYTICS" || "SLACK" || "LINKEDIN" || "MIXPANEL" || "ASANA" || "STRIPE" || "SMARTSHEET" || "DATADOG" || "WOOCOMMERCE" || "INTERCOM" || "SNAPCHATADS" || "PAYPAL" || "QUICKBOOKS" || "FACEBOOKPAGEINSIGHTS" || "FRESHDESK" || "TWILIO" || "DOCUSIGNMONITOR" || "FRESHSALES" || "ZOOM" || "GOOGLESEARCHCONSOLE" || "SALESFORCECOMMERCECLOUD" || "SAPCONCUR" || "DYNATRACE" || "MICROSOFTDYNAMIC365FINANCEANDOPS" || "MICROSOFTTEAMS" || "BLACKBAUDRAISEREDGENXT" || "MAILCHIMP" || "GITLAB" || "PENDO" || "PRODUCTBOARD" || "CIRCLECI" || "PIPEDIVE" || "SENDGRID" || "AZURECOSMOS" || "AZURESQL" || "BIGQUERY" || "BLACKBAUD" || "CLOUDERAHIVE" || "CLOUDERAIMPALA" || "CLOUDWATCH" || "CLOUDWATCHMETRICS" || "CMDB" || "DATALAKEGEN2" || "DB2" || "DB2AS400" || "DOCUMENTDB" || "DOMO" || "DYNAMODB" || "GOOGLECLOUDSTORAGE" || "HBASE" || "KUSTOMER" || "MICROSOFTDYNAMICS365CRM" || "MONDAY" || "MYSQL" || "OKTA" || "OPENSEARCH" || "ORACLE" || "PIPEDRIVE" || "POSTGRESQL" || "SAPHANA" || "SQLSERVER" || "SYNAPSE" || "TERADATA" || "TERADATANOS" || "TIMESTREAM" || "TPCDS" || "VERTICA", * // DisplayName: "STRING_VALUE", * // Vendor: "STRING_VALUE", * // Description: "STRING_VALUE", * // Categories: [ // ListOfString * // "STRING_VALUE", * // ], * // Capabilities: { // Capabilities * // SupportedAuthenticationTypes: [ // AuthenticationTypes // required * // "BASIC" || "OAUTH2" || "CUSTOM" || "IAM", * // ], * // SupportedDataOperations: [ // DataOperations // required * // "READ" || "WRITE", * // ], * // SupportedComputeEnvironments: [ // ComputeEnvironments // required * // "SPARK" || "ATHENA" || "PYTHON", * // ], * // }, * // LogoUrl: "STRING_VALUE", * // ConnectionTypeVariants: [ // ConnectionTypeVariantList * // { // ConnectionTypeVariant * // ConnectionTypeVariantName: "STRING_VALUE", * // DisplayName: "STRING_VALUE", * // Description: "STRING_VALUE", * // LogoUrl: "STRING_VALUE", * // }, * // ], * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListConnectionTypesCommandInput - {@link ListConnectionTypesCommandInput} * @returns {@link ListConnectionTypesCommandOutput} * @see {@link ListConnectionTypesCommandInput} for command's `input` shape. * @see {@link ListConnectionTypesCommandOutput} for command's `response` shape. * @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

Access to a resource was denied.

* * @throws {@link InternalServiceException} (server fault) *

An internal service error occurred.

* * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class ListConnectionTypesCommand extends ListConnectionTypesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListConnectionTypesRequest; output: ListConnectionTypesResponse; }; sdk: { input: ListConnectionTypesCommandInput; output: ListConnectionTypesCommandOutput; }; }; }