Module Values.AwsEcrRepositoryDetailsSource

Provides information about an Amazon Elastic Container Registry repository.

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

    The ARN of the repository.

    *)
  2. imageScanningConfiguration : AwsEcrRepositoryImageScanningConfigurationDetails.t option;
    (*

    The image scanning configuration for a repository.

    *)
  3. imageTagMutability : NonEmptyString.t option;
    (*

    The tag mutability setting for the repository. Valid values are IMMUTABLE or MUTABLE.

    *)
  4. lifecyclePolicy : AwsEcrRepositoryLifecyclePolicyDetails.t option;
    (*

    Information about the lifecycle policy for the repository.

    *)
  5. repositoryName : NonEmptyString.t option;
    (*

    The name of the repository.

    *)
  6. repositoryPolicyText : NonEmptyString.t option;
    (*

    The text of the repository policy.

    *)
}
Sourceval make : ?arn:??? -> ?imageScanningConfiguration:??? -> ?imageTagMutability:??? -> ?lifecyclePolicy:??? -> ?repositoryName:??? -> ?repositoryPolicyText:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `Boolean of Boolean.t | `String of NonEmptyString.t ]) list ]) 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