AWS cli documentation change
Summary
Expanded partition function options from only 'identity' to include year/month/day/hour extraction from timestamps
Security assessment
The change adds new data partitioning options but does not address security vulnerabilities or introduce security-related controls. This is a feature enhancement for data organization.
Diff
diff --git a/cli/latest/reference/glue/create-integration-table-properties.md b/cli/latest/reference/glue/create-integration-table-properties.md index 6a920527c..714f3e850 100644 --- a//cli/latest/reference/glue/create-integration-table-properties.md +++ b//cli/latest/reference/glue/create-integration-table-properties.md @@ -15 +15 @@ - * [AWS CLI 2.28.8 Command Reference](../../index.html) » + * [AWS CLI 2.28.11 Command Reference](../../index.html) » @@ -166 +166,9 @@ JSON Syntax: ->>>> 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) +>>>> + @@ -330 +338 @@ None - * [AWS CLI 2.28.8 Command Reference](../../index.html) » + * [AWS CLI 2.28.11 Command Reference](../../index.html) »