Class: Aws::Glue::Types::ListSchemasInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::ListSchemasInput
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass ListSchemasInput data as a hash:
{
registry_id: {
registry_name: "SchemaRegistryNameString",
registry_arn: "GlueResourceArn",
},
max_results: 1,
next_token: "SchemaRegistryTokenString",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
Maximum number of results required per page.
-
#next_token ⇒ String
A continuation token, if this is a continuation call.
-
#registry_id ⇒ Types::RegistryId
A wrapper structure that may contain the registry name and Amazon Resource Name (ARN).
Instance Attribute Details
#max_results ⇒ Integer
Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.
17183 17184 17185 17186 17187 17188 17189 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 17183 class ListSchemasInput < Struct.new( :registry_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A continuation token, if this is a continuation call.
17183 17184 17185 17186 17187 17188 17189 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 17183 class ListSchemasInput < Struct.new( :registry_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#registry_id ⇒ Types::RegistryId
A wrapper structure that may contain the registry name and Amazon Resource Name (ARN).
17183 17184 17185 17186 17187 17188 17189 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 17183 class ListSchemasInput < Struct.new( :registry_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |