Class: Aws::CloudTrail::Types::SearchSampleQueriesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::SearchSampleQueriesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudtrail/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results to return on a single page.
-
#next_token ⇒ String
A token you can use to get the next page of results.
-
#search_phrase ⇒ String
The natural language phrase to use for the semantic search.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results to return on a single page. The default value is 10.
4985 4986 4987 4988 4989 4990 4991 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 4985 class SearchSampleQueriesRequest < Struct.new( :search_phrase, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token you can use to get the next page of results. The length constraint is in characters, not words.
4985 4986 4987 4988 4989 4990 4991 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 4985 class SearchSampleQueriesRequest < Struct.new( :search_phrase, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#search_phrase ⇒ String
The natural language phrase to use for the semantic search. The phrase must be in English. The length constraint is in characters, not words.
4985 4986 4987 4988 4989 4990 4991 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 4985 class SearchSampleQueriesRequest < Struct.new( :search_phrase, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |