> ## 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: RemoteBackendConfig

> CDKTN Core API Reference for RemoteBackendConfig in Java.

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

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

RemoteBackendConfig.builder()
    .organization(java.lang.String)
    .workspaces(IRemoteWorkspace)
//  .hostname(java.lang.String)
//  .token(java.lang.String)
    .build();
```

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

| **Name**                                                                                 | **Type**                                                            | **Description**   |
| ---------------------------------------------------------------------------------------- | ------------------------------------------------------------------- | ----------------- |
| <code><a href="#cdktn.RemoteBackendConfig.property.organization">organization</a></code> | <code>java.lang.String</code>                                       | *No description.* |
| <code><a href="#cdktn.RemoteBackendConfig.property.workspaces">workspaces</a></code>     | <code><a href="#cdktn.IRemoteWorkspace">IRemoteWorkspace</a></code> | *No description.* |
| <code><a href="#cdktn.RemoteBackendConfig.property.hostname">hostname</a></code>         | <code>java.lang.String</code>                                       | *No description.* |
| <code><a href="#cdktn.RemoteBackendConfig.property.token">token</a></code>               | <code>java.lang.String</code>                                       | *No description.* |

***

### `organization`<sup>Required</sup> <a name="organization" id="cdktn.RemoteBackendConfig.property.organization" />

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

* *Type:* java.lang.String

***

### `workspaces`<sup>Required</sup> <a name="workspaces" id="cdktn.RemoteBackendConfig.property.workspaces" />

```java theme={null}
public IRemoteWorkspace getWorkspaces();
```

* *Type:* <a href="#cdktn.IRemoteWorkspace">IRemoteWorkspace</a>

***

### `hostname`<sup>Optional</sup> <a name="hostname" id="cdktn.RemoteBackendConfig.property.hostname" />

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

* *Type:* java.lang.String

***

### `token`<sup>Optional</sup> <a name="token" id="cdktn.RemoteBackendConfig.property.token" />

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

* *Type:* java.lang.String

***
