UNPKG

@aws-sdk/client-dynamodb

Version:

AWS SDK for JavaScript Dynamodb Client for Node.js, Browser and React Native

24 lines (23 loc) 1.69 kB
import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { KinesisStreamingDestinationInput, KinesisStreamingDestinationOutput } from "../models/models_0"; import { Command as $Command } from "@aws-sdk/smithy-client"; import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types"; export declare type EnableKinesisStreamingDestinationCommandInput = KinesisStreamingDestinationInput; export declare type EnableKinesisStreamingDestinationCommandOutput = KinesisStreamingDestinationOutput & __MetadataBearer; /** * <p>Starts table data replication to the specified Kinesis data stream at a timestamp chosen * during the enable workflow. If this operation doesn't return results immediately, use * DescribeKinesisStreamingDestination to check if streaming to the Kinesis data stream is * ACTIVE.</p> */ export declare class EnableKinesisStreamingDestinationCommand extends $Command<EnableKinesisStreamingDestinationCommandInput, EnableKinesisStreamingDestinationCommandOutput, DynamoDBClientResolvedConfig> { readonly input: EnableKinesisStreamingDestinationCommandInput; private resolved; constructor(input: EnableKinesisStreamingDestinationCommandInput); /** * @internal */ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DynamoDBClientResolvedConfig, options?: __HttpHandlerOptions): Handler<EnableKinesisStreamingDestinationCommandInput, EnableKinesisStreamingDestinationCommandOutput>; private serialize; private deserialize; }