Class: Aws::Personalize::Types::CreateFilterRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::CreateFilterRequest
- Defined in:
- gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:filter_expression]
Instance Attribute Summary collapse
-
#dataset_group_arn ⇒ String
The ARN of the dataset group that the filter will belong to.
-
#filter_expression ⇒ String
The filter expression defines which items are included or excluded from recommendations.
-
#name ⇒ String
The name of the filter to create.
-
#tags ⇒ Array<Types::Tag>
A list of [tags][1] to apply to the filter.
Instance Attribute Details
#dataset_group_arn ⇒ String
The ARN of the dataset group that the filter will belong to.
1364 1365 1366 1367 1368 1369 1370 1371 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 1364 class CreateFilterRequest < Struct.new( :name, :dataset_group_arn, :filter_expression, :tags) SENSITIVE = [:filter_expression] include Aws::Structure end |
#filter_expression ⇒ String
The filter expression defines which items are included or excluded from recommendations. Filter expression must follow specific format rules. For information about filter expression structure and syntax, see Filter expressions.
1364 1365 1366 1367 1368 1369 1370 1371 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 1364 class CreateFilterRequest < Struct.new( :name, :dataset_group_arn, :filter_expression, :tags) SENSITIVE = [:filter_expression] include Aws::Structure end |
#name ⇒ String
The name of the filter to create.
1364 1365 1366 1367 1368 1369 1370 1371 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 1364 class CreateFilterRequest < Struct.new( :name, :dataset_group_arn, :filter_expression, :tags) SENSITIVE = [:filter_expression] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of tags to apply to the filter.
1364 1365 1366 1367 1368 1369 1370 1371 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 1364 class CreateFilterRequest < Struct.new( :name, :dataset_group_arn, :filter_expression, :tags) SENSITIVE = [:filter_expression] include Aws::Structure end |