Editor/DevStrings.cs (12 lines of code) (raw):
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
namespace AmazonGameLift.Editor
{
internal static class DevStrings
{
public const string BucketNameTooLong = "The bucket name is too long.";
public const string OperationInvalid = "There was a problem with the operation.";
public const string StringNullOrEmpty = "The string is null or empty.";
public const string ProfileInvalid = "The was a problem with the AWS profile.";
public const string RegionInvalid = "The was a problem with the AWS Region.";
public const string FailedToDescribeStackTemplate = "There was a problem refreshing stack status. {0}";
}
}