Class: Aws::DataZone::Types::QueryGraphInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::QueryGraphInput
- Defined in:
- gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#additional_attributes ⇒ Types::AdditionalAttributes
Additional details on the queried entity that can be requested in the response.
-
#domain_identifier ⇒ String
The identifier of the Amazon DataZone domain.
-
#match ⇒ Array<Types::MatchClause>
List of query match clauses.
-
#max_results ⇒ Integer
The maximum number of entities to return in a single call to
QueryGraph. -
#next_token ⇒ String
When the number of entities is greater than the default value for the
MaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of entities, the response includes a pagination token namedNextToken.
Instance Attribute Details
#additional_attributes ⇒ Types::AdditionalAttributes
Additional details on the queried entity that can be requested in the response.
17105 17106 17107 17108 17109 17110 17111 17112 17113 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 17105 class QueryGraphInput < Struct.new( :domain_identifier, :match, :max_results, :next_token, :additional_attributes) SENSITIVE = [] include Aws::Structure end |
#domain_identifier ⇒ String
The identifier of the Amazon DataZone domain.
17105 17106 17107 17108 17109 17110 17111 17112 17113 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 17105 class QueryGraphInput < Struct.new( :domain_identifier, :match, :max_results, :next_token, :additional_attributes) SENSITIVE = [] include Aws::Structure end |
#match ⇒ Array<Types::MatchClause>
List of query match clauses.
17105 17106 17107 17108 17109 17110 17111 17112 17113 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 17105 class QueryGraphInput < Struct.new( :domain_identifier, :match, :max_results, :next_token, :additional_attributes) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of entities to return in a single call to
QueryGraph. When the number of entities to be listed is greater
than the value of MaxResults, the response contains a NextToken
value that you can use in a subsequent call to QueryGraph to list
the next set of entities.
17105 17106 17107 17108 17109 17110 17111 17112 17113 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 17105 class QueryGraphInput < Struct.new( :domain_identifier, :match, :max_results, :next_token, :additional_attributes) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
When the number of entities is greater than the default value for
the MaxResults parameter, or if you explicitly specify a value for
MaxResults that is less than the number of entities, the response
includes a pagination token named NextToken. You can specify this
NextToken value in a subsequent call to QueryGraph to list the
next set of entities.
17105 17106 17107 17108 17109 17110 17111 17112 17113 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 17105 class QueryGraphInput < Struct.new( :domain_identifier, :match, :max_results, :next_token, :additional_attributes) SENSITIVE = [] include Aws::Structure end |