Module Values.PackageGroupSummarySource

Details about a package group.

Sourcetype nonrec t = {
  1. arn : Arn.t option;
    (*

    The ARN of the package group.

    *)
  2. pattern : PackageGroupPattern.t option;
    (*

    The pattern of the package group. The pattern determines which packages are associated with the package group.

    *)
  3. domainName : DomainName.t option;
    (*

    The domain that contains the package group.

    *)
  4. 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.

    *)
  5. createdTime : Timestamp.t option;
    (*

    A timestamp that represents the date and time the repository was created.

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

    The contact information of the package group.

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

    The description of the package group.

    *)
  8. originConfiguration : PackageGroupOriginConfiguration.t option;
    (*

    Details about the package origin configuration of a package group.

    *)
  9. parent : PackageGroupReference.t option;
    (*

    The direct parent package group of the package group.

    *)
}
Sourceval make : ?arn:??? -> ?pattern:??? -> ?domainName:??? -> ?domainOwner:??? -> ?createdTime:??? -> ?contactInfo:??? -> ?description:??? -> ?originConfiguration:??? -> ?parent:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Arn.t | `Structure of (string * [> `Map of ([> `Enum of string ] * [> `Structure of (string * [> `Enum of string | `Long of LongOptional.t | `Structure of (string * [> `String of Arn.t ]) list ]) list ]) list | `String of Arn.t ]) list | `Timestamp of Timestamp.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