Module Values.FunctionCodeLocationSource

Details about a function's deployment package.

Sourcetype nonrec t = {
  1. repositoryType : String_.t option;
    (*

    The service that's hosting the file.

    *)
  2. location : String_.t option;
    (*

    A presigned URL that you can use to download the deployment package.

    *)
  3. imageUri : String_.t option;
    (*

    URI of a container image in the Amazon ECR registry.

    *)
  4. resolvedImageUri : String_.t option;
    (*

    The resolved URI for the image.

    *)
  5. sourceKMSKeyArn : String_.t option;
    (*

    The ARN of the Key Management Service (KMS) customer managed key that's used to encrypt your function's .zip deployment package. If you don't provide a customer managed key, Lambda uses an Amazon Web Services owned key.

    *)
}
Sourceval make : ?repositoryType:??? -> ?location:??? -> ?imageUri:??? -> ?resolvedImageUri:??? -> ?sourceKMSKeyArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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