# SeaweedFSClientSettings

- Kind: `class`
- Package: [CommunityToolkit.Aspire.SeaweedFS.Client](/reference/api/csharp/communitytoolkit.aspire.seaweedfs.client.md)
- Version: `13.4.1-beta.706`
- Namespace: `Microsoft.Extensions.Hosting`
- Target framework: `net10.0`
- Source: [GitHub](https://github.com/CommunityToolkit/Aspire/blob/d479e13473b1d29d06b974f144a0049289a3cb5c/src/CommunityToolkit.Aspire.SeaweedFS.Client/SeaweedFSClientSettings.cs)

Provides the settings for configuring the SeaweedFS S3 client.

## Definition

```csharp
namespace Microsoft.Extensions.Hosting;

public sealed class SeaweedFSClientSettings
{
    // ...
}
```

## Constructors

- [SeaweedFSClientSettings](/reference/api/csharp/communitytoolkit.aspire.seaweedfs.client/seaweedfsclientsettings/constructors.md#constructor)

## Properties

- [AccessKey](/reference/api/csharp/communitytoolkit.aspire.seaweedfs.client/seaweedfsclientsettings/properties.md#accesskey) : `string?` `get; set` -- Gets or sets the S3 Access Key.
- [ConfigureS3Config](/reference/api/csharp/communitytoolkit.aspire.seaweedfs.client/seaweedfsclientsettings/properties.md#configures3config) : `Action<AmazonS3Config>` `get; set` -- Gets or sets an action to deeply configure the underlying AmazonS3Config (e.g., retries, telemetry, proxies).
- [DisableHealthChecks](/reference/api/csharp/communitytoolkit.aspire.seaweedfs.client/seaweedfsclientsettings/properties.md#disablehealthchecks) : `bool` `get; set` -- Gets or sets a boolean value that indicates whether the S3 health check is disabled or not.
- [Endpoint](/reference/api/csharp/communitytoolkit.aspire.seaweedfs.client/seaweedfsclientsettings/properties.md#endpoint) : `Uri?` `get; set` -- Gets or sets the endpoint URL of the SeaweedFS S3 API.
- [FilerEndpoint](/reference/api/csharp/communitytoolkit.aspire.seaweedfs.client/seaweedfsclientsettings/properties.md#filerendpoint) : `Uri?` `get; set` -- Gets or sets the endpoint URL for the SeaweedFS Filer API.
- [ForcePathStyle](/reference/api/csharp/communitytoolkit.aspire.seaweedfs.client/seaweedfsclientsettings/properties.md#forcepathstyle) : `bool` `get; set` -- Gets or sets a value indicating whether to force path style URLs for S3 objects. Defaults to true, which is strictly required by the SeaweedFS architecture.
- [SecretKey](/reference/api/csharp/communitytoolkit.aspire.seaweedfs.client/seaweedfsclientsettings/properties.md#secretkey) : `string?` `get; set` -- Gets or sets the S3 Secret Key.
- [UseSsl](/reference/api/csharp/communitytoolkit.aspire.seaweedfs.client/seaweedfsclientsettings/properties.md#usessl) : `bool` `get; set` -- Gets or sets a value indicating whether to use SSL/TLS (HTTPS) for requests. Defaults to false.
