Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions docs/sdks/languages/java.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,22 @@ sdk.Auth().UniversalAuthLogin(
- `clientId` (string): The client ID of your Machine Identity.
- `clientSecret` (string): The client secret of your Machine Identity.

### AWS Auth

```java
public void AwsAuthLogin(
String identityId
)
throws InfisicalException
```

```java
sdk.Auth().AwsAuthLogin("<machine-identity-id>");
```

**Parameters:**
- `identityId` (String): The ID of the machine identity to authenticate with.

### LDAP Auth

```java
Expand Down
Loading