Class: Aws::Athena::Types::NotebookMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::NotebookMetadata
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-athena/types.rb
Overview
Contains metadata for notebook, including the notebook name, ID, workgroup, and time created.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#creation_time ⇒ Time
The time when the notebook was created.
-
#last_modified_time ⇒ Time
The time when the notebook was last modified.
-
#name ⇒ String
The name of the notebook.
-
#notebook_id ⇒ String
The notebook ID.
-
#type ⇒ String
The type of notebook.
-
#work_group ⇒ String
The name of the Spark enabled workgroup to which the notebook belongs.
Instance Attribute Details
#creation_time ⇒ Time
The time when the notebook was created.
3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 |
# File 'lib/aws-sdk-athena/types.rb', line 3092 class NotebookMetadata < Struct.new( :notebook_id, :name, :work_group, :creation_time, :type, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#last_modified_time ⇒ Time
The time when the notebook was last modified.
3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 |
# File 'lib/aws-sdk-athena/types.rb', line 3092 class NotebookMetadata < Struct.new( :notebook_id, :name, :work_group, :creation_time, :type, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the notebook.
3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 |
# File 'lib/aws-sdk-athena/types.rb', line 3092 class NotebookMetadata < Struct.new( :notebook_id, :name, :work_group, :creation_time, :type, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#notebook_id ⇒ String
The notebook ID.
3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 |
# File 'lib/aws-sdk-athena/types.rb', line 3092 class NotebookMetadata < Struct.new( :notebook_id, :name, :work_group, :creation_time, :type, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of notebook. Currently, the only valid type is ‘IPYNB`.
3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 |
# File 'lib/aws-sdk-athena/types.rb', line 3092 class NotebookMetadata < Struct.new( :notebook_id, :name, :work_group, :creation_time, :type, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#work_group ⇒ String
The name of the Spark enabled workgroup to which the notebook belongs.
3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 |
# File 'lib/aws-sdk-athena/types.rb', line 3092 class NotebookMetadata < Struct.new( :notebook_id, :name, :work_group, :creation_time, :type, :last_modified_time) SENSITIVE = [] include Aws::Structure end |