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.
3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 |
# File 'lib/aws-sdk-athena/types.rb', line 3118 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.
3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 |
# File 'lib/aws-sdk-athena/types.rb', line 3118 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.
3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 |
# File 'lib/aws-sdk-athena/types.rb', line 3118 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.
3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 |
# File 'lib/aws-sdk-athena/types.rb', line 3118 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`.
3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 |
# File 'lib/aws-sdk-athena/types.rb', line 3118 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.
3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 |
# File 'lib/aws-sdk-athena/types.rb', line 3118 class NotebookMetadata < Struct.new( :notebook_id, :name, :work_group, :creation_time, :type, :last_modified_time) SENSITIVE = [] include Aws::Structure end |