CreateNotebookInstanceLifecycleConfigInput
public struct CreateNotebookInstanceLifecycleConfigInput : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The name of the lifecycle configuration.
Declaration
Swift
public let notebookInstanceLifecycleConfigName: String
-
A shell script that runs only once, when you create a notebook instance. The shell script must be a base64-encoded string.
Declaration
Swift
public let onCreate: [NotebookInstanceLifecycleHook]?
-
A shell script that runs every time you start a notebook instance, including when you create the notebook instance. The shell script must be a base64-encoded string.
Declaration
Swift
public let onStart: [NotebookInstanceLifecycleHook]?
-
Undocumented
Declaration
Swift
public init(notebookInstanceLifecycleConfigName: String, onCreate: [NotebookInstanceLifecycleHook]? = nil, onStart: [NotebookInstanceLifecycleHook]? = nil)
-
Declaration
Swift
public func validate(name: String) throws