@@ -137,7 +137,7 @@ def to_csv( # pylint: disable=too-many-arguments,too-many-locals
137137 s3_additional_kwargs : Optional[Dict[str, Any]]
138138 Forward to botocore requests. Valid parameters: "ACL", "Metadata", "ServerSideEncryption", "StorageClass",
139139 "SSECustomerAlgorithm", "SSECustomerKey", "SSEKMSKeyId", "SSEKMSEncryptionContext", "Tagging".
140- e.g. s3_additional_kwargs={'ServerSideEncryption': 'aws:kms', 'SSEKMSKeyId': 'YOUR_KMY_KEY_ARN '}
140+ e.g. s3_additional_kwargs={'ServerSideEncryption': 'aws:kms', 'SSEKMSKeyId': 'YOUR_KMS_KEY_ARN '}
141141 sanitize_columns : bool
142142 True to sanitize columns names or False to keep it as is.
143143 True value is forced if `dataset=True`.
@@ -259,7 +259,7 @@ def to_csv( # pylint: disable=too-many-arguments,too-many-locals
259259 ... path='s3://bucket/prefix/my_file.csv',
260260 ... s3_additional_kwargs={
261261 ... 'ServerSideEncryption': 'aws:kms',
262- ... 'SSEKMSKeyId': 'YOUR_KMY_KEY_ARN '
262+ ... 'SSEKMSKeyId': 'YOUR_KMS_KEY_ARN '
263263 ... }
264264 ... )
265265 {
@@ -478,7 +478,7 @@ def to_json(
478478 s3_additional_kwargs : Optional[Dict[str, Any]]
479479 Forward to botocore requests. Valid parameters: "ACL", "Metadata", "ServerSideEncryption", "StorageClass",
480480 "SSECustomerAlgorithm", "SSECustomerKey", "SSEKMSKeyId", "SSEKMSEncryptionContext", "Tagging".
481- e.g. s3_additional_kwargs={'ServerSideEncryption': 'aws:kms', 'SSEKMSKeyId': 'YOUR_KMY_KEY_ARN '}
481+ e.g. s3_additional_kwargs={'ServerSideEncryption': 'aws:kms', 'SSEKMSKeyId': 'YOUR_KMS_KEY_ARN '}
482482 use_threads : bool
483483 True to enable concurrent requests, False to disable multiple threads.
484484 If enabled os.cpu_count() will be used as the max number of threads.
@@ -524,7 +524,7 @@ def to_json(
524524 ... path='s3://bucket/filename.json',
525525 ... s3_additional_kwargs={
526526 ... 'ServerSideEncryption': 'aws:kms',
527- ... 'SSEKMSKeyId': 'YOUR_KMY_KEY_ARN '
527+ ... 'SSEKMSKeyId': 'YOUR_KMS_KEY_ARN '
528528 ... }
529529 ... )
530530
0 commit comments