Module S3.AccessGrant

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accessgrant.html

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

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

and access_grants_location_configuration = {
  1. s3_sub_prefix : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accessgrant-accessgrantslocationconfiguration.html

and grantee = {
  1. grantee_type : string;
  2. grantee_identifier : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accessgrant-grantee.html

type properties = {
  1. grantee : grantee;
  2. access_grants_location_configuration : access_grants_location_configuration option;
  3. application_arn : string option;
  4. permission : string;
  5. s3_prefix_type : string option;
  6. tags : tag list option;
  7. access_grants_location_id : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accessgrant.html;

val make_properties : grantee:grantee -> ?access_grants_location_configuration:access_grants_location_configuration -> ?application_arn:string -> permission:string -> ?s3_prefix_type:string -> ?tags:tag list -> access_grants_location_id:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_access_grants_location_configuration : s3_sub_prefix:string -> unit -> access_grants_location_configuration
val make_grantee : grantee_type:string -> grantee_identifier:string -> unit -> grantee
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_access_grants_location_configuration : access_grants_location_configuration -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_grantee : grantee -> [> `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. grant_scope : string;
  3. access_grant_id : string;
  4. access_grant_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string