Lightsail.Bucket
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-bucket.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-bucket-accessrules.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
type properties = {
object_versioning : bool option;
read_only_access_accounts : string list option;
bundle_id : string;
bucket_name : string;
access_rules : access_rules option;
resources_receiving_access : string list option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-bucket.html;
val make_properties :
?object_versioning:bool ->
?read_only_access_accounts:string list ->
bundle_id:string ->
bucket_name:string ->
?access_rules:access_rules ->
?resources_receiving_access:string list ->
?tags:tag list ->
unit ->
properties
val make_access_rules :
?allow_public_overrides:bool ->
?get_object:string ->
unit ->
access_rules
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_access_rules :
access_rules ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val create_attributes : string -> attributes