Module Values.CreatePackageGroupRequestSource

Creates a package group. For more information about creating package groups, including example CLI commands, see Create a package group in the CodeArtifact User Guide.

Sourcetype nonrec t = {
  1. domain : DomainName.t;
    (*

    The name of the domain in which you want to create a package group.

    *)
  2. domainOwner : AccountId.t option;
    (*

    The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.

    *)
  3. packageGroup : PackageGroupPattern.t;
    (*

    The pattern of the package group to create. The pattern is also the identifier of the package group.

    *)
  4. contactInfo : PackageGroupContactInfo.t option;
    (*

    The contact information for the created package group.

    *)
  5. description : Description.t option;
    (*

    A description of the package group.

    *)
  6. tags : TagList.t option;
    (*

    One or more tag key-value pairs for the package group.

    *)
}
Sourceval context_ : string
Sourceval make : ?domainOwner:??? -> ?contactInfo:??? -> ?description:??? -> ?tags:??? -> domain:DomainName.t -> packageGroup:PackageGroupPattern.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of DomainName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t