AWS glue documentation change
Summary
Expanded partition function options with date/time extraction capabilities
Security assessment
Adds new data partitioning features without any security-specific implications or mentions of security controls.
Diff
diff --git a/glue/latest/webapi/API_IntegrationPartition.md b/glue/latest/webapi/API_IntegrationPartition.md index 15bf11ff8..798ae68b3 100644 --- a//glue/latest/webapi/API_IntegrationPartition.md +++ b//glue/latest/webapi/API_IntegrationPartition.md @@ -64 +64,14 @@ Required: No -Specifies the function used to partition data on the target. The only accepted value for this parameter is `'identity'` (string). The `'identity'` function ensures that the data partitioning on the target follows the same scheme as the source. In other words, the partitioning structure of the source data is preserved in the target destination. +Specifies the function used to partition data on the target. The accepted values for this parameter are: + + * `identity` \- Uses source values directly without transformation + + * `year` \- Extracts the year from timestamp values (e.g., 2023) + + * `month` \- Extracts the month from timestamp values (e.g., 2023-01) + + * `day` \- Extracts the day from timestamp values (e.g., 2023-01-15) + + * `hour` \- Extracts the hour from timestamp values (e.g., 2023-01-15-14) + + +