Module Values.BucketSource

In terms of implementation, a Bucket is a resource.

Sourcetype nonrec t = {
  1. name : BucketName.t option;
    (*

    The name of the bucket.

    *)
  2. creationDate : CreationDate.t option;
    (*

    Date the bucket was created. This date can change when making changes to your bucket, such as editing its bucket policy.

    *)
  3. bucketRegion : BucketRegion.t option;
    (*

    BucketRegion indicates the Amazon Web Services region where the bucket is located. If the request contains at least one valid parameter, it is included in the response.

    *)
  4. bucketArn : S3RegionalOrS3ExpressBucketArnString.t option;
    (*

    The Amazon Resource Name (ARN) of the S3 bucket. ARNs uniquely identify Amazon Web Services resources across all of Amazon Web Services. This parameter is only supported for S3 directory buckets. For more information, see Using tags with directory buckets.

    *)
}
Sourceval make : ?name:??? -> ?creationDate:??? -> ?bucketRegion:??? -> ?bucketArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of BucketName.t | `Timestamp of CreationDate.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