Values.AwsKinesisStreamDetailsSourceProvides information about an Amazon Kinesis data stream.
type nonrec t = {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.
*)arn : NonEmptyString.t option;The Amazon Resource Name (ARN) of the Kinesis data stream.
*)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.
*)shardCount : Integer.t option;The number of shards that the stream uses.
*)retentionPeriodHours : Integer.t option;The number of hours for the data records that are stored in shards to remain accessible.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Integer of Integer.t
| `String of NonEmptyString.t
| `Structure of (string * [> `String of NonEmptyString.t ]) list ])
list ]