Interface CfnComponentVersionPropsMixin.ComponentDependencyRequirementProperty

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

@Stability(Stable) public static interface CfnComponentVersionPropsMixin.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.cfnpropertymixins.services.greengrassv2.*;
 ComponentDependencyRequirementProperty componentDependencyRequirementProperty = ComponentDependencyRequirementProperty.builder()
         .dependencyType("dependencyType")
         .versionRequirement("versionRequirement")
         .build();
 

See Also: