ECR.PublicRepositorysee http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-publicrepository.html
type repository_catalog_data = {about_text : string option;operating_systems : string list option;usage_text : string option;repository_description : string option;architectures : string list option;}see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-publicrepository-repositorycatalogdata.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
type properties = {repository_policy_text : Yojson.Safe.t option;repository_name : string option;repository_catalog_data : repository_catalog_data option;}see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-publicrepository.html;
val make_properties :
?repository_policy_text:Yojson.Safe.t ->
?repository_name:string ->
?repository_catalog_data:repository_catalog_data ->
?tags:tag list ->
unit ->
propertiesval make_repository_catalog_data :
?about_text:string ->
?operating_systems:string list ->
?usage_text:string ->
?repository_description:string ->
?architectures:string list ->
unit ->
repository_catalog_dataval make_tag : value:string -> key:string -> unit -> tagval yojson_of_repository_catalog_data :
repository_catalog_data ->
[> `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