// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
namespace AmazonGameLift.Editor
{
internal interface IBucketNameFormatter
{
/// For all arguments.
string FormatBucketName(string accountId, string region);
///
/// Removes all symbols except lowercase latin letters, digits and middle dashes. Can result in an empty string.
///
string FormatBucketKey(string value);
///
bool ValidateBucketKey(string value);
}
}