AWS cli documentation change
Summary
Updated documentation for AWS DataZone 'create-asset-filter' command. Changes include: CLI version update (2.32.33 → 2.33.1), parameter reordering, added 'domain-identifier' parameter with constraints, modified pattern constraints for 'asset-identifier' and 'name', added 'description' parameter, and significantly expanded documentation for the 'configuration' tagged union structure with detailed filter expressions and operators.
Security assessment
The changes involve documentation updates for command parameters and expanded filter expression capabilities. There is no evidence of security vulnerability fixes, security incident references, or explicit security feature additions. The modifications focus on functional improvements (new operators, parameter constraints) without security context.
Diff
diff --git a/cli/latest/reference/datazone/create-asset-filter.md b/cli/latest/reference/datazone/create-asset-filter.md index dbe604161..aecd2ad22 100644 --- a//cli/latest/reference/datazone/create-asset-filter.md +++ b//cli/latest/reference/datazone/create-asset-filter.md @@ -15 +15 @@ - * [AWS CLI 2.32.33 Command Reference](../../index.html) » + * [AWS CLI 2.33.1 Command Reference](../../index.html) » @@ -78,4 +77,0 @@ See also: [AWS API Documentation](https://docs.aws.amazon.com/goto/WebAPI/datazo - --asset-identifier <value> - [--client-token <value>] - --configuration <value> - [--description <value>] @@ -82,0 +79 @@ See also: [AWS API Documentation](https://docs.aws.amazon.com/goto/WebAPI/datazo + --asset-identifier <value> @@ -83,0 +81,3 @@ See also: [AWS API Documentation](https://docs.aws.amazon.com/goto/WebAPI/datazo + [--description <value>] + --configuration <value> + [--client-token <value>] @@ -107,0 +108,10 @@ See also: [AWS API Documentation](https://docs.aws.amazon.com/goto/WebAPI/datazo +`--domain-identifier` (string) [required] + +> The ID of the domain in which you want to create an asset filter. +> +> Constraints: +> +> * pattern: `dzd[-_][a-zA-Z0-9_-]{1,36}` +> + + @@ -114 +124 @@ See also: [AWS API Documentation](https://docs.aws.amazon.com/goto/WebAPI/datazo -> * pattern: `^[a-zA-Z0-9_-]{1,36}$` +> * pattern: `[a-zA-Z0-9_-]{1,36}` @@ -118 +128,21 @@ See also: [AWS API Documentation](https://docs.aws.amazon.com/goto/WebAPI/datazo -`--client-token` (string) +`--name` (string) [required] + +> The name of the asset filter. +> +> Constraints: +> +> * min: `1` +> * max: `64` +> * pattern: `[\w -]+` +> + + +`--description` (string) + +> The description of the asset filter. +> +> Constraints: +> +> * min: `0` +> * max: `2048` +> @@ -120 +149,0 @@ See also: [AWS API Documentation](https://docs.aws.amazon.com/goto/WebAPI/datazo -> A unique, case-sensitive identifier that is provided to ensure the idempotency of the request. @@ -150 +179,149 @@ See also: [AWS API Documentation](https://docs.aws.amazon.com/goto/WebAPI/datazo ->>> This is a Tagged Union structure. Only one of the following top level keys can be set: `and`, `expression`, `or`. +>>> This is a Tagged Union structure. Only one of the following top level keys can be set: `expression`, `and`, `or`. +>>> +>>> expression -> (tagged union structure) +>>> +>>>> The expression of the row filter. +>>>> +>>>> ### Note +>>>> +>>>> This is a Tagged Union structure. Only one of the following top level keys can be set: `equalTo`, `notEqualTo`, `greaterThan`, `lessThan`, `greaterThanOrEqualTo`, `lessThanOrEqualTo`, `isNull`, `isNotNull`, `in`, `notIn`, `like`, `notLike`. +>>>> +>>>> equalTo -> (structure) +>>>> +>>>>> The ‘equal to’ clause of the row filter expression. +>>>>> +>>>>> columnName -> (string) [required] +>>>>> +>>>>>> The name of the column. +>>>>> +>>>>> value -> (string) [required] +>>>>> +>>>>>> The value that might be equal to an expression. +>>>> +>>>> notEqualTo -> (structure) +>>>> +>>>>> The ‘no equal to’ clause of the row filter expression. +>>>>> +>>>>> columnName -> (string) [required] +>>>>> +>>>>>> The name of the column. +>>>>> +>>>>> value -> (string) [required] +>>>>> +>>>>>> The value that might not be equal to the expression. +>>>> +>>>> greaterThan -> (structure) +>>>> +>>>>> The ‘greater than’ clause of the row filter expression. +>>>>> +>>>>> columnName -> (string) [required] +>>>>> +>>>>>> The name of the column. +>>>>> +>>>>> value -> (string) [required] +>>>>> +>>>>>> The value that might be greater than an expression. +>>>> +>>>> lessThan -> (structure) +>>>> +>>>>> The ‘less than’ clause of the row filter expression. +>>>>> +>>>>> columnName -> (string) [required] +>>>>> +>>>>>> The name of the column. +>>>>> +>>>>> value -> (string) [required] +>>>>> +>>>>>> The value that might be less than the expression. +>>>> +>>>> greaterThanOrEqualTo -> (structure) +>>>> +>>>>> The ‘greater than or equal to’ clause of the filter expression. +>>>>> +>>>>> columnName -> (string) [required] +>>>>> +>>>>>> The name of the column. +>>>>> +>>>>> value -> (string) [required] +>>>>> +>>>>>> The value that might be greater than or equal to an expression. +>>>> +>>>> lessThanOrEqualTo -> (structure) +>>>> +>>>>> The ‘less than or equal to’ clause of the row filter expression. +>>>>> +>>>>> columnName -> (string) [required] +>>>>> +>>>>>> The name of the column. +>>>>> +>>>>> value -> (string) [required] +>>>>> +>>>>>> The value that might be less than or equal to an expression. +>>>> +>>>> isNull -> (structure) +>>>> +>>>>> The ‘is null’ clause of the row filter expression. +>>>>> +>>>>> columnName -> (string) [required] +>>>>> +>>>>>> The name of the column. +>>>> +>>>> isNotNull -> (structure) +>>>> +>>>>> The ‘is not null’ clause of the row filter expression. +>>>>> +>>>>> columnName -> (string) [required] +>>>>> +>>>>>> The name of the column. +>>>> +>>>> in -> (structure) +>>>> +>>>>> The ‘in’ clause of the row filter expression. +>>>>> +>>>>> columnName -> (string) [required] +>>>>> +>>>>>> The name of the column. +>>>>> +>>>>> values -> (list) [required] +>>>>> +>>>>>> The values that might be in the expression. +>>>>>> +>>>>>> (string) +>>>> +>>>> notIn -> (structure) +>>>> +>>>>> The ‘not in’ clause of the row filter expression. +>>>>> +>>>>> columnName -> (string) [required] +>>>>> +>>>>>> The name of the column. +>>>>> +>>>>> values -> (list) [required] +>>>>> +>>>>>> The value that might not be in the expression. +>>>>>> +>>>>>> (string) +>>>> +>>>> like -> (structure) +>>>> +>>>>> The ‘like’ clause of the row filter expression. +>>>>> +>>>>> columnName -> (string) [required] +>>>>> +>>>>>> The name of the column. +>>>>> +>>>>> value -> (string) [required] +>>>>> +>>>>>> The value that might be like the expression. +>>>> +>>>> notLike -> (structure) +>>>> +>>>>> The ‘not like’ clause of the row filter expression.