Module Values.LambdaTargetSource

Information about the target Lambda function during an Lambda deployment.

Sourcetype nonrec t = {
  1. deploymentId : DeploymentId.t option;
    (*

    The unique ID of a deployment.

    *)
  2. targetId : TargetId.t option;
    (*

    The unique ID of a deployment target that has a type of lambdaTarget.

    *)
  3. targetArn : TargetArn.t option;
    (*

    The Amazon Resource Name (ARN) of the target.

    *)
  4. status : TargetStatus.t option;
    (*

    The status an Lambda deployment's target Lambda function.

    *)
  5. lastUpdatedAt : Time.t option;
    (*

    The date and time when the target Lambda function was updated by a deployment.

    *)
  6. lifecycleEvents : LifecycleEventList.t option;
    (*

    The lifecycle events of the deployment to this target Lambda function.

    *)
  7. lambdaFunctionInfo : LambdaFunctionInfo.t option;
    (*

    A LambdaFunctionInfo object that describes a target Lambda function.

    *)
}
Sourceval make : ?deploymentId:??? -> ?targetId:??? -> ?targetArn:??? -> ?status:??? -> ?lastUpdatedAt:??? -> ?lifecycleEvents:??? -> ?lambdaFunctionInfo:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of LifecycleEventName.t | `Structure of (string * [> `Enum of string | `String of ScriptName.t ]) list | `Timestamp of Timestamp.t ]) list ] list | `String of DeploymentId.t | `Structure of (string * [> `Double of TrafficWeight.t | `String of LambdaFunctionName.t ]) list | `Timestamp of Time.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