This is an archive version of the document. To get the most up-to-date information, see the current version.

Validate S3 Repository Settings

You can check whether settings you plan to specify for an S3 repository are valid.

Request

To validate S3 repository settings, send the HTTP POST request to the /repositories/settings/validate endpoint.

HTTP Request

POST https://<hostname>:<port>/api/v1/repositories/settings/validate

Request Headers

The request contains the following headers.

Header

Required/Optional

Value

Description

Authorization

Required

Bearer <Access-Token>

Authenticates a client who sends the request to the server. Must contain the access token for the current logon session in the Bearer <Access-Token> format.

x-api-version

Required

1.0-rev0

Specifies the current revision of the Veeam Backup for AWS REST API.

Content-Type

Required

application/json

Identifies a media type that is used in the body of the request.

Accept

Optional

  • application/json
  • application/problem+json

Specifies a media type of representation that is required in the response message. If the requested type is not supported, the server will return the response in the application/json media type.

Request Body

To check whether the IAM role name is unique, send the following parameter in the request body.

Parameter

Type

Description

name

string

Specifies a name of the S3 repository.

description

string

Specifies a description of the S3 repository.

amazonAccountId

string($uuid)

Specifies the system ID assigned in the Veeam Backup for AWS REST API to an IAM role used to connect to the S3 repository.

amazonBucketId

string

Specifies the folder name in the selected Amazon S3 bucket used to store EC2 instance backups.

amazonStorageFolder

string($uuid)

Specifies the system ID assigned to an Amazon S3 bucket where the S3 repository is located.

password

string

[Applies only if encryption is enabled] Specifies a password that Veeam Backup for AWS will use for encryption.

hint

string

[Applies only if encryption is enabled] Specifies a hint for the specified password.

enableEncryption

boolean

Defines whether to enable encryption for backup files stored in the created S3 repository.

Set the parameter value in the following format:

{

 "name": "string",

 "description": "string",

 "amazonAccountId": "string($uuid)",

 "amazonBucketId": "string($uuid)",

 "amazonStorageFolder": "string",

 "password": "string",

 "hint": "string",

 "enableEncryption": true/false

}

Response

The server returns the following response to the client.

Response Code

A successfully completed operation returns a response code 200 (OK).

Response Headers

The response to this request contains the following headers. The response may also include additional standard HTTP headers.

Header

Value

Description

Content-Length

integer

Identifies the length of the response body message, in bytes.

Content-Type

  • application/json
  • application/problem+json

Identifies the media type of the response body message.

Response Body

If S3 repository settings are valid, Veeam Backup for AWS does not return a response body, in other cases Veeam Backup for AWS returns the severity level and the error message.

Validate S3 Repository SettingsExample

The following request checks new S3 repository settings.

Request:

POST https://135.169.170.192:11005/api/v1/repositories/settings/validate

 

Request Header:

Authorization: Bearer <Access-Token>

x-api-version: 1.0-rev0

Content-Type: application/json

 

Request Body:

{

 "name": "Repository 04",

 "description": "Repository for Dept-02",

 "amazonAccountId": "757efdd7-128e-470c-90b6-1b274dbf502f",

 "amazonBucketId": "0dab1d93-ac17-482b-88a7-a56bebbb2b2e",

 "amazonStorageFolder": "dept-2-ls",

 "password": "password123",

 "hint": "TWA",

 "enableEncryption": true

}

 

Response:

200