I'm creating a class that implements an interface found in aws-cdk library but my class is not being forced to implement the properties defined on the interface. I'm very confused about how this is even possible but would really like to find a solution to force my class to implement the interface. Any ideas?
namespace MyProject
{
/// <summary>
/// MyClass
/// </summary>
public class MyClass : Amazon.CDK.AWS.Lambda.IFunctionOptions
{
}
}