Modify S3 Repository Settings
You can update settings of an S3 repository with the specified ID added to the Veeam Backup for AWS configuration database.
| Note | 
| You cannot change an Amazon S3 bucket and folder for an S3 repository. | 
Request
To change S3 repository settings, send the HTTP PUT request to the /repositories/{repositoryId} endpoint. {repositoryId} is a system ID assigned to theS3 repository in the Veeam Backup for AWS REST API.
HTTP Request
| PUT https://<hostname>:<port>/api/v1/repositories/{repositoryId} | 
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 | 
 | 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 update data to be changed for the S3 repository, send the following parameters in the request body.
| Parameter | Required/Optional | Type | Description | 
|---|---|---|---|
| name | Required | string | Specifies a name of the S3 repository. | 
| description | Optional | string | Specifies a description of the S3 repository. Note: If you do not send the description parameter in the request body, the value is set to null by default. | 
| amazonAccountId | Required | 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. | 
| password | Optional | string | [Applies only if encryption is enabled] Specifies a password that Veeam Backup for AWS will use for encryption. | 
| hint | Optional | string | [Applies only if encryption is enabled] Specifies a hint for the specified password. | 
| enableEncryption | Required | boolean | Defines whether to enable encryption for backup files stored in the created S3 repository. | 
| Note | 
| Before you update an S3 repository, you can check whether settings you plan to specify for it are valid. For more information, see Validate S3 Repository Settings. | 
Set the parameter values in the following format:
| { "name": "string", "description": "string", "amazonAccountId": "string($uuid)", "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 | 
 | Identifies the media type of the response body message. | 
Response Body
In the response body, Veeam Backup for AWS returns an updated representation of the S3 repository. The Repository schema is used for the resource representation.
 Example
Example
| The following request modifies the description and disables encryption for an S3 repostory with the ID c7aef911-cd83-4e9a-924a-e9635b0a8983. 
 |