Module Values_0.S3BucketConfigurationSource

An optional structure that contains the Amazon S3 bucket configuration that the generated snapshots are stored in. If you don't provide this information, generated snapshots are stored in the default Amazon Quick Sight bucket.

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

    The name of an existing Amazon S3 bucket where the generated snapshot artifacts are sent.

    *)
  2. bucketPrefix : NonEmptyString.t;
    (*

    The prefix of the Amazon S3 bucket that the generated snapshots are stored in.

    *)
  3. bucketRegion : NonEmptyString.t;
    (*

    The region that the Amazon S3 bucket is located in. The bucket must be located in the same region that the StartDashboardSnapshotJob API call is made.

    *)
}
Sourceval context_ : string
Sourceval make : bucketName:NonEmptyString.t -> bucketPrefix:NonEmptyString.t -> bucketRegion:NonEmptyString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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