Values.ComponentDependencyRequirementSourceContains information about a component dependency for a Lambda function component.
type nonrec t = {versionRequirement : NonEmptyString.t option;The component version requirement for the component dependency. IoT Greengrass V2 uses semantic version constraints. For more information, see Semantic Versioning.
*)dependencyType : ComponentDependencyType.t option;The type of this dependency. Choose from the following options: SOFT – The component doesn't restart if the dependency changes state. HARD – The component restarts if the dependency changes state. Default: HARD
*)}val to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of NonEmptyString.t ]) list ]