Module CodeArtifact.Repository

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-repository.html

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

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

type properties = {
  1. description : string option;
  2. permissions_policy_document : Yojson.Safe.t option;
  3. domain_name : string;
  4. upstreams : string list option;
  5. repository_name : string;
  6. external_connections : string list option;
  7. tags : tag list option;
  8. domain_owner : string option;
}

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

val make_properties : ?description:string -> ?permissions_policy_document:Yojson.Safe.t -> domain_name:string -> ?upstreams:string list -> repository_name:string -> ?external_connections:string list -> ?tags:tag list -> ?domain_owner:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
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. domain_name : string;
  3. arn : string;
  4. domain_owner : string;
  5. name : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string