Interface CfnComponentVersion.ComponentDependencyRequirementProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnComponentVersion.ComponentDependencyRequirementProperty.Jsii$Proxy
Enclosing class:
CfnComponentVersion

@Stability(Stable) public static interface CfnComponentVersion.ComponentDependencyRequirementProperty extends software.amazon.jsii.JsiiSerializable
Contains information about a component dependency for a Lambda function component.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.greengrassv2.*;
 ComponentDependencyRequirementProperty componentDependencyRequirementProperty = ComponentDependencyRequirementProperty.builder()
         .dependencyType("dependencyType")
         .versionRequirement("versionRequirement")
         .build();