import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::Kinesis::Stream */ export declare function getStream(args: GetStreamArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetStreamArgs { /** * The name of the Kinesis stream. */ name: string; } export interface GetStreamResult { /** * The Amazon resource name (ARN) of the Kinesis stream */ readonly arn?: string; /** * The final list of shard-level metrics */ readonly desiredShardLevelMetrics?: enums.kinesis.StreamEnhancedMetric[]; /** * Maximum size of a data record in KiB allowed to be put into Kinesis stream. */ readonly maxRecordSizeInKiB?: number; /** * The number of hours for the data records that are stored in shards to remain accessible. */ readonly retentionPeriodHours?: number; /** * The number of shards that the stream uses. Required when StreamMode = PROVISIONED is passed. */ readonly shardCount?: number; /** * When specified, enables or updates server-side encryption using an AWS KMS key for a specified stream. */ readonly streamEncryption?: outputs.kinesis.StreamEncryption; /** * The mode in which the stream is running. */ readonly streamModeDetails?: outputs.kinesis.StreamModeDetails; /** * An arbitrary set of tags (key-value pairs) to associate with the Kinesis stream. */ readonly tags?: outputs.Tag[]; /** * Warm throughput configuration details for the stream. Only present for ON_DEMAND streams. */ readonly warmThroughputObject?: outputs.kinesis.StreamWarmThroughputObject; } /** * Resource Type definition for AWS::Kinesis::Stream */ export declare function getStreamOutput(args: GetStreamOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetStreamOutputArgs { /** * The name of the Kinesis stream. */ name: pulumi.Input; }