Module Values.AwsCodeBuildProjectEnvironmentRegistryCredentialSource

The credentials for access to a private registry.

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

    The ARN or name of credentials created using Secrets Manager. The credential can use the name of the credentials only if they exist in your current Amazon Web Services Region.

    *)
  2. credentialProvider : NonEmptyString.t option;
    (*

    The service that created the credentials to access a private Docker registry. The valid value, SECRETS_MANAGER, is for Secrets Manager.

    *)
}
Sourceval make : ?credential:??? -> ?credentialProvider:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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