// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: MIT-0 namespace csharp_example_extension { /// /// Enum to define all possible event types, so that we do not deal with strings in the rest of the code. /// public enum ExtensionEvent { INVOKE, SHUTDOWN, } }