< Summary

Information
Class: ArturRios.Data.DynamoDb.Configuration.DynamoOptions
Assembly: ArturRios.Data.DynamoDb
File(s): D:\Repositories\dotnet-data\src\ArturRios.Data.DynamoDb\Configuration\DynamoOptions.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 17
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage
100%
Covered methods: 4
Fully covered methods: 4
Total methods: 4
Method coverage: 100%
Full method coverage: 100%

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
get_Region()100%11100%
get_ServiceUrl()100%11100%
get_AccessKey()100%11100%
get_SecretKey()100%11100%

File(s)

D:\Repositories\dotnet-data\src\ArturRios.Data.DynamoDb\Configuration\DynamoOptions.cs

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