Abbotware.Interop.Aws.Timestream 5.0.166

Prefix Reserved
dotnet add package Abbotware.Interop.Aws.Timestream --version 5.0.166
                    
NuGet\Install-Package Abbotware.Interop.Aws.Timestream -Version 5.0.166
                    
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.166" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Abbotware.Interop.Aws.Timestream" Version="5.0.166" />
                    
Directory.Packages.props
<PackageReference Include="Abbotware.Interop.Aws.Timestream" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Abbotware.Interop.Aws.Timestream --version 5.0.166
                    
#r "nuget: Abbotware.Interop.Aws.Timestream, 5.0.166"
                    
#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.
#addin nuget:?package=Abbotware.Interop.Aws.Timestream&version=5.0.166
                    
Install Abbotware.Interop.Aws.Timestream as a Cake Addin
#tool nuget:?package=Abbotware.Interop.Aws.Timestream&version=5.0.166
                    
Install Abbotware.Interop.Aws.Timestream as a Cake Tool

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 net8.0 is compatible.  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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.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.166 94 1/8/2025
5.0.163 103 12/20/2024
5.0.162 112 12/20/2024
5.0.160 101 12/19/2024
5.0.152 102 12/8/2024
5.0.149 104 12/8/2024
5.0.141 138 3/19/2024
5.0.140 117 3/18/2024
5.0.130 126 2/18/2024
5.0.127 114 2/17/2024
5.0.123 150 2/14/2024
5.0.107 874 10/22/2023
5.0.93 1,518 9/8/2023
5.0.92 173 9/8/2023
5.0.91 190 8/31/2023
5.0.89 212 8/31/2023
5.0.88 183 8/30/2023
5.0.87 389 8/21/2023
5.0.82 675 7/9/2023
5.0.81 546 6/20/2023
5.0.78 230 6/19/2023
5.0.71 211 6/16/2023
5.0.69 260 6/13/2023
5.0.68 208 6/11/2023
5.0.66 209 6/10/2023
5.0.62 228 6/9/2023
5.0.59 192 6/9/2023
5.0.58 202 6/8/2023
5.0.56 204 6/6/2023
5.0.54 199 6/6/2023
5.0.53 208 6/5/2023
5.0.51 195 6/5/2023
5.0.47 214 6/2/2023
5.0.44 207 6/2/2023