Values.CreateStreamInputSourceCreates a new change data capture (CDC) stream for a cluster. The stream captures database changes and delivers them to the specified target destination. Required permissions dsql:CreateStream Permission to create a new stream. Resources: arn:aws:dsql:region:account-id:cluster/cluster-id iam:PassRole Permission to pass the IAM role specified in the target definition to the service. Resources: ARN of the IAM role specified in targetDefinition.kinesis.roleArn kms:Decrypt Required when the cluster uses a customer managed KMS key (CMK). Permission to decrypt data using the cluster's CMK. Resources: ARN of the KMS key used by the cluster
type nonrec t = {clusterIdentifier : ClusterId.t;The ID of the cluster for which to create the stream.
*)targetDefinition : TargetDefinition.t;The target destination configuration for the stream. Contains Kinesis stream configuration including stream ARN and IAM role ARN.
*)ordering : StreamOrdering.t;The ordering mode for the stream. Determines how change events are ordered when delivered to the target.
*)format : StreamFormat.t;The format of the stream records.
*)clientToken : ClientToken.t option;A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries with the same client token return the result from the original successful request and they have no additional effect. If you don't specify a client token, the Amazon Web Services SDK automatically generates one.
*)}val make :
?tags:??? ->
?clientToken:??? ->
clusterIdentifier:ClusterId.t ->
targetDefinition:TargetDefinition.t ->
ordering:StreamOrdering.t ->
format:StreamFormat.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of ClusterId.t
| `Structure of
(string
* [> `Structure of
(string * [> `String of KinesisStreamArn.t ]) list ])
list ])
list ]