Skip to content

Commit 792e6c5

Browse files
committed
Had to shorten these projects to satisfy the AWS naming length constraints of 127 chars
1 parent 623dd87 commit 792e6c5

File tree

99 files changed

+4048
-1437
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+4048
-1437
lines changed

Tests/AwsLambdaFunction.Sqs.GroupA/AwsLambdaFunction.Sqs.GroupA.Api/AwsLambdaFunction.Sqs.GroupA.Api.csproj renamed to Tests/AwsLambdaFunction.Sqs.GroupA/Aws.Sqs.GrpA.Api/Aws.Sqs.GrpA.Api.csproj

File renamed without changes.

Tests/AwsLambdaFunction.Sqs.GroupA/AwsLambdaFunction.Sqs.GroupA.Api/Configuration/ApplicationSecurityConfiguration.cs renamed to Tests/AwsLambdaFunction.Sqs.GroupA/Aws.Sqs.GrpA.Api/Configuration/ApplicationSecurityConfiguration.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using AwsLambdaFunction.Sqs.GroupA.Api.Services;
1+
using Aws.Sqs.GrpA.Api.Services;
22
using AwsLambdaFunction.Sqs.GroupA.Application.Common.Interfaces;
33
using Intent.RoslynWeaver.Attributes;
44
using Microsoft.Extensions.Configuration;
@@ -7,7 +7,7 @@
77
[assembly: DefaultIntentManaged(Mode.Fully)]
88
[assembly: IntentTemplate("Intent.Application.Identity.ApplicationSecurityConfiguration", Version = "1.0")]
99

