Class: Aws::Keyspaces::Types::ListTypesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Keyspaces::Types::ListTypesRequest
- Defined in:
- gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#keyspace_name ⇒ String
The name of the keyspace that contains the listed types.
-
#max_results ⇒ Integer
The total number of types to return in the output.
-
#next_token ⇒ String
The pagination token.
Instance Attribute Details
#keyspace_name ⇒ String
The name of the keyspace that contains the listed types.
1335 1336 1337 1338 1339 1340 1341 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1335 class ListTypesRequest < Struct.new( :next_token, :max_results, :keyspace_name) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The total number of types to return in the output. If the total
number of types available is more than the value specified, a
NextToken
is provided in the output. To resume pagination, provide
the NextToken
value as an argument of a subsequent API invocation.
1335 1336 1337 1338 1339 1340 1341 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1335 class ListTypesRequest < Struct.new( :next_token, :max_results, :keyspace_name) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The pagination token. To resume pagination, provide the NextToken
value as an argument of a subsequent API invocation.
1335 1336 1337 1338 1339 1340 1341 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1335 class ListTypesRequest < Struct.new( :next_token, :max_results, :keyspace_name) SENSITIVE = [] include Aws::Structure end |