import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetS3TableIntegrationInput, GetS3TableIntegrationOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetS3TableIntegrationCommand}. */ export interface GetS3TableIntegrationCommandInput extends GetS3TableIntegrationInput { } /** * @public * * The output of {@link GetS3TableIntegrationCommand}. */ export interface GetS3TableIntegrationCommandOutput extends GetS3TableIntegrationOutput, __MetadataBearer { } declare const GetS3TableIntegrationCommand_base: { new (input: GetS3TableIntegrationCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetS3TableIntegrationCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Retrieves information about a specific S3 Table integration, including its configuration, status, and metadata.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ObservabilityAdminClient, GetS3TableIntegrationCommand } from "@aws-sdk/client-observabilityadmin"; // ES Modules import * // const { ObservabilityAdminClient, GetS3TableIntegrationCommand } = require("@aws-sdk/client-observabilityadmin"); // CommonJS import * // import type { ObservabilityAdminClientConfig } from "@aws-sdk/client-observabilityadmin"; * const config = {}; // type is ObservabilityAdminClientConfig * const client = new ObservabilityAdminClient(config); * const input = { // GetS3TableIntegrationInput * Arn: "STRING_VALUE", // required * }; * const command = new GetS3TableIntegrationCommand(input); * const response = await client.send(command); * // { // GetS3TableIntegrationOutput * // Arn: "STRING_VALUE", * // RoleArn: "STRING_VALUE", * // Status: "ACTIVE" || "DELETING", * // Encryption: { // Encryption * // SseAlgorithm: "aws:kms" || "AES256", // required * // KmsKeyArn: "STRING_VALUE", * // }, * // DestinationTableBucketArn: "STRING_VALUE", * // CreatedTimeStamp: Number("long"), * // }; * * ``` * * @param GetS3TableIntegrationCommandInput - {@link GetS3TableIntegrationCommandInput} * @returns {@link GetS3TableIntegrationCommandOutput} * @see {@link GetS3TableIntegrationCommandInput} for command's `input` shape. * @see {@link GetS3TableIntegrationCommandOutput} for command's `response` shape. * @see {@link ObservabilityAdminClientResolvedConfig | config} for ObservabilityAdminClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

Indicates you don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access management for Amazon Web Services resources in the IAM user guide.

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

Indicates the request has failed to process because of an unknown server error, exception, or failure.

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

The specified resource (such as a telemetry rule) could not be found.

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

The request throughput limit was exceeded.

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

Indicates input validation failed. Check your request parameters and retry the request.

* * @throws {@link ObservabilityAdminServiceException} *

Base exception class for all service exceptions from ObservabilityAdmin service.

* * * @public */ export declare class GetS3TableIntegrationCommand extends GetS3TableIntegrationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetS3TableIntegrationInput; output: GetS3TableIntegrationOutput; }; sdk: { input: GetS3TableIntegrationCommandInput; output: GetS3TableIntegrationCommandOutput; }; }; }