> ## Documentation Index
> Fetch the complete documentation index at: https://cdktn.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Java: S3BackendEndpointConfig

> CDKTN Core API Reference for S3BackendEndpointConfig in Java.

## Initializer <a name="Initializer" id="cdktn.S3BackendEndpointConfig.Initializer" />

```java theme={null}
import io.cdktn.cdktn.S3BackendEndpointConfig;

S3BackendEndpointConfig.builder()
//  .dynamodb(java.lang.String)
//  .iam(java.lang.String)
//  .s3(java.lang.String)
//  .sso(java.lang.String)
//  .sts(java.lang.String)
    .build();
```

## Properties <a name="Properties" id="Properties" />

| **Name**                                                                             | **Type**                      | **Description**                                                                                 |
| ------------------------------------------------------------------------------------ | ----------------------------- | ----------------------------------------------------------------------------------------------- |
| <code><a href="#cdktn.S3BackendEndpointConfig.property.dynamodb">dynamodb</a></code> | <code>java.lang.String</code> | (Optional) Custom endpoint URL for the AWS DynamoDB API.                                        |
| <code><a href="#cdktn.S3BackendEndpointConfig.property.iam">iam</a></code>           | <code>java.lang.String</code> | (Optional) Custom endpoint URL for the AWS IAM API.                                             |
| <code><a href="#cdktn.S3BackendEndpointConfig.property.s3">s3</a></code>             | <code>java.lang.String</code> | (Optional) Custom endpoint URL for the AWS S3 API.                                              |
| <code><a href="#cdktn.S3BackendEndpointConfig.property.sso">sso</a></code>           | <code>java.lang.String</code> | (Optional) Custom endpoint URL for the AWS IAM Identity Center (formerly known as AWS SSO) API. |
| <code><a href="#cdktn.S3BackendEndpointConfig.property.sts">sts</a></code>           | <code>java.lang.String</code> | (Optional) Custom endpoint URL for the AWS STS API.                                             |

***

### `dynamodb`<sup>Optional</sup> <a name="dynamodb" id="cdktn.S3BackendEndpointConfig.property.dynamodb" />

```java theme={null}
public java.lang.String getDynamodb();
```

* *Type:* java.lang.String

(Optional) Custom endpoint URL for the AWS DynamoDB API.

This can also be sourced from the environment variable AWS\_ENDPOINT\_URL\_DYNAMODB or the deprecated environment variable AWS\_DYNAMODB\_ENDPOINT.

***

### `iam`<sup>Optional</sup> <a name="iam" id="cdktn.S3BackendEndpointConfig.property.iam" />

```java theme={null}
public java.lang.String getIam();
```

* *Type:* java.lang.String

(Optional) Custom endpoint URL for the AWS IAM API.

This can also be sourced from the environment variable AWS\_ENDPOINT\_URL\_IAM or the deprecated environment variable AWS\_IAM\_ENDPOINT.

***

### `s3`<sup>Optional</sup> <a name="s3" id="cdktn.S3BackendEndpointConfig.property.s3" />

```java theme={null}
public java.lang.String getS3();
```

* *Type:* java.lang.String

(Optional) Custom endpoint URL for the AWS S3 API.

This can also be sourced from the environment variable AWS\_ENDPOINT\_URL\_S3 or the deprecated environment variable AWS\_S3\_ENDPOINT.

***

### `sso`<sup>Optional</sup> <a name="sso" id="cdktn.S3BackendEndpointConfig.property.sso" />

```java theme={null}
public java.lang.String getSso();
```

* *Type:* java.lang.String

(Optional) Custom endpoint URL for the AWS IAM Identity Center (formerly known as AWS SSO) API.

This can also be sourced from the environment variable AWS\_ENDPOINT\_URL\_SSO.

***

### `sts`<sup>Optional</sup> <a name="sts" id="cdktn.S3BackendEndpointConfig.property.sts" />

```java theme={null}
public java.lang.String getSts();
```

* *Type:* java.lang.String

(Optional) Custom endpoint URL for the AWS STS API.

This can also be sourced from the environment variable AWS\_ENDPOINT\_URL\_STS or the deprecated environment variable AWS\_STS\_ENDPOINT.

***
