import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { ListRealtimeLogConfigsRequest, ListRealtimeLogConfigsResult } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListRealtimeLogConfigsCommand}. */ export interface ListRealtimeLogConfigsCommandInput extends ListRealtimeLogConfigsRequest { } /** * @public * * The output of {@link ListRealtimeLogConfigsCommand}. */ export interface ListRealtimeLogConfigsCommandOutput extends ListRealtimeLogConfigsResult, __MetadataBearer { } declare const ListRealtimeLogConfigsCommand_base: { new (input: ListRealtimeLogConfigsCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [ListRealtimeLogConfigsCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Gets a list of real-time log configurations.

You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent request.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CloudFrontClient, ListRealtimeLogConfigsCommand } from "@aws-sdk/client-cloudfront"; // ES Modules import * // const { CloudFrontClient, ListRealtimeLogConfigsCommand } = require("@aws-sdk/client-cloudfront"); // CommonJS import * const client = new CloudFrontClient(config); * const input = { // ListRealtimeLogConfigsRequest * MaxItems: Number("int"), * Marker: "STRING_VALUE", * }; * const command = new ListRealtimeLogConfigsCommand(input); * const response = await client.send(command); * // { // ListRealtimeLogConfigsResult * // RealtimeLogConfigs: { // RealtimeLogConfigs * // MaxItems: Number("int"), // required * // Items: [ // RealtimeLogConfigList * // { // RealtimeLogConfig * // ARN: "STRING_VALUE", // required * // Name: "STRING_VALUE", // required * // SamplingRate: Number("long"), // required * // EndPoints: [ // EndPointList // required * // { // EndPoint * // StreamType: "STRING_VALUE", // required * // KinesisStreamConfig: { // KinesisStreamConfig * // RoleARN: "STRING_VALUE", // required * // StreamARN: "STRING_VALUE", // required * // }, * // }, * // ], * // Fields: [ // FieldList // required * // "STRING_VALUE", * // ], * // }, * // ], * // IsTruncated: true || false, // required * // Marker: "STRING_VALUE", // required * // NextMarker: "STRING_VALUE", * // }, * // }; * * ``` * * @param ListRealtimeLogConfigsCommandInput - {@link ListRealtimeLogConfigsCommandInput} * @returns {@link ListRealtimeLogConfigsCommandOutput} * @see {@link ListRealtimeLogConfigsCommandInput} for command's `input` shape. * @see {@link ListRealtimeLogConfigsCommandOutput} for command's `response` shape. * @see {@link CloudFrontClientResolvedConfig | config} for CloudFrontClient's `config` shape. * * @throws {@link AccessDenied} (client fault) *

Access denied.

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

An argument is invalid.

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

The real-time log configuration does not exist.

* * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* * * @public */ export declare class ListRealtimeLogConfigsCommand extends ListRealtimeLogConfigsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListRealtimeLogConfigsRequest; output: ListRealtimeLogConfigsResult; }; sdk: { input: ListRealtimeLogConfigsCommandInput; output: ListRealtimeLogConfigsCommandOutput; }; }; }