Class: Aws::Athena::Types::NotebookMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::NotebookMetadata
- Defined in:
- gems/aws-sdk-athena/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.
2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 2923 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.
2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 2923 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.
2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 2923 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.
2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 2923 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
.
2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 2923 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.
2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 2923 class NotebookMetadata < Struct.new( :notebook_id, :name, :work_group, :creation_time, :type, :last_modified_time) SENSITIVE = [] include Aws::Structure end |