You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/LoggingS3Additional.md
+1
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,7 @@ Name | Type | Description | Notes
15
15
**secret_key** | Option<**String**> | The secret key for your S3 account. Not required if `iam_role` is provided. |
16
16
**server_side_encryption_kms_key_id** | Option<**String**> | Optional server-side KMS Key Id. Must be set if `server_side_encryption` is set to `aws:kms` or `AES256`. | [default to null]
17
17
**server_side_encryption** | Option<**String**> | Set this to `AES256` or `aws:kms` to enable S3 Server Side Encryption. | [default to null]
18
+
**file_max_bytes** | Option<**i32**> | The maximum number of bytes for each uploaded file. A value of 0 can be used to indicate there is no limit on the size of uploaded files, otherwise the minimum value is 1048576 bytes (1 MiB.) |
18
19
19
20
[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
Copy file name to clipboardexpand all lines: docs/LoggingS3Api.md
+2
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,7 @@ Name | Type | Description | Required | Notes
53
53
**secret_key** | Option\<**String**> | The secret key for your S3 account. Not required if `iam_role` is provided. | |
54
54
**server_side_encryption_kms_key_id** | Option\<**String**> | Optional server-side KMS Key Id. Must be set if `server_side_encryption` is set to `aws:kms` or `AES256`. | |[default to null]
55
55
**server_side_encryption** | Option\<**String**> | Set this to `AES256` or `aws:kms` to enable S3 Server Side Encryption. | |[default to null]
56
+
**file_max_bytes** | Option\<**i32**> | The maximum number of bytes for each uploaded file. A value of 0 can be used to indicate there is no limit on the size of uploaded files, otherwise the minimum value is 1048576 bytes (1 MiB.) | |
56
57
57
58
### Return type
58
59
@@ -221,6 +222,7 @@ Name | Type | Description | Required | Notes
221
222
**secret_key** | Option\<**String**> | The secret key for your S3 account. Not required if `iam_role` is provided. | |
222
223
**server_side_encryption_kms_key_id** | Option\<**String**> | Optional server-side KMS Key Id. Must be set if `server_side_encryption` is set to `aws:kms` or `AES256`. | |[default to null]
223
224
**server_side_encryption** | Option\<**String**> | Set this to `AES256` or `aws:kms` to enable S3 Server Side Encryption. | |[default to null]
225
+
**file_max_bytes** | Option\<**i32**> | The maximum number of bytes for each uploaded file. A value of 0 can be used to indicate there is no limit on the size of uploaded files, otherwise the minimum value is 1048576 bytes (1 MiB.) | |
Copy file name to clipboardexpand all lines: docs/LoggingS3Response.md
+1
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,7 @@ Name | Type | Description | Notes
30
30
**secret_key** | Option<**String**> | The secret key for your S3 account. Not required if `iam_role` is provided. |
31
31
**server_side_encryption_kms_key_id** | Option<**String**> | Optional server-side KMS Key Id. Must be set if `server_side_encryption` is set to `aws:kms` or `AES256`. | [default to null]
32
32
**server_side_encryption** | Option<**String**> | Set this to `AES256` or `aws:kms` to enable S3 Server Side Encryption. | [default to null]
33
+
**file_max_bytes** | Option<**i32**> | The maximum number of bytes for each uploaded file. A value of 0 can be used to indicate there is no limit on the size of uploaded files, otherwise the minimum value is 1048576 bytes (1 MiB.) |
33
34
34
35
[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
/// Set this to `AES256` or `aws:kms` to enable S3 Server Side Encryption.
62
-
pubserver_side_encryption:Option<String>
62
+
pubserver_side_encryption:Option<String>,
63
+
/// The maximum number of bytes for each uploaded file. A value of 0 can be used to indicate there is no limit on the size of uploaded files, otherwise the minimum value is 1048576 bytes (1 MiB.)
64
+
pubfile_max_bytes:Option<i32>
63
65
}
64
66
65
67
/// struct for passing parameters to the method [`delete_log_aws_s3`]
/// Set this to `AES256` or `aws:kms` to enable S3 Server Side Encryption.
146
-
pubserver_side_encryption:Option<String>
148
+
pubserver_side_encryption:Option<String>,
149
+
/// The maximum number of bytes for each uploaded file. A value of 0 can be used to indicate there is no limit on the size of uploaded files, otherwise the minimum value is 1048576 bytes (1 MiB.)
/// The maximum number of bytes for each uploaded file. A value of 0 can be used to indicate there is no limit on the size of uploaded files, otherwise the minimum value is 1048576 bytes (1 MiB.)
/// The maximum number of bytes for each uploaded file. A value of 0 can be used to indicate there is no limit on the size of uploaded files, otherwise the minimum value is 1048576 bytes (1 MiB.)
0 commit comments