Module Values.SigningRuleSource

A signing rule that specifies a signing profile and optional repository filters. When an image is pushed to a matching repository, a signing job is created using the specified profile.

Sourcetype nonrec t = {
  1. signingProfileArn : SigningProfileArn.t;
    (*

    The ARN of the Amazon Web Services Signer signing profile to use for signing images that match this rule. For more information about signing profiles, see Signing profiles in the Amazon Web Services Signer Developer Guide.

    *)
  2. repositoryFilters : SigningRepositoryFilterList.t option;
    (*

    A list of repository filters that determine which repositories have their images signed on push. If no filters are specified, all images pushed to the registry are signed using the rule's signing profile. Maximum of 100 filters per rule.

    *)
}
Sourceval context_ : string
Sourceval make : ?repositoryFilters:??? -> signingProfileArn:SigningProfileArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of SigningRepositoryFilterValue.t ]) list ] list | `String of SigningProfileArn.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