Module Values.PullThroughCacheRuleSource

The details of a pull through cache rule.

Sourcetype nonrec t = {
  1. ecrRepositoryPrefix : PullThroughCacheRuleRepositoryPrefix.t option;
    (*

    The Amazon ECR repository prefix associated with the pull through cache rule.

    *)
  2. upstreamRegistryUrl : Url.t option;
    (*

    The upstream registry URL associated with the pull through cache rule.

    *)
  3. createdAt : CreationTimestamp.t option;
    (*

    The date and time the pull through cache was created.

    *)
  4. registryId : RegistryId.t option;
    (*

    The Amazon Web Services account ID associated with the registry the pull through cache rule is associated with.

    *)
  5. credentialArn : CredentialArn.t option;
    (*

    The ARN of the Secrets Manager secret associated with the pull through cache rule.

    *)
  6. customRoleArn : CustomRoleArn.t option;
    (*

    The ARN of the IAM role associated with the pull through cache rule.

    *)
  7. upstreamRepositoryPrefix : PullThroughCacheRuleRepositoryPrefix.t option;
    (*

    The upstream repository prefix associated with the pull through cache rule.

    *)
  8. upstreamRegistry : UpstreamRegistry.t option;
    (*

    The name of the upstream source registry associated with the pull through cache rule.

    *)
  9. updatedAt : UpdatedTimestamp.t option;
    (*

    The date and time, in JavaScript date format, when the pull through cache rule was last updated.

    *)
}
Sourceval make : ?ecrRepositoryPrefix:??? -> ?upstreamRegistryUrl:??? -> ?createdAt:??? -> ?registryId:??? -> ?credentialArn:??? -> ?customRoleArn:??? -> ?upstreamRepositoryPrefix:??? -> ?upstreamRegistry:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PullThroughCacheRuleRepositoryPrefix.t | `Timestamp of CreationTimestamp.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