Module ECR.PublicRepository

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-publicrepository.html

type repository_catalog_data = {
  1. about_text : string option;
  2. operating_systems : string list option;
  3. usage_text : string option;
  4. repository_description : string option;
  5. architectures : string list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-publicrepository-repositorycatalogdata.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. repository_policy_text : Yojson.Safe.t option;
  2. repository_name : string option;
  3. repository_catalog_data : repository_catalog_data option;
  4. tags : tag list 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 -> properties
val make_repository_catalog_data : ?about_text:string -> ?operating_systems:string list -> ?usage_text:string -> ?repository_description:string -> ?architectures:string list -> unit -> repository_catalog_data
val make_tag : value:string -> key:string -> unit -> tag
val 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 ]
type attributes = {
  1. ref_ : string;
  2. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string