CreateNotebookInstanceLifecycleConfigOutput.fromJson constructor

CreateNotebookInstanceLifecycleConfigOutput.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory CreateNotebookInstanceLifecycleConfigOutput.fromJson(
    Map<String, dynamic> json) {
  return CreateNotebookInstanceLifecycleConfigOutput(
    notebookInstanceLifecycleConfigArn:
        json['NotebookInstanceLifecycleConfigArn'] as String?,
  );
}