AWS cli documentation change
Summary
Expanded partition function options for target data processing (added year/month/day/hour) and updated CLI version
Security assessment
Added new data partitioning features without any security context. Changes relate to functionality expansion rather than security controls.
Diff
diff --git a/cli/latest/reference/glue/get-integration-table-properties.md b/cli/latest/reference/glue/get-integration-table-properties.md index 587ca5165..9ca6db7fc 100644 --- a//cli/latest/reference/glue/get-integration-table-properties.md +++ b//cli/latest/reference/glue/get-integration-table-properties.md @@ -15 +15 @@ - * [AWS CLI 2.28.8 Command Reference](../../index.html) » + * [AWS CLI 2.28.11 Command Reference](../../index.html) » @@ -254 +254,9 @@ TargetTableConfig -> (structure) ->>>> 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) +>>>> + @@ -294 +302 @@ TargetTableConfig -> (structure) - * [AWS CLI 2.28.8 Command Reference](../../index.html) » + * [AWS CLI 2.28.11 Command Reference](../../index.html) »