Module Lightsail.Bucket

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-bucket.html

type access_rules = {
  1. allow_public_overrides : bool option;
  2. get_object : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-bucket-accessrules.html

and tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

type properties = {
  1. object_versioning : bool option;
  2. read_only_access_accounts : string list option;
  3. bundle_id : string;
  4. bucket_name : string;
  5. access_rules : access_rules option;
  6. resources_receiving_access : string list option;
  7. tags : tag 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 ]
type attributes = {
  1. ref_ : string;
  2. bucket_arn : string;
  3. url : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string