Skip to content

Commit 4ad9dcc

Browse files
authored
.NET v3: AWS Support: Update supported languages. (#6349)
1 parent 1c7e81f commit 4ad9dcc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dotnetv3/Support/Actions/SupportWrapper.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public SupportWrapper(IAmazonAWSSupport amazonSupport)
2626
/// Get the descriptions of AWS services.
2727
/// </summary>
2828
/// <param name="name">Optional language for services.
29-
/// Currently "en" (English) and "ja" (Japanese) are supported.</param>
29+
/// Currently Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”) are supported.</param>
3030
/// <returns>The list of AWS service descriptions.</returns>
3131
public async Task<List<Service>> DescribeServices(string language = "en")
3232
{
@@ -46,7 +46,7 @@ public async Task<List<Service>> DescribeServices(string language = "en")
4646
/// Get the descriptions of support severity levels.
4747
/// </summary>
4848
/// <param name="name">Optional language for severity levels.
49-
/// Currently "en" (English) and "ja" (Japanese) are supported.</param>
49+
/// Currently Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”) are supported.</param>
5050
/// <returns>The list of support severity levels.</returns>
5151
public async Task<List<SeverityLevel>> DescribeSeverityLevels(string language = "en")
5252
{
@@ -71,7 +71,7 @@ public async Task<List<SeverityLevel>> DescribeSeverityLevels(string language =
7171
/// <param name="subject">Subject of the new case.</param>
7272
/// <param name="body">Body text of the new case.</param>
7373
/// <param name="language">Optional language support for your case.
74-
/// Currently "en" (English) and "ja" (Japanese) are supported.</param>
74+
/// Currently Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”) are supported.</param>
7575
/// <param name="attachmentSetId">Optional Id for an attachment set for the new case.</param>
7676
/// <param name="issueType">Optional issue type for the new case. Options are "customer-service" or "technical".</param>
7777
/// <returns>The caseId of the new support case.</returns>
@@ -210,7 +210,7 @@ public async Task<List<Communication>> DescribeCommunications(string caseId, Dat
210210
/// <param name="afterTime">The optional start date for a filtered search.</param>
211211
/// <param name="beforeTime">The optional end date for a filtered search.</param>
212212
/// <param name="language">Optional language support for your case.
213-
/// Currently "en" (English) and "ja" (Japanese) are supported.</param>
213+
/// Currently Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”) are supported.</param>
214214
/// <returns>A list of CaseDetails.</returns>
215215
public async Task<List<CaseDetails>> DescribeCases(List<string> caseIds, string? displayId = null, bool includeCommunication = true,
216216
bool includeResolvedCases = false, DateTime? afterTime = null, DateTime? beforeTime = null,

0 commit comments

Comments
 (0)