Runtime/Core/BucketManagement/Models/BucketPolicy.cs (9 lines of code) (raw):

// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 namespace AmazonGameLiftPlugin.Core.BucketManagement.Models { public enum BucketPolicy { None, SevenDaysLifecycle = 7, ThirtyDaysLifecycle = 30 } }