10-
namespace AwsLambdaFunction.Sqs.GroupA.Api.Configuration
10+
namespace Aws.Sqs.GrpA.Api.Configuration
1111
{
1212
public static class ApplicationSecurityConfiguration
1313
{

Tests/AwsLambdaFunction.Sqs.GroupA/AwsLambdaFunction.Sqs.GroupA.Api/DefaultFunctions.cs renamed to Tests/AwsLambdaFunction.Sqs.GroupA/Aws.Sqs.GrpA.Api/DefaultFunctions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Amazon.Lambda.Annotations;
66
using Amazon.Lambda.Annotations.APIGateway;
77
using Amazon.Lambda.Core;
8-
using AwsLambdaFunction.Sqs.GroupA.Api.Helpers;
8+
using Aws.Sqs.GrpA.Api.Helpers;
99
using AwsLambdaFunction.Sqs.GroupA.Application.CreateClient;
1010
using AwsLambdaFunction.Sqs.GroupA.Application.CreateOrder;
1111
using Intent.RoslynWeaver.Attributes;
@@ -16,7 +16,7 @@
1616
[assembly: DefaultIntentManaged(Mode.Fully)]
1717
[assembly: IntentTemplate("Intent.Aws.Lambda.Functions.LambdaFunctionClassTemplate", Version = "1.0")]
1818

19-
namespace AwsLambdaFunction.Sqs.GroupA.Api
19+
namespace Aws.Sqs.GrpA.Api
2020
{
2121
public class DefaultFunctions
2222
{

Tests/AwsLambdaFunction.Sqs.GroupA/AwsLambdaFunction.Sqs.GroupA.Api/Helpers/ExceptionHandlerHelper.cs renamed to Tests/AwsLambdaFunction.Sqs.GroupA/Aws.Sqs.GrpA.Api/Helpers/ExceptionHandlerHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
[assembly: DefaultIntentManaged(Mode.Fully)]
1212
[assembly: IntentTemplate("Intent.Aws.Lambda.Functions.ExceptionHandlerHelper", Version = "1.0")]
1313

14-
namespace AwsLambdaFunction.Sqs.GroupA.Api.Helpers
14+
namespace Aws.Sqs.GrpA.Api.Helpers
1515
{
1616
public static class ExceptionHandlerHelper
1717
{

Tests/AwsLambdaFunction.Sqs.GroupA/AwsLambdaFunction.Sqs.GroupA.Api/Properties/launchSettings.json renamed to Tests/AwsLambdaFunction.Sqs.GroupA/Aws.Sqs.GrpA.Api/Properties/launchSettings.json

File renamed without changes.

Tests/AwsLambdaFunction.Sqs.GroupA/AwsLambdaFunction.Sqs.GroupA.Api/README.md renamed to Tests/AwsLambdaFunction.Sqs.GroupA/Aws.Sqs.GrpA.Api/README.md

File renamed without changes.

Tests/AwsLambdaFunction.Sqs.GroupA/AwsLambdaFunction.Sqs.GroupA.Api/ResponseTypes/JsonResponse.cs renamed to Tests/AwsLambdaFunction.Sqs.GroupA/Aws.Sqs.GrpA.Api/ResponseTypes/JsonResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[assembly: DefaultIntentManaged(Mode.Fully)]
44
[assembly: IntentTemplate("Intent.Aws.Lambda.Functions.JsonResponse", Version = "1.0")]
55

6-
namespace AwsLambdaFunction.Sqs.GroupA.Api.ResponseTypes
6+
namespace Aws.Sqs.GrpA.Api.ResponseTypes
77
{
88
/// <summary>
99
/// Implicit wrapping of types that serialize to non-complex values.

Tests/AwsLambdaFunction.Sqs.GroupA/AwsLambdaFunction.Sqs.GroupA.Api/Services/CurrentUserService.cs renamed to Tests/AwsLambdaFunction.Sqs.GroupA/Aws.Sqs.GrpA.Api/Services/CurrentUserService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[assembly: DefaultIntentManaged(Mode.Fully)]
66
[assembly: IntentTemplate("Intent.Application.Identity.CurrentUserService", Version = "1.0")]
77

8-
namespace AwsLambdaFunction.Sqs.GroupA.Api.Services
8+
namespace Aws.Sqs.GrpA.Api.Services
99
{
1010
public class CurrentUserService : ICurrentUserService
1111
{

Tests/AwsLambdaFunction.Sqs.GroupA/AwsLambdaFunction.Sqs.GroupA.Api/SpecificTopicMessageConsumer.cs renamed to Tests/AwsLambdaFunction.Sqs.GroupA/Aws.Sqs.GrpA.Api/SpecificTopicMessageConsumer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
[assembly: DefaultIntentManaged(Mode.Fully)]
1414
[assembly: IntentTemplate("Intent.Aws.Lambda.Functions.Sqs.LambdaFunctionConsumer", Version = "1.0")]
1515

16-
namespace AwsLambdaFunction.Sqs.GroupA.Api
16+
namespace Aws.Sqs.GrpA.Api
1717
{
1818
public class SpecificTopicMessageConsumer
1919
{

Tests/AwsLambdaFunction.Sqs.GroupA/AwsLambdaFunction.Sqs.GroupA.Api/Startup.cs renamed to Tests/AwsLambdaFunction.Sqs.GroupA/Aws.Sqs.GrpA.Api/Startup.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Amazon.Lambda.Annotations;
22
using Amazon.Lambda.Core;
33
using Amazon.Lambda.Serialization.SystemTextJson;
4-
using AwsLambdaFunction.Sqs.GroupA.Api.Configuration;
4+
using Aws.Sqs.GrpA.Api.Configuration;
55
using AwsLambdaFunction.Sqs.GroupA.Application;
66
using AwsLambdaFunction.Sqs.GroupA.Infrastructure;
77
using Intent.RoslynWeaver.Attributes;
@@ -15,7 +15,7 @@
1515

1616
[assembly: LambdaSerializer(typeof(DefaultLambdaJsonSerializer))]
1717

18-
namespace AwsLambdaFunction.Sqs.GroupA.Api
18+
namespace Aws.Sqs.GrpA.Api
1919
{
2020
[LambdaStartup]
2121
public class Startup

0 commit comments

Comments
 (0)