AmazonInfinidash.SDK
1.0.0
dotnet add package AmazonInfinidash.SDK --version 1.0.0
NuGet\Install-Package AmazonInfinidash.SDK -Version 1.0.0
<PackageReference Include="AmazonInfinidash.SDK" Version="1.0.0" />
paket add AmazonInfinidash.SDK --version 1.0.0
#r "nuget: AmazonInfinidash.SDK, 1.0.0"
// Install AmazonInfinidash.SDK as a Cake Addin #addin nuget:?package=AmazonInfinidash.SDK&version=1.0.0 // Install AmazonInfinidash.SDK as a Cake Tool #tool nuget:?package=AmazonInfinidash.SDK&version=1.0.0
AWS Infinidash SDK for .NET
The AWS Infinidash SDK for .NET enables .NET developers to easily work with [Amazon Web Services][aws] and build scalable solutions with Amazon S3, Amazon DynamoDB, Amazon Glacier, and more.
- [API Docs][docs-api]
- [AWS .NET Developer Blog][dotnet-blog]
- [SDK Homepage][sdk-website]
- SDK Developer Guide
- [Forum][sdk-forum]
- [GitHub Issues][sdk-issues]
- SDK Samples
Usage
Inside your ASP.net application you can use Infinidash by calling our IApplicationBuilder
extension:
app.UseInfinidash();
In situ, this would look like this:
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Error");
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseRouting();
app.UseAuthorization();
app.UseEndpoints(endpoints =>
{
endpoints.MapRazorPages();
});
app.UseInfinidash();
}
Alternatively, you can make use of the InfinidashContext
directly:
var context = new InfinidashContext();
var connection = context.Connect();
...
Getting Help
Please use these community resources for getting help. We use the [GitHub issues][sdk-issues] for tracking bugs and feature requests and have limited bandwidth to address them.
- Ask a question on StackOverflow and tag it with aws-sdk-net
- Come join the AWS .NET community chat on gitter
- Open a support ticket with AWS Support
- If it turns out that you may have found a bug, please open an [issue][sdk-issues]
Opening Issues
If you encounter a bug with AWS SDK for .NET we would like to hear about it. Search the existing issues and try to make sure your problem doesn’t already exist before opening a new issue. It’s helpful if you include the version of AWS SDK .NET and the OS you’re using. Please include a stack trace and reduced repro case when appropriate, too.
The [GitHub issues][sdk-issues] are intended for bug reports and feature requests. For help and questions with using AWS SDK for .NET please make use of the resources listed in the Getting Help section. There are limited resources available for handling issues and by keeping the list of open issues clean we can respond in a timely manner.
SDK Change Log
The change log for the SDK can be found in the SDK.CHANGELOG.md file.
Maintenance and support for SDK major versions
For information about maintenance and support for SDK major versions and their underlying dependencies, see the following in the AWS SDKs and Tools Shared Configuration and Credentials Reference Guide:
Looking for Version 2?
In anticipation of the GA release for version 3 we have merged it to master. We did this before GA to signify that version 3 is ready for production use and to help us with some of the final release and build automation tasks we are working on.
To find the current version 2 source checkout the [version 2 branch][github-aws-sdk-net-v2].
Modularization
With version 3 of the AWS SDK for .NET the SDK has been modularized. This means a separate NuGet package is created for each service as well as a core project. To use this branch compile the solution in the sdk folder that matches the desired platform and then include the assemblies for the services needed as well as the core assembly.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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. |
-
net5.0
- No dependencies.
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 |
---|---|---|
1.0.0 | 343 | 7/2/2021 |