Abbotware.Interop.Aws.Timestream 5.0.141

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Abbotware.Interop.Aws.Timestream --version 5.0.141
NuGet\Install-Package Abbotware.Interop.Aws.Timestream -Version 5.0.141
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Abbotware.Interop.Aws.Timestream" Version="5.0.141" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Abbotware.Interop.Aws.Timestream --version 5.0.141
#r "nuget: Abbotware.Interop.Aws.Timestream, 5.0.141"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Abbotware.Interop.Aws.Timestream as a Cake Addin
#addin nuget:?package=Abbotware.Interop.Aws.Timestream&version=5.0.141

// Install Abbotware.Interop.Aws.Timestream as a Cake Tool
#tool nuget:?package=Abbotware.Interop.Aws.Timestream&version=5.0.141

Abbotware.Interop.Aws.Timestream

C# Fluent and Attribute based publishers for AWS Timestream. Quick and easy support for single measure and multi-measure values based off POCOs

POCO via Attributes

Attributes can be used to define dimensions, measures, and time fields.

[MeasureName("Data")]
public class Poco
{
    [Dimension]
    public string PropertyA { get; set; }

    [Dimension]
    public string PropertyB { get; set; }

    [MeasureValue]
    public int? ValueA { get; set; }

    [MeasureValue]
    public string ValueB { get; set; }

    [MeasureValue]
    public decimal? ValueC { get; set; }

    [MeasureValue]
    public bool? ValueD { get; set; }

    [Time]
    public DateTimeOffset? Time { get; set; }
}

Poco Publisher Example

// create write options for target database / table
var options = new TimestreamOptions() { Database = "database", Table = "table" };
            
// create publisher with options + logger
using var c = new PocoPublisher<MultiMeasureTest>(options, NullLogger.Instance);

// create message
var poco = new Poco() { ... }

// publish
var p = await c.PublishAsync(poco, ct);

POCO via Fluent API

The Fluent API requires a little more setup, but can be used on objects you have no control over.

public class Poco
{
    public string PropertyA { get; set; }
    public string PropertyB { get; set; }
    public int? ValueA { get; set; }
    public string ValueB { get; set; }
    public decimal? ValueC { get; set; }
    public bool? ValueD { get; set; }
    public DateTimeOffset? Time { get; set; }
}

Define Protocol via Builder

// supply name for multi measure name
var pb = new ProtocolBuilder<Poco>("metrics");
    pb.AddDimension(x => x.PropertyA);
    pb.AddDimension(x => x.PropertyB);
    pb.AddMeasure(x => x.ValueA);
    pb.AddMeasure(x => x.ValueB);
    pb.AddMeasure(x => x.ValueC);
    pb.AddMeasure(x => x.ValueD);
    pb.AddTime(x => x.Time, TimeUnitType.Milliseconds);

var protocol = pb.Build();

Create Publisher

// create write options for target database / table
var options = new TimestreamOptions() { Database = "database", Table = "table" };

// create publisher with options + protocol + logger
using var p = new TimestreamPublisher<SingleMeasureTest>(options, protocol, NullLogger.Instance);

// create message
var poco = new Poco() { ... }

// publish
var p = await c.PublishAsync(poco, ct);

Settings File

var options = ConfigurationHelper.AppSettingsJson("settings.json").BindSection<TimestreamOptions>(TimestreamOptions.DefaultSection);
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
5.0.141 75 3/19/2024
5.0.140 81 3/18/2024
5.0.130 76 2/18/2024
5.0.127 75 2/17/2024
5.0.123 111 2/14/2024
5.0.107 768 10/22/2023
5.0.93 1,469 9/8/2023
5.0.92 129 9/8/2023
5.0.91 147 8/31/2023
5.0.89 170 8/31/2023
5.0.88 144 8/30/2023
5.0.87 325 8/21/2023
5.0.82 632 7/9/2023
5.0.81 503 6/20/2023
5.0.78 179 6/19/2023
5.0.71 170 6/16/2023
5.0.69 214 6/13/2023
5.0.68 160 6/11/2023
5.0.66 160 6/10/2023
5.0.62 184 6/9/2023
5.0.59 161 6/9/2023
5.0.58 169 6/8/2023
5.0.56 158 6/6/2023
5.0.54 154 6/6/2023
5.0.53 157 6/5/2023
5.0.51 152 6/5/2023
5.0.47 168 6/2/2023
5.0.44 158 6/2/2023