Module Values.S3ConfigurationSource

Configuration for Amazon S3 destination where scheduled query results are delivered.

Sourcetype nonrec t = {
  1. destinationIdentifier : S3Uri.t;
    (*

    The Amazon S3 URI where query results are delivered. Must be a valid S3 URI format.

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

    The ARN of the IAM role that grants permissions to write query results to the specified Amazon S3 destination.

    *)
  3. ownerAccountId : AccountId.t option;
    (*

    The Amazon Web Services accountId for the bucket owning account.

    *)
  4. kmsKeyId : KmsKeyId.t option;
    (*

    The Amazon Resource Name (ARN) of the KMS encryption key. Must belong to the same Amazon Web Services Region as the destination Amazon S3 bucket.

    *)
}
Sourceval context_ : string
Sourceval make : ?ownerAccountId:??? -> ?kmsKeyId:??? -> destinationIdentifier:S3Uri.t -> roleArn:RoleArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of S3Uri.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