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 { ListIntegrationResourcePropertiesRequest, ListIntegrationResourcePropertiesResponse } from "../models/models_2"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListIntegrationResourcePropertiesCommand}. */ export interface ListIntegrationResourcePropertiesCommandInput extends ListIntegrationResourcePropertiesRequest { } /** * @public * * The output of {@link ListIntegrationResourcePropertiesCommand}. */ export interface ListIntegrationResourcePropertiesCommandOutput extends ListIntegrationResourcePropertiesResponse, __MetadataBearer { } declare const ListIntegrationResourcePropertiesCommand_base: { new (input: ListIntegrationResourcePropertiesCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListIntegrationResourcePropertiesCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

List integration resource properties for a single customer. It supports the filters, maxRecords and markers.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, ListIntegrationResourcePropertiesCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, ListIntegrationResourcePropertiesCommand } = 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 = { // ListIntegrationResourcePropertiesRequest * Marker: "STRING_VALUE", * Filters: [ // IntegrationResourcePropertyFilterList * { // IntegrationResourcePropertyFilter * Name: "STRING_VALUE", * Values: [ // IntegrationResourcePropertyFilterValues * "STRING_VALUE", * ], * }, * ], * MaxRecords: Number("int"), * }; * const command = new ListIntegrationResourcePropertiesCommand(input); * const response = await client.send(command); * // { // ListIntegrationResourcePropertiesResponse * // IntegrationResourcePropertyList: [ // IntegrationResourcePropertyList * // { // IntegrationResourceProperty * // ResourceArn: "STRING_VALUE", // required * // ResourcePropertyArn: "STRING_VALUE", * // SourceProcessingProperties: { // SourceProcessingProperties * // RoleArn: "STRING_VALUE", * // }, * // TargetProcessingProperties: { // TargetProcessingProperties * // RoleArn: "STRING_VALUE", * // KmsArn: "STRING_VALUE", * // ConnectionName: "STRING_VALUE", * // EventBusArn: "STRING_VALUE", * // }, * // }, * // ], * // Marker: "STRING_VALUE", * // }; * * ``` * * @param ListIntegrationResourcePropertiesCommandInput - {@link ListIntegrationResourcePropertiesCommandInput} * @returns {@link ListIntegrationResourcePropertiesCommandOutput} * @see {@link ListIntegrationResourcePropertiesCommandInput} for command's `input` shape. * @see {@link ListIntegrationResourcePropertiesCommandOutput} 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 EntityNotFoundException} (client fault) *

A specified entity does not exist

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

An internal server error occurred.

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

An internal service error occurred.

* * @throws {@link InvalidInputException} (client fault) *

The input provided was not valid.

* * @throws {@link ResourceNotFoundException} (client fault) *

The resource could not be found.

* * @throws {@link ValidationException} (client fault) *

A value could not be validated.

* * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class ListIntegrationResourcePropertiesCommand extends ListIntegrationResourcePropertiesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListIntegrationResourcePropertiesRequest; output: ListIntegrationResourcePropertiesResponse; }; sdk: { input: ListIntegrationResourcePropertiesCommandInput; output: ListIntegrationResourcePropertiesCommandOutput; }; }; }