Module Values.KinesisTargetDefinitionSource

Kinesis stream target configuration.

Sourcetype nonrec t = {
  1. streamArn : KinesisStreamArn.t;
    (*

    The ARN of the Kinesis stream.

    *)
  2. roleArn : RoleArn.t;
    (*

    The ARN of the IAM role that grants permission to write to the Kinesis stream. This can be a standard role (arn:aws:iam::account-id:role/role-name) or a role with a path prefix (arn:aws:iam::account-id:role/service-role/role-name), such as roles auto-created by the console.

    *)
}
Sourceval context_ : string
Sourceval make : streamArn:KinesisStreamArn.t -> roleArn:RoleArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of KinesisStreamArn.t ]) 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