Module Values.AwsKinesisStreamDetailsSource

Provides information about an Amazon Kinesis data stream.

Sourcetype nonrec t = {
  1. name : NonEmptyString.t option;
    (*

    The name of the Kinesis stream. If you don't specify a name, CloudFront generates a unique physical ID and uses that ID for the stream name.

    *)
  2. arn : NonEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) of the Kinesis data stream.

    *)
  3. streamEncryption : AwsKinesisStreamStreamEncryptionDetails.t option;
    (*

    When specified, enables or updates server-side encryption using an KMS key for a specified stream. Removing this property from your stack template and updating your stack disables encryption.

    *)
  4. shardCount : Integer.t option;
    (*

    The number of shards that the stream uses.

    *)
  5. retentionPeriodHours : Integer.t option;
    (*

    The number of hours for the data records that are stored in shards to remain accessible.

    *)
}
Sourceval make : ?name:??? -> ?arn:??? -> ?streamEncryption:??? -> ?shardCount:??? -> ?retentionPeriodHours:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of NonEmptyString.t | `Structure of (string * [> `String of NonEmptyString.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t