Interface NotebookMetadata.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NotebookMetadata.Builder,NotebookMetadata>,SdkBuilder<NotebookMetadata.Builder,NotebookMetadata>,SdkPojo
- Enclosing class:
- NotebookMetadata
public static interface NotebookMetadata.Builder extends SdkPojo, CopyableBuilder<NotebookMetadata.Builder,NotebookMetadata>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NotebookMetadata.BuildercreationTime(Instant creationTime)The time when the notebook was created.NotebookMetadata.BuilderlastModifiedTime(Instant lastModifiedTime)The time when the notebook was last modified.NotebookMetadata.Buildername(String name)The name of the notebook.NotebookMetadata.BuildernotebookId(String notebookId)The notebook ID.NotebookMetadata.Buildertype(String type)The type of notebook.NotebookMetadata.Buildertype(NotebookType type)The type of notebook.NotebookMetadata.BuilderworkGroup(String workGroup)The name of the Spark enabled workgroup to which the notebook belongs.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
notebookId
NotebookMetadata.Builder notebookId(String notebookId)
The notebook ID.
- Parameters:
notebookId- The notebook ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
NotebookMetadata.Builder name(String name)
The name of the notebook.
- Parameters:
name- The name of the notebook.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
workGroup
NotebookMetadata.Builder workGroup(String workGroup)
The name of the Spark enabled workgroup to which the notebook belongs.
- Parameters:
workGroup- The name of the Spark enabled workgroup to which the notebook belongs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
NotebookMetadata.Builder creationTime(Instant creationTime)
The time when the notebook was created.
- Parameters:
creationTime- The time when the notebook was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
NotebookMetadata.Builder type(String type)
The type of notebook. Currently, the only valid type is
IPYNB.- Parameters:
type- The type of notebook. Currently, the only valid type isIPYNB.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
NotebookType,NotebookType
-
type
NotebookMetadata.Builder type(NotebookType type)
The type of notebook. Currently, the only valid type is
IPYNB.- Parameters:
type- The type of notebook. Currently, the only valid type isIPYNB.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
NotebookType,NotebookType
-
lastModifiedTime
NotebookMetadata.Builder lastModifiedTime(Instant lastModifiedTime)
The time when the notebook was last modified.
- Parameters:
lastModifiedTime- The time when the notebook was last modified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-