| | | 1 | | namespace ArturRios.Data.DynamoDb.Configuration; |
| | | 2 | | |
| | | 3 | | /// <summary>Connection options for the DynamoDB store.</summary> |
| | | 4 | | public class DynamoOptions |
| | | 5 | | { |
| | | 6 | | /// <summary>AWS region system name (e.g. "us-east-1"). Ignored when <see cref="ServiceUrl" /> is set.</summary> |
| | 13 | 7 | | public string Region { get; init; } = string.Empty; |
| | | 8 | | |
| | | 9 | | /// <summary>Optional service URL for DynamoDB Local / LocalStack (e.g. "http://localhost:8000").</summary> |
| | 7 | 10 | | public string? ServiceUrl { get; init; } |
| | | 11 | | |
| | | 12 | | /// <summary>Optional explicit AWS access key. When <see cref="ServiceUrl" /> is set and unset, dummy credentials ar |
| | 5 | 13 | | public string? AccessKey { get; init; } |
| | | 14 | | |
| | | 15 | | /// <summary>Optional explicit AWS secret key.</summary> |
| | 3 | 16 | | public string? SecretKey { get; init; } |
| | | 17 | | } |