aws-sdk-datazone 1.76.0 → 1.77.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +654 -16
- data/lib/aws-sdk-datazone/client_api.rb +353 -0
- data/lib/aws-sdk-datazone/types.rb +1104 -149
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +199 -0
- data/sig/types.rbs +242 -0
- metadata +1 -1
|
@@ -1901,7 +1901,10 @@ module Aws::DataZone
|
|
|
1901
1901
|
include Aws::Structure
|
|
1902
1902
|
end
|
|
1903
1903
|
|
|
1904
|
-
# The information about a cell in a notebook run in Amazon
|
|
1904
|
+
# The information about a cell in a notebook run in Amazon SageMaker
|
|
1905
|
+
# Unified Studio.
|
|
1906
|
+
#
|
|
1907
|
+
# @api private
|
|
1905
1908
|
#
|
|
1906
1909
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CellInformation AWS API Documentation
|
|
1907
1910
|
#
|
|
@@ -1936,7 +1939,8 @@ module Aws::DataZone
|
|
|
1936
1939
|
include Aws::Structure
|
|
1937
1940
|
end
|
|
1938
1941
|
|
|
1939
|
-
# The compute configuration for a notebook run in Amazon
|
|
1942
|
+
# The compute configuration for a notebook run in Amazon SageMaker
|
|
1943
|
+
# Unified Studio.
|
|
1940
1944
|
#
|
|
1941
1945
|
# @!attribute [rw] instance_type
|
|
1942
1946
|
# The instance type for the notebook run compute.
|
|
@@ -4843,6 +4847,160 @@ module Aws::DataZone
|
|
|
4843
4847
|
include Aws::Structure
|
|
4844
4848
|
end
|
|
4845
4849
|
|
|
4850
|
+
# @!attribute [rw] domain_identifier
|
|
4851
|
+
# The identifier of the Amazon SageMaker Unified Studio domain in
|
|
4852
|
+
# which to create the notebook.
|
|
4853
|
+
# @return [String]
|
|
4854
|
+
#
|
|
4855
|
+
# @!attribute [rw] owning_project_identifier
|
|
4856
|
+
# The identifier of the project that owns the notebook.
|
|
4857
|
+
# @return [String]
|
|
4858
|
+
#
|
|
4859
|
+
# @!attribute [rw] name
|
|
4860
|
+
# The name of the notebook. The name must be between 1 and 256
|
|
4861
|
+
# characters.
|
|
4862
|
+
# @return [String]
|
|
4863
|
+
#
|
|
4864
|
+
# @!attribute [rw] description
|
|
4865
|
+
# The description of the notebook.
|
|
4866
|
+
# @return [String]
|
|
4867
|
+
#
|
|
4868
|
+
# @!attribute [rw] metadata
|
|
4869
|
+
# The metadata for the notebook, specified as key-value pairs. You can
|
|
4870
|
+
# specify up to 50 entries, with keys up to 128 characters and values
|
|
4871
|
+
# up to 1024 characters.
|
|
4872
|
+
# @return [Hash<String,String>]
|
|
4873
|
+
#
|
|
4874
|
+
# @!attribute [rw] parameters
|
|
4875
|
+
# The sensitive parameters for the notebook, specified as key-value
|
|
4876
|
+
# pairs. You can specify up to 50 entries, with keys up to 128
|
|
4877
|
+
# characters and values up to 1024 characters.
|
|
4878
|
+
# @return [Hash<String,String>]
|
|
4879
|
+
#
|
|
4880
|
+
# @!attribute [rw] client_token
|
|
4881
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
4882
|
+
# request. This field is automatically populated if not provided.
|
|
4883
|
+
#
|
|
4884
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
4885
|
+
# not need to pass this option.
|
|
4886
|
+
# @return [String]
|
|
4887
|
+
#
|
|
4888
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateNotebookInput AWS API Documentation
|
|
4889
|
+
#
|
|
4890
|
+
class CreateNotebookInput < Struct.new(
|
|
4891
|
+
:domain_identifier,
|
|
4892
|
+
:owning_project_identifier,
|
|
4893
|
+
:name,
|
|
4894
|
+
:description,
|
|
4895
|
+
:metadata,
|
|
4896
|
+
:parameters,
|
|
4897
|
+
:client_token)
|
|
4898
|
+
SENSITIVE = [:name, :description, :metadata, :parameters]
|
|
4899
|
+
include Aws::Structure
|
|
4900
|
+
end
|
|
4901
|
+
|
|
4902
|
+
# @!attribute [rw] id
|
|
4903
|
+
# The identifier of the notebook.
|
|
4904
|
+
# @return [String]
|
|
4905
|
+
#
|
|
4906
|
+
# @!attribute [rw] name
|
|
4907
|
+
# The name of the notebook.
|
|
4908
|
+
# @return [String]
|
|
4909
|
+
#
|
|
4910
|
+
# @!attribute [rw] owning_project_id
|
|
4911
|
+
# The identifier of the project that owns the notebook.
|
|
4912
|
+
# @return [String]
|
|
4913
|
+
#
|
|
4914
|
+
# @!attribute [rw] domain_id
|
|
4915
|
+
# The identifier of the Amazon SageMaker Unified Studio domain.
|
|
4916
|
+
# @return [String]
|
|
4917
|
+
#
|
|
4918
|
+
# @!attribute [rw] cell_order
|
|
4919
|
+
# The ordered list of cells in the notebook.
|
|
4920
|
+
# @return [Array<Types::CellInformation>]
|
|
4921
|
+
#
|
|
4922
|
+
# @!attribute [rw] status
|
|
4923
|
+
# The status of the notebook.
|
|
4924
|
+
# @return [String]
|
|
4925
|
+
#
|
|
4926
|
+
# @!attribute [rw] description
|
|
4927
|
+
# The description of the notebook.
|
|
4928
|
+
# @return [String]
|
|
4929
|
+
#
|
|
4930
|
+
# @!attribute [rw] created_at
|
|
4931
|
+
# The timestamp of when the notebook was created.
|
|
4932
|
+
# @return [Time]
|
|
4933
|
+
#
|
|
4934
|
+
# @!attribute [rw] created_by
|
|
4935
|
+
# The identifier of the user who created the notebook.
|
|
4936
|
+
# @return [String]
|
|
4937
|
+
#
|
|
4938
|
+
# @!attribute [rw] updated_at
|
|
4939
|
+
# The timestamp of when the notebook was last updated.
|
|
4940
|
+
# @return [Time]
|
|
4941
|
+
#
|
|
4942
|
+
# @!attribute [rw] updated_by
|
|
4943
|
+
# The identifier of the user who last updated the notebook.
|
|
4944
|
+
# @return [String]
|
|
4945
|
+
#
|
|
4946
|
+
# @!attribute [rw] locked_by
|
|
4947
|
+
# The identifier of the user who locked the notebook.
|
|
4948
|
+
# @return [String]
|
|
4949
|
+
#
|
|
4950
|
+
# @!attribute [rw] locked_at
|
|
4951
|
+
# The timestamp of when the notebook was locked.
|
|
4952
|
+
# @return [Time]
|
|
4953
|
+
#
|
|
4954
|
+
# @!attribute [rw] lock_expires_at
|
|
4955
|
+
# The timestamp of when the notebook lock expires.
|
|
4956
|
+
# @return [Time]
|
|
4957
|
+
#
|
|
4958
|
+
# @!attribute [rw] compute_id
|
|
4959
|
+
# The identifier of the compute associated with the notebook.
|
|
4960
|
+
# @return [String]
|
|
4961
|
+
#
|
|
4962
|
+
# @!attribute [rw] metadata
|
|
4963
|
+
# The metadata of the notebook.
|
|
4964
|
+
# @return [Hash<String,String>]
|
|
4965
|
+
#
|
|
4966
|
+
# @!attribute [rw] parameters
|
|
4967
|
+
# The sensitive parameters of the notebook.
|
|
4968
|
+
# @return [Hash<String,String>]
|
|
4969
|
+
#
|
|
4970
|
+
# @!attribute [rw] environment_configuration
|
|
4971
|
+
# The environment configuration of the notebook.
|
|
4972
|
+
# @return [Types::EnvironmentConfig]
|
|
4973
|
+
#
|
|
4974
|
+
# @!attribute [rw] error
|
|
4975
|
+
# The error details if the notebook creation failed.
|
|
4976
|
+
# @return [Types::NotebookError]
|
|
4977
|
+
#
|
|
4978
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateNotebookOutput AWS API Documentation
|
|
4979
|
+
#
|
|
4980
|
+
class CreateNotebookOutput < Struct.new(
|
|
4981
|
+
:id,
|
|
4982
|
+
:name,
|
|
4983
|
+
:owning_project_id,
|
|
4984
|
+
:domain_id,
|
|
4985
|
+
:cell_order,
|
|
4986
|
+
:status,
|
|
4987
|
+
:description,
|
|
4988
|
+
:created_at,
|
|
4989
|
+
:created_by,
|
|
4990
|
+
:updated_at,
|
|
4991
|
+
:updated_by,
|
|
4992
|
+
:locked_by,
|
|
4993
|
+
:locked_at,
|
|
4994
|
+
:lock_expires_at,
|
|
4995
|
+
:compute_id,
|
|
4996
|
+
:metadata,
|
|
4997
|
+
:parameters,
|
|
4998
|
+
:environment_configuration,
|
|
4999
|
+
:error)
|
|
5000
|
+
SENSITIVE = [:name, :description, :metadata, :parameters]
|
|
5001
|
+
include Aws::Structure
|
|
5002
|
+
end
|
|
5003
|
+
|
|
4846
5004
|
# Specifies whether to create a project from project profile policy
|
|
4847
5005
|
# grant details.
|
|
4848
5006
|
#
|
|
@@ -7018,6 +7176,28 @@ module Aws::DataZone
|
|
|
7018
7176
|
#
|
|
7019
7177
|
class DeleteListingOutput < Aws::EmptyStructure; end
|
|
7020
7178
|
|
|
7179
|
+
# @!attribute [rw] domain_identifier
|
|
7180
|
+
# The identifier of the Amazon SageMaker Unified Studio domain in
|
|
7181
|
+
# which the notebook exists.
|
|
7182
|
+
# @return [String]
|
|
7183
|
+
#
|
|
7184
|
+
# @!attribute [rw] identifier
|
|
7185
|
+
# The identifier of the notebook to delete.
|
|
7186
|
+
# @return [String]
|
|
7187
|
+
#
|
|
7188
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteNotebookInput AWS API Documentation
|
|
7189
|
+
#
|
|
7190
|
+
class DeleteNotebookInput < Struct.new(
|
|
7191
|
+
:domain_identifier,
|
|
7192
|
+
:identifier)
|
|
7193
|
+
SENSITIVE = []
|
|
7194
|
+
include Aws::Structure
|
|
7195
|
+
end
|
|
7196
|
+
|
|
7197
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteNotebookOutput AWS API Documentation
|
|
7198
|
+
#
|
|
7199
|
+
class DeleteNotebookOutput < Aws::EmptyStructure; end
|
|
7200
|
+
|
|
7021
7201
|
# @!attribute [rw] domain_identifier
|
|
7022
7202
|
# The ID of the Amazon DataZone domain in which the project is
|
|
7023
7203
|
# deleted.
|
|
@@ -7859,7 +8039,8 @@ module Aws::DataZone
|
|
|
7859
8039
|
include Aws::Structure
|
|
7860
8040
|
end
|
|
7861
8041
|
|
|
7862
|
-
# The environment configuration for a notebook run in Amazon
|
|
8042
|
+
# The environment configuration for a notebook run in Amazon SageMaker
|
|
8043
|
+
# Unified Studio.
|
|
7863
8044
|
#
|
|
7864
8045
|
# @!attribute [rw] image_version
|
|
7865
8046
|
# The image version for the notebook run environment.
|
|
@@ -10888,17 +11069,17 @@ module Aws::DataZone
|
|
|
10888
11069
|
end
|
|
10889
11070
|
|
|
10890
11071
|
# @!attribute [rw] domain_identifier
|
|
10891
|
-
# The identifier of the Amazon
|
|
10892
|
-
#
|
|
11072
|
+
# The identifier of the Amazon SageMaker Unified Studio domain in
|
|
11073
|
+
# which the notebook export exists.
|
|
10893
11074
|
# @return [String]
|
|
10894
11075
|
#
|
|
10895
11076
|
# @!attribute [rw] identifier
|
|
10896
|
-
# The identifier of the notebook
|
|
11077
|
+
# The identifier of the notebook export.
|
|
10897
11078
|
# @return [String]
|
|
10898
11079
|
#
|
|
10899
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/
|
|
11080
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetNotebookExportInput AWS API Documentation
|
|
10900
11081
|
#
|
|
10901
|
-
class
|
|
11082
|
+
class GetNotebookExportInput < Struct.new(
|
|
10902
11083
|
:domain_identifier,
|
|
10903
11084
|
:identifier)
|
|
10904
11085
|
SENSITIVE = []
|
|
@@ -10906,181 +11087,382 @@ module Aws::DataZone
|
|
|
10906
11087
|
end
|
|
10907
11088
|
|
|
10908
11089
|
# @!attribute [rw] id
|
|
10909
|
-
# The identifier of the notebook
|
|
11090
|
+
# The identifier of the notebook export.
|
|
10910
11091
|
# @return [String]
|
|
10911
11092
|
#
|
|
10912
11093
|
# @!attribute [rw] domain_id
|
|
10913
|
-
# The identifier of the Amazon
|
|
11094
|
+
# The identifier of the Amazon SageMaker Unified Studio domain.
|
|
10914
11095
|
# @return [String]
|
|
10915
11096
|
#
|
|
10916
11097
|
# @!attribute [rw] owning_project_id
|
|
10917
|
-
# The identifier of the project that owns the notebook
|
|
11098
|
+
# The identifier of the project that owns the notebook.
|
|
10918
11099
|
# @return [String]
|
|
10919
11100
|
#
|
|
10920
11101
|
# @!attribute [rw] notebook_id
|
|
10921
11102
|
# The identifier of the notebook.
|
|
10922
11103
|
# @return [String]
|
|
10923
11104
|
#
|
|
10924
|
-
# @!attribute [rw]
|
|
10925
|
-
# The
|
|
11105
|
+
# @!attribute [rw] file_format
|
|
11106
|
+
# The file format of the notebook export.
|
|
10926
11107
|
# @return [String]
|
|
10927
11108
|
#
|
|
10928
11109
|
# @!attribute [rw] status
|
|
10929
|
-
# The status of the notebook
|
|
11110
|
+
# The status of the notebook export.
|
|
10930
11111
|
# @return [String]
|
|
10931
11112
|
#
|
|
10932
|
-
# @!attribute [rw]
|
|
10933
|
-
# The
|
|
10934
|
-
#
|
|
10935
|
-
#
|
|
10936
|
-
# @!attribute [rw] metadata
|
|
10937
|
-
# The metadata of the notebook run.
|
|
10938
|
-
# @return [Hash<String,String>]
|
|
10939
|
-
#
|
|
10940
|
-
# @!attribute [rw] parameters
|
|
10941
|
-
# The sensitive parameters of the notebook run.
|
|
10942
|
-
# @return [Hash<String,String>]
|
|
10943
|
-
#
|
|
10944
|
-
# @!attribute [rw] compute_configuration
|
|
10945
|
-
# The compute configuration of the notebook run.
|
|
10946
|
-
# @return [Types::ComputeConfig]
|
|
10947
|
-
#
|
|
10948
|
-
# @!attribute [rw] network_configuration
|
|
10949
|
-
# The network configuration of the notebook run.
|
|
10950
|
-
# @return [Types::NetworkConfig]
|
|
10951
|
-
#
|
|
10952
|
-
# @!attribute [rw] timeout_configuration
|
|
10953
|
-
# The timeout configuration of the notebook run.
|
|
10954
|
-
# @return [Types::TimeoutConfig]
|
|
10955
|
-
#
|
|
10956
|
-
# @!attribute [rw] environment_configuration
|
|
10957
|
-
# The environment configuration of the notebook run, including image
|
|
10958
|
-
# version and package settings.
|
|
10959
|
-
# @return [Types::EnvironmentConfig]
|
|
10960
|
-
#
|
|
10961
|
-
# @!attribute [rw] storage_configuration
|
|
10962
|
-
# The storage configuration of the notebook run, including the Amazon
|
|
10963
|
-
# Simple Storage Service path and KMS key ARN.
|
|
10964
|
-
# @return [Types::StorageConfig]
|
|
10965
|
-
#
|
|
10966
|
-
# @!attribute [rw] trigger_source
|
|
10967
|
-
# The source that triggered the notebook run.
|
|
10968
|
-
# @return [Types::TriggerSource]
|
|
11113
|
+
# @!attribute [rw] output_location
|
|
11114
|
+
# The output location of the exported notebook in Amazon Simple
|
|
11115
|
+
# Storage Service.
|
|
11116
|
+
# @return [Types::OutputLocation]
|
|
10969
11117
|
#
|
|
10970
11118
|
# @!attribute [rw] error
|
|
10971
|
-
# The error details if the notebook
|
|
10972
|
-
# @return [Types::
|
|
11119
|
+
# The error details if the notebook export failed.
|
|
11120
|
+
# @return [Types::NotebookExportError]
|
|
10973
11121
|
#
|
|
10974
|
-
# @!attribute [rw]
|
|
10975
|
-
# The timestamp of when the notebook
|
|
11122
|
+
# @!attribute [rw] completed_at
|
|
11123
|
+
# The timestamp of when the notebook export completed.
|
|
10976
11124
|
# @return [Time]
|
|
10977
11125
|
#
|
|
10978
|
-
# @!attribute [rw]
|
|
10979
|
-
# The
|
|
10980
|
-
# @return [String]
|
|
10981
|
-
#
|
|
10982
|
-
# @!attribute [rw] updated_at
|
|
10983
|
-
# The timestamp of when the notebook run was last updated.
|
|
11126
|
+
# @!attribute [rw] created_at
|
|
11127
|
+
# The timestamp of when the notebook export was started.
|
|
10984
11128
|
# @return [Time]
|
|
10985
11129
|
#
|
|
10986
|
-
# @!attribute [rw]
|
|
10987
|
-
# The identifier of the user who
|
|
11130
|
+
# @!attribute [rw] created_by
|
|
11131
|
+
# The identifier of the user who started the notebook export.
|
|
10988
11132
|
# @return [String]
|
|
10989
11133
|
#
|
|
10990
|
-
#
|
|
10991
|
-
# The timestamp of when the notebook run started executing.
|
|
10992
|
-
# @return [Time]
|
|
10993
|
-
#
|
|
10994
|
-
# @!attribute [rw] completed_at
|
|
10995
|
-
# The timestamp of when the notebook run completed.
|
|
10996
|
-
# @return [Time]
|
|
10997
|
-
#
|
|
10998
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetNotebookRunOutput AWS API Documentation
|
|
11134
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetNotebookExportOutput AWS API Documentation
|
|
10999
11135
|
#
|
|
11000
|
-
class
|
|
11136
|
+
class GetNotebookExportOutput < Struct.new(
|
|
11001
11137
|
:id,
|
|
11002
11138
|
:domain_id,
|
|
11003
11139
|
:owning_project_id,
|
|
11004
11140
|
:notebook_id,
|
|
11005
|
-
:
|
|
11141
|
+
:file_format,
|
|
11006
11142
|
:status,
|
|
11007
|
-
:
|
|
11008
|
-
:metadata,
|
|
11009
|
-
:parameters,
|
|
11010
|
-
:compute_configuration,
|
|
11011
|
-
:network_configuration,
|
|
11012
|
-
:timeout_configuration,
|
|
11013
|
-
:environment_configuration,
|
|
11014
|
-
:storage_configuration,
|
|
11015
|
-
:trigger_source,
|
|
11143
|
+
:output_location,
|
|
11016
11144
|
:error,
|
|
11145
|
+
:completed_at,
|
|
11017
11146
|
:created_at,
|
|
11018
|
-
:created_by
|
|
11019
|
-
|
|
11020
|
-
:updated_by,
|
|
11021
|
-
:started_at,
|
|
11022
|
-
:completed_at)
|
|
11023
|
-
SENSITIVE = [:metadata, :parameters]
|
|
11147
|
+
:created_by)
|
|
11148
|
+
SENSITIVE = []
|
|
11024
11149
|
include Aws::Structure
|
|
11025
11150
|
end
|
|
11026
11151
|
|
|
11027
11152
|
# @!attribute [rw] domain_identifier
|
|
11028
|
-
# The
|
|
11153
|
+
# The identifier of the Amazon SageMaker Unified Studio domain in
|
|
11154
|
+
# which the notebook exists.
|
|
11029
11155
|
# @return [String]
|
|
11030
11156
|
#
|
|
11031
11157
|
# @!attribute [rw] identifier
|
|
11032
|
-
# The
|
|
11158
|
+
# The identifier of the notebook.
|
|
11033
11159
|
# @return [String]
|
|
11034
11160
|
#
|
|
11035
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/
|
|
11161
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetNotebookInput AWS API Documentation
|
|
11036
11162
|
#
|
|
11037
|
-
class
|
|
11163
|
+
class GetNotebookInput < Struct.new(
|
|
11038
11164
|
:domain_identifier,
|
|
11039
11165
|
:identifier)
|
|
11040
11166
|
SENSITIVE = []
|
|
11041
11167
|
include Aws::Structure
|
|
11042
11168
|
end
|
|
11043
11169
|
|
|
11044
|
-
# @!attribute [rw] domain_id
|
|
11045
|
-
# The ID of the Amazon DataZone domain in which the project exists.
|
|
11046
|
-
# @return [String]
|
|
11047
|
-
#
|
|
11048
11170
|
# @!attribute [rw] id
|
|
11049
|
-
#
|
|
11171
|
+
# The identifier of the notebook.
|
|
11050
11172
|
# @return [String]
|
|
11051
11173
|
#
|
|
11052
11174
|
# @!attribute [rw] name
|
|
11053
|
-
# The name of the
|
|
11175
|
+
# The name of the notebook.
|
|
11054
11176
|
# @return [String]
|
|
11055
11177
|
#
|
|
11056
|
-
# @!attribute [rw]
|
|
11057
|
-
# The
|
|
11178
|
+
# @!attribute [rw] owning_project_id
|
|
11179
|
+
# The identifier of the project that owns the notebook.
|
|
11058
11180
|
# @return [String]
|
|
11059
11181
|
#
|
|
11060
|
-
# @!attribute [rw]
|
|
11061
|
-
# The
|
|
11182
|
+
# @!attribute [rw] domain_id
|
|
11183
|
+
# The identifier of the Amazon SageMaker Unified Studio domain.
|
|
11062
11184
|
# @return [String]
|
|
11063
11185
|
#
|
|
11064
|
-
# @!attribute [rw]
|
|
11065
|
-
#
|
|
11066
|
-
#
|
|
11067
|
-
# @return [Array<Types::ProjectDeletionError>]
|
|
11186
|
+
# @!attribute [rw] cell_order
|
|
11187
|
+
# The ordered list of cells in the notebook.
|
|
11188
|
+
# @return [Array<Types::CellInformation>]
|
|
11068
11189
|
#
|
|
11069
|
-
# @!attribute [rw]
|
|
11070
|
-
# The
|
|
11190
|
+
# @!attribute [rw] status
|
|
11191
|
+
# The status of the notebook.
|
|
11192
|
+
# @return [String]
|
|
11193
|
+
#
|
|
11194
|
+
# @!attribute [rw] description
|
|
11195
|
+
# The description of the notebook.
|
|
11071
11196
|
# @return [String]
|
|
11072
11197
|
#
|
|
11073
11198
|
# @!attribute [rw] created_at
|
|
11074
|
-
# The timestamp of when the
|
|
11199
|
+
# The timestamp of when the notebook was created.
|
|
11075
11200
|
# @return [Time]
|
|
11076
11201
|
#
|
|
11077
|
-
# @!attribute [rw]
|
|
11078
|
-
# The
|
|
11202
|
+
# @!attribute [rw] created_by
|
|
11203
|
+
# The identifier of the user who created the notebook.
|
|
11204
|
+
# @return [String]
|
|
11205
|
+
#
|
|
11206
|
+
# @!attribute [rw] updated_at
|
|
11207
|
+
# The timestamp of when the notebook was last updated.
|
|
11079
11208
|
# @return [Time]
|
|
11080
11209
|
#
|
|
11081
|
-
# @!attribute [rw]
|
|
11082
|
-
# The
|
|
11083
|
-
# @return [
|
|
11210
|
+
# @!attribute [rw] updated_by
|
|
11211
|
+
# The identifier of the user who last updated the notebook.
|
|
11212
|
+
# @return [String]
|
|
11213
|
+
#
|
|
11214
|
+
# @!attribute [rw] locked_by
|
|
11215
|
+
# The identifier of the user who locked the notebook.
|
|
11216
|
+
# @return [String]
|
|
11217
|
+
#
|
|
11218
|
+
# @!attribute [rw] locked_at
|
|
11219
|
+
# The timestamp of when the notebook was locked.
|
|
11220
|
+
# @return [Time]
|
|
11221
|
+
#
|
|
11222
|
+
# @!attribute [rw] lock_expires_at
|
|
11223
|
+
# The timestamp of when the notebook lock expires.
|
|
11224
|
+
# @return [Time]
|
|
11225
|
+
#
|
|
11226
|
+
# @!attribute [rw] compute_id
|
|
11227
|
+
# The identifier of the compute associated with the notebook.
|
|
11228
|
+
# @return [String]
|
|
11229
|
+
#
|
|
11230
|
+
# @!attribute [rw] metadata
|
|
11231
|
+
# The metadata of the notebook.
|
|
11232
|
+
# @return [Hash<String,String>]
|
|
11233
|
+
#
|
|
11234
|
+
# @!attribute [rw] parameters
|
|
11235
|
+
# The sensitive parameters of the notebook.
|
|
11236
|
+
# @return [Hash<String,String>]
|
|
11237
|
+
#
|
|
11238
|
+
# @!attribute [rw] environment_configuration
|
|
11239
|
+
# The environment configuration of the notebook.
|
|
11240
|
+
# @return [Types::EnvironmentConfig]
|
|
11241
|
+
#
|
|
11242
|
+
# @!attribute [rw] error
|
|
11243
|
+
# The error details if the notebook is in a failed state.
|
|
11244
|
+
# @return [Types::NotebookError]
|
|
11245
|
+
#
|
|
11246
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetNotebookOutput AWS API Documentation
|
|
11247
|
+
#
|
|
11248
|
+
class GetNotebookOutput < Struct.new(
|
|
11249
|
+
:id,
|
|
11250
|
+
:name,
|
|
11251
|
+
:owning_project_id,
|
|
11252
|
+
:domain_id,
|
|
11253
|
+
:cell_order,
|
|
11254
|
+
:status,
|
|
11255
|
+
:description,
|
|
11256
|
+
:created_at,
|
|
11257
|
+
:created_by,
|
|
11258
|
+
:updated_at,
|
|
11259
|
+
:updated_by,
|
|
11260
|
+
:locked_by,
|
|
11261
|
+
:locked_at,
|
|
11262
|
+
:lock_expires_at,
|
|
11263
|
+
:compute_id,
|
|
11264
|
+
:metadata,
|
|
11265
|
+
:parameters,
|
|
11266
|
+
:environment_configuration,
|
|
11267
|
+
:error)
|
|
11268
|
+
SENSITIVE = [:name, :description, :metadata, :parameters]
|
|
11269
|
+
include Aws::Structure
|
|
11270
|
+
end
|
|
11271
|
+
|
|
11272
|
+
# @!attribute [rw] domain_identifier
|
|
11273
|
+
# The identifier of the Amazon SageMaker Unified Studio domain in
|
|
11274
|
+
# which the notebook run exists.
|
|
11275
|
+
# @return [String]
|
|
11276
|
+
#
|
|
11277
|
+
# @!attribute [rw] identifier
|
|
11278
|
+
# The identifier of the notebook run.
|
|
11279
|
+
# @return [String]
|
|
11280
|
+
#
|
|
11281
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetNotebookRunInput AWS API Documentation
|
|
11282
|
+
#
|
|
11283
|
+
class GetNotebookRunInput < Struct.new(
|
|
11284
|
+
:domain_identifier,
|
|
11285
|
+
:identifier)
|
|
11286
|
+
SENSITIVE = []
|
|
11287
|
+
include Aws::Structure
|
|
11288
|
+
end
|
|
11289
|
+
|
|
11290
|
+
# @!attribute [rw] id
|
|
11291
|
+
# The identifier of the notebook run.
|
|
11292
|
+
# @return [String]
|
|
11293
|
+
#
|
|
11294
|
+
# @!attribute [rw] domain_id
|
|
11295
|
+
# The identifier of the Amazon SageMaker Unified Studio domain.
|
|
11296
|
+
# @return [String]
|
|
11297
|
+
#
|
|
11298
|
+
# @!attribute [rw] owning_project_id
|
|
11299
|
+
# The identifier of the project that owns the notebook run.
|
|
11300
|
+
# @return [String]
|
|
11301
|
+
#
|
|
11302
|
+
# @!attribute [rw] notebook_id
|
|
11303
|
+
# The identifier of the notebook.
|
|
11304
|
+
# @return [String]
|
|
11305
|
+
#
|
|
11306
|
+
# @!attribute [rw] schedule_id
|
|
11307
|
+
# The identifier of the schedule associated with the notebook run.
|
|
11308
|
+
# @return [String]
|
|
11309
|
+
#
|
|
11310
|
+
# @!attribute [rw] status
|
|
11311
|
+
# The status of the notebook run.
|
|
11312
|
+
# @return [String]
|
|
11313
|
+
#
|
|
11314
|
+
# @!attribute [rw] cell_order
|
|
11315
|
+
# The ordered list of cells in the notebook run.
|
|
11316
|
+
# @return [Array<Types::CellInformation>]
|
|
11317
|
+
#
|
|
11318
|
+
# @!attribute [rw] metadata
|
|
11319
|
+
# The metadata of the notebook run.
|
|
11320
|
+
# @return [Hash<String,String>]
|
|
11321
|
+
#
|
|
11322
|
+
# @!attribute [rw] parameters
|
|
11323
|
+
# The sensitive parameters of the notebook run.
|
|
11324
|
+
# @return [Hash<String,String>]
|
|
11325
|
+
#
|
|
11326
|
+
# @!attribute [rw] compute_configuration
|
|
11327
|
+
# The compute configuration of the notebook run.
|
|
11328
|
+
# @return [Types::ComputeConfig]
|
|
11329
|
+
#
|
|
11330
|
+
# @!attribute [rw] network_configuration
|
|
11331
|
+
# The network configuration of the notebook run.
|
|
11332
|
+
# @return [Types::NetworkConfig]
|
|
11333
|
+
#
|
|
11334
|
+
# @!attribute [rw] timeout_configuration
|
|
11335
|
+
# The timeout configuration of the notebook run.
|
|
11336
|
+
# @return [Types::TimeoutConfig]
|
|
11337
|
+
#
|
|
11338
|
+
# @!attribute [rw] environment_configuration
|
|
11339
|
+
# The environment configuration of the notebook run, including image
|
|
11340
|
+
# version and package settings.
|
|
11341
|
+
# @return [Types::EnvironmentConfig]
|
|
11342
|
+
#
|
|
11343
|
+
# @!attribute [rw] storage_configuration
|
|
11344
|
+
# The storage configuration of the notebook run, including the Amazon
|
|
11345
|
+
# Simple Storage Service path and KMS key ARN.
|
|
11346
|
+
# @return [Types::StorageConfig]
|
|
11347
|
+
#
|
|
11348
|
+
# @!attribute [rw] trigger_source
|
|
11349
|
+
# The source that triggered the notebook run.
|
|
11350
|
+
# @return [Types::TriggerSource]
|
|
11351
|
+
#
|
|
11352
|
+
# @!attribute [rw] error
|
|
11353
|
+
# The error details if the notebook run failed.
|
|
11354
|
+
# @return [Types::NotebookRunError]
|
|
11355
|
+
#
|
|
11356
|
+
# @!attribute [rw] created_at
|
|
11357
|
+
# The timestamp of when the notebook run was created.
|
|
11358
|
+
# @return [Time]
|
|
11359
|
+
#
|
|
11360
|
+
# @!attribute [rw] created_by
|
|
11361
|
+
# The identifier of the user who created the notebook run.
|
|
11362
|
+
# @return [String]
|
|
11363
|
+
#
|
|
11364
|
+
# @!attribute [rw] updated_at
|
|
11365
|
+
# The timestamp of when the notebook run was last updated.
|
|
11366
|
+
# @return [Time]
|
|
11367
|
+
#
|
|
11368
|
+
# @!attribute [rw] updated_by
|
|
11369
|
+
# The identifier of the user who last updated the notebook run.
|
|
11370
|
+
# @return [String]
|
|
11371
|
+
#
|
|
11372
|
+
# @!attribute [rw] started_at
|
|
11373
|
+
# The timestamp of when the notebook run started executing.
|
|
11374
|
+
# @return [Time]
|
|
11375
|
+
#
|
|
11376
|
+
# @!attribute [rw] completed_at
|
|
11377
|
+
# The timestamp of when the notebook run completed.
|
|
11378
|
+
# @return [Time]
|
|
11379
|
+
#
|
|
11380
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetNotebookRunOutput AWS API Documentation
|
|
11381
|
+
#
|
|
11382
|
+
class GetNotebookRunOutput < Struct.new(
|
|
11383
|
+
:id,
|
|
11384
|
+
:domain_id,
|
|
11385
|
+
:owning_project_id,
|
|
11386
|
+
:notebook_id,
|
|
11387
|
+
:schedule_id,
|
|
11388
|
+
:status,
|
|
11389
|
+
:cell_order,
|
|
11390
|
+
:metadata,
|
|
11391
|
+
:parameters,
|
|
11392
|
+
:compute_configuration,
|
|
11393
|
+
:network_configuration,
|
|
11394
|
+
:timeout_configuration,
|
|
11395
|
+
:environment_configuration,
|
|
11396
|
+
:storage_configuration,
|
|
11397
|
+
:trigger_source,
|
|
11398
|
+
:error,
|
|
11399
|
+
:created_at,
|
|
11400
|
+
:created_by,
|
|
11401
|
+
:updated_at,
|
|
11402
|
+
:updated_by,
|
|
11403
|
+
:started_at,
|
|
11404
|
+
:completed_at)
|
|
11405
|
+
SENSITIVE = [:metadata, :parameters]
|
|
11406
|
+
include Aws::Structure
|
|
11407
|
+
end
|
|
11408
|
+
|
|
11409
|
+
# @!attribute [rw] domain_identifier
|
|
11410
|
+
# The ID of the Amazon DataZone domain in which the project exists.
|
|
11411
|
+
# @return [String]
|
|
11412
|
+
#
|
|
11413
|
+
# @!attribute [rw] identifier
|
|
11414
|
+
# The ID of the project.
|
|
11415
|
+
# @return [String]
|
|
11416
|
+
#
|
|
11417
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetProjectInput AWS API Documentation
|
|
11418
|
+
#
|
|
11419
|
+
class GetProjectInput < Struct.new(
|
|
11420
|
+
:domain_identifier,
|
|
11421
|
+
:identifier)
|
|
11422
|
+
SENSITIVE = []
|
|
11423
|
+
include Aws::Structure
|
|
11424
|
+
end
|
|
11425
|
+
|
|
11426
|
+
# @!attribute [rw] domain_id
|
|
11427
|
+
# The ID of the Amazon DataZone domain in which the project exists.
|
|
11428
|
+
# @return [String]
|
|
11429
|
+
#
|
|
11430
|
+
# @!attribute [rw] id
|
|
11431
|
+
# >The ID of the project.
|
|
11432
|
+
# @return [String]
|
|
11433
|
+
#
|
|
11434
|
+
# @!attribute [rw] name
|
|
11435
|
+
# The name of the project.
|
|
11436
|
+
# @return [String]
|
|
11437
|
+
#
|
|
11438
|
+
# @!attribute [rw] description
|
|
11439
|
+
# The description of the project.
|
|
11440
|
+
# @return [String]
|
|
11441
|
+
#
|
|
11442
|
+
# @!attribute [rw] project_status
|
|
11443
|
+
# The status of the project.
|
|
11444
|
+
# @return [String]
|
|
11445
|
+
#
|
|
11446
|
+
# @!attribute [rw] failure_reasons
|
|
11447
|
+
# Specifies the error message that is returned if the operation cannot
|
|
11448
|
+
# be successfully completed.
|
|
11449
|
+
# @return [Array<Types::ProjectDeletionError>]
|
|
11450
|
+
#
|
|
11451
|
+
# @!attribute [rw] created_by
|
|
11452
|
+
# The Amazon DataZone user who created the project.
|
|
11453
|
+
# @return [String]
|
|
11454
|
+
#
|
|
11455
|
+
# @!attribute [rw] created_at
|
|
11456
|
+
# The timestamp of when the project was created.
|
|
11457
|
+
# @return [Time]
|
|
11458
|
+
#
|
|
11459
|
+
# @!attribute [rw] last_updated_at
|
|
11460
|
+
# The timestamp of when the project was last updated.
|
|
11461
|
+
# @return [Time]
|
|
11462
|
+
#
|
|
11463
|
+
# @!attribute [rw] resource_tags
|
|
11464
|
+
# The resource tags of the project.
|
|
11465
|
+
# @return [Array<Types::ResourceTag>]
|
|
11084
11466
|
#
|
|
11085
11467
|
# @!attribute [rw] glossary_terms
|
|
11086
11468
|
# The business glossary terms that can be used in the project.
|
|
@@ -14782,8 +15164,8 @@ module Aws::DataZone
|
|
|
14782
15164
|
end
|
|
14783
15165
|
|
|
14784
15166
|
# @!attribute [rw] domain_identifier
|
|
14785
|
-
# The identifier of the Amazon
|
|
14786
|
-
# notebook runs.
|
|
15167
|
+
# The identifier of the Amazon SageMaker Unified Studio domain in
|
|
15168
|
+
# which to list notebook runs.
|
|
14787
15169
|
# @return [String]
|
|
14788
15170
|
#
|
|
14789
15171
|
# @!attribute [rw] owning_project_identifier
|
|
@@ -14859,33 +15241,105 @@ module Aws::DataZone
|
|
|
14859
15241
|
end
|
|
14860
15242
|
|
|
14861
15243
|
# @!attribute [rw] domain_identifier
|
|
14862
|
-
# The identifier of the Amazon
|
|
15244
|
+
# The identifier of the Amazon SageMaker Unified Studio domain in
|
|
15245
|
+
# which to list notebooks.
|
|
14863
15246
|
# @return [String]
|
|
14864
15247
|
#
|
|
14865
|
-
# @!attribute [rw]
|
|
14866
|
-
# The
|
|
15248
|
+
# @!attribute [rw] owning_project_identifier
|
|
15249
|
+
# The identifier of the project that owns the notebooks.
|
|
14867
15250
|
# @return [String]
|
|
14868
15251
|
#
|
|
14869
|
-
# @!attribute [rw]
|
|
14870
|
-
# The
|
|
14871
|
-
#
|
|
15252
|
+
# @!attribute [rw] max_results
|
|
15253
|
+
# The maximum number of notebooks to return in a single call. When the
|
|
15254
|
+
# number of notebooks exceeds the value of `MaxResults`, the response
|
|
15255
|
+
# contains a `NextToken` value.
|
|
15256
|
+
# @return [Integer]
|
|
14872
15257
|
#
|
|
14873
|
-
# @!attribute [rw]
|
|
14874
|
-
# The
|
|
14875
|
-
# @return [
|
|
15258
|
+
# @!attribute [rw] sort_order
|
|
15259
|
+
# The sort order for the results.
|
|
15260
|
+
# @return [String]
|
|
14876
15261
|
#
|
|
14877
|
-
# @!attribute [rw]
|
|
14878
|
-
# The
|
|
14879
|
-
# @return [
|
|
15262
|
+
# @!attribute [rw] sort_by
|
|
15263
|
+
# The field to sort the results by.
|
|
15264
|
+
# @return [String]
|
|
14880
15265
|
#
|
|
14881
|
-
# @!attribute [rw]
|
|
14882
|
-
# The
|
|
15266
|
+
# @!attribute [rw] status
|
|
15267
|
+
# The status to filter notebooks by.
|
|
14883
15268
|
# @return [String]
|
|
14884
15269
|
#
|
|
14885
|
-
# @!attribute [rw]
|
|
14886
|
-
#
|
|
14887
|
-
# `
|
|
14888
|
-
# is
|
|
15270
|
+
# @!attribute [rw] next_token
|
|
15271
|
+
# When the number of notebooks is greater than the default value for
|
|
15272
|
+
# the `MaxResults` parameter, or if you explicitly specify a value for
|
|
15273
|
+
# `MaxResults` that is less than the number of notebooks, the response
|
|
15274
|
+
# includes a pagination token named `NextToken`. You can specify this
|
|
15275
|
+
# `NextToken` value in a subsequent call to `ListNotebooks` to list
|
|
15276
|
+
# the next set of notebooks.
|
|
15277
|
+
# @return [String]
|
|
15278
|
+
#
|
|
15279
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListNotebooksInput AWS API Documentation
|
|
15280
|
+
#
|
|
15281
|
+
class ListNotebooksInput < Struct.new(
|
|
15282
|
+
:domain_identifier,
|
|
15283
|
+
:owning_project_identifier,
|
|
15284
|
+
:max_results,
|
|
15285
|
+
:sort_order,
|
|
15286
|
+
:sort_by,
|
|
15287
|
+
:status,
|
|
15288
|
+
:next_token)
|
|
15289
|
+
SENSITIVE = []
|
|
15290
|
+
include Aws::Structure
|
|
15291
|
+
end
|
|
15292
|
+
|
|
15293
|
+
# @!attribute [rw] items
|
|
15294
|
+
# The results of the `ListNotebooks` action.
|
|
15295
|
+
# @return [Array<Types::NotebookSummary>]
|
|
15296
|
+
#
|
|
15297
|
+
# @!attribute [rw] next_token
|
|
15298
|
+
# When the number of notebooks is greater than the default value for
|
|
15299
|
+
# the `MaxResults` parameter, or if you explicitly specify a value for
|
|
15300
|
+
# `MaxResults` that is less than the number of notebooks, the response
|
|
15301
|
+
# includes a pagination token named `NextToken`. You can specify this
|
|
15302
|
+
# `NextToken` value in a subsequent call to `ListNotebooks` to list
|
|
15303
|
+
# the next set of notebooks.
|
|
15304
|
+
# @return [String]
|
|
15305
|
+
#
|
|
15306
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListNotebooksOutput AWS API Documentation
|
|
15307
|
+
#
|
|
15308
|
+
class ListNotebooksOutput < Struct.new(
|
|
15309
|
+
:items,
|
|
15310
|
+
:next_token)
|
|
15311
|
+
SENSITIVE = []
|
|
15312
|
+
include Aws::Structure
|
|
15313
|
+
end
|
|
15314
|
+
|
|
15315
|
+
# @!attribute [rw] domain_identifier
|
|
15316
|
+
# The identifier of the Amazon DataZone domain.
|
|
15317
|
+
# @return [String]
|
|
15318
|
+
#
|
|
15319
|
+
# @!attribute [rw] type
|
|
15320
|
+
# The type of notifications.
|
|
15321
|
+
# @return [String]
|
|
15322
|
+
#
|
|
15323
|
+
# @!attribute [rw] after_timestamp
|
|
15324
|
+
# The time after which you want to list notifications.
|
|
15325
|
+
# @return [Time]
|
|
15326
|
+
#
|
|
15327
|
+
# @!attribute [rw] before_timestamp
|
|
15328
|
+
# The time before which you want to list notifications.
|
|
15329
|
+
# @return [Time]
|
|
15330
|
+
#
|
|
15331
|
+
# @!attribute [rw] subjects
|
|
15332
|
+
# The subjects of notifications.
|
|
15333
|
+
# @return [Array<String>]
|
|
15334
|
+
#
|
|
15335
|
+
# @!attribute [rw] task_status
|
|
15336
|
+
# The task status of notifications.
|
|
15337
|
+
# @return [String]
|
|
15338
|
+
#
|
|
15339
|
+
# @!attribute [rw] max_results
|
|
15340
|
+
# The maximum number of notifications to return in a single call to
|
|
15341
|
+
# `ListNotifications`. When the number of notifications to be listed
|
|
15342
|
+
# is greater than the value of `MaxResults`, the response contains a
|
|
14889
15343
|
# `NextToken` value that you can use in a subsequent call to
|
|
14890
15344
|
# `ListNotifications` to list the next set of notifications.
|
|
14891
15345
|
# @return [Integer]
|
|
@@ -16318,7 +16772,8 @@ module Aws::DataZone
|
|
|
16318
16772
|
include Aws::Structure
|
|
16319
16773
|
end
|
|
16320
16774
|
|
|
16321
|
-
# The network configuration for a notebook run in Amazon
|
|
16775
|
+
# The network configuration for a notebook run in Amazon SageMaker
|
|
16776
|
+
# Unified Studio.
|
|
16322
16777
|
#
|
|
16323
16778
|
# @!attribute [rw] network_access_type
|
|
16324
16779
|
# The network access type for the notebook run. Valid values are
|
|
@@ -16408,7 +16863,37 @@ module Aws::DataZone
|
|
|
16408
16863
|
include Aws::Structure
|
|
16409
16864
|
end
|
|
16410
16865
|
|
|
16411
|
-
# The error details of a
|
|
16866
|
+
# The error details of a notebook in Amazon SageMaker Unified Studio.
|
|
16867
|
+
#
|
|
16868
|
+
# @!attribute [rw] message
|
|
16869
|
+
# The error message. The maximum length is 256 characters.
|
|
16870
|
+
# @return [String]
|
|
16871
|
+
#
|
|
16872
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/NotebookError AWS API Documentation
|
|
16873
|
+
#
|
|
16874
|
+
class NotebookError < Struct.new(
|
|
16875
|
+
:message)
|
|
16876
|
+
SENSITIVE = []
|
|
16877
|
+
include Aws::Structure
|
|
16878
|
+
end
|
|
16879
|
+
|
|
16880
|
+
# The error details of a failed notebook export in Amazon SageMaker
|
|
16881
|
+
# Unified Studio.
|
|
16882
|
+
#
|
|
16883
|
+
# @!attribute [rw] message
|
|
16884
|
+
# The error message. The maximum length is 256 characters.
|
|
16885
|
+
# @return [String]
|
|
16886
|
+
#
|
|
16887
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/NotebookExportError AWS API Documentation
|
|
16888
|
+
#
|
|
16889
|
+
class NotebookExportError < Struct.new(
|
|
16890
|
+
:message)
|
|
16891
|
+
SENSITIVE = []
|
|
16892
|
+
include Aws::Structure
|
|
16893
|
+
end
|
|
16894
|
+
|
|
16895
|
+
# The error details of a failed notebook run in Amazon SageMaker Unified
|
|
16896
|
+
# Studio.
|
|
16412
16897
|
#
|
|
16413
16898
|
# @!attribute [rw] message
|
|
16414
16899
|
# The error message. The maximum length is 1024 characters.
|
|
@@ -16422,14 +16907,14 @@ module Aws::DataZone
|
|
|
16422
16907
|
include Aws::Structure
|
|
16423
16908
|
end
|
|
16424
16909
|
|
|
16425
|
-
# The summary of a notebook run in Amazon
|
|
16910
|
+
# The summary of a notebook run in Amazon SageMaker Unified Studio.
|
|
16426
16911
|
#
|
|
16427
16912
|
# @!attribute [rw] id
|
|
16428
16913
|
# The identifier of the notebook run.
|
|
16429
16914
|
# @return [String]
|
|
16430
16915
|
#
|
|
16431
16916
|
# @!attribute [rw] domain_id
|
|
16432
|
-
# The identifier of the Amazon
|
|
16917
|
+
# The identifier of the Amazon SageMaker Unified Studio domain.
|
|
16433
16918
|
# @return [String]
|
|
16434
16919
|
#
|
|
16435
16920
|
# @!attribute [rw] owning_project_id
|
|
@@ -16496,6 +16981,65 @@ module Aws::DataZone
|
|
|
16496
16981
|
include Aws::Structure
|
|
16497
16982
|
end
|
|
16498
16983
|
|
|
16984
|
+
# The summary of a notebook in Amazon SageMaker Unified Studio.
|
|
16985
|
+
#
|
|
16986
|
+
# @!attribute [rw] id
|
|
16987
|
+
# The identifier of the notebook.
|
|
16988
|
+
# @return [String]
|
|
16989
|
+
#
|
|
16990
|
+
# @!attribute [rw] name
|
|
16991
|
+
# The name of the notebook.
|
|
16992
|
+
# @return [String]
|
|
16993
|
+
#
|
|
16994
|
+
# @!attribute [rw] owning_project_id
|
|
16995
|
+
# The identifier of the project that owns the notebook.
|
|
16996
|
+
# @return [String]
|
|
16997
|
+
#
|
|
16998
|
+
# @!attribute [rw] domain_id
|
|
16999
|
+
# The identifier of the Amazon SageMaker Unified Studio domain.
|
|
17000
|
+
# @return [String]
|
|
17001
|
+
#
|
|
17002
|
+
# @!attribute [rw] status
|
|
17003
|
+
# The status of the notebook.
|
|
17004
|
+
# @return [String]
|
|
17005
|
+
#
|
|
17006
|
+
# @!attribute [rw] description
|
|
17007
|
+
# The description of the notebook.
|
|
17008
|
+
# @return [String]
|
|
17009
|
+
#
|
|
17010
|
+
# @!attribute [rw] created_at
|
|
17011
|
+
# The timestamp of when the notebook was created.
|
|
17012
|
+
# @return [Time]
|
|
17013
|
+
#
|
|
17014
|
+
# @!attribute [rw] created_by
|
|
17015
|
+
# The identifier of the user who created the notebook.
|
|
17016
|
+
# @return [String]
|
|
17017
|
+
#
|
|
17018
|
+
# @!attribute [rw] updated_at
|
|
17019
|
+
# The timestamp of when the notebook was last updated.
|
|
17020
|
+
# @return [Time]
|
|
17021
|
+
#
|
|
17022
|
+
# @!attribute [rw] updated_by
|
|
17023
|
+
# The identifier of the user who last updated the notebook.
|
|
17024
|
+
# @return [String]
|
|
17025
|
+
#
|
|
17026
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/NotebookSummary AWS API Documentation
|
|
17027
|
+
#
|
|
17028
|
+
class NotebookSummary < Struct.new(
|
|
17029
|
+
:id,
|
|
17030
|
+
:name,
|
|
17031
|
+
:owning_project_id,
|
|
17032
|
+
:domain_id,
|
|
17033
|
+
:status,
|
|
17034
|
+
:description,
|
|
17035
|
+
:created_at,
|
|
17036
|
+
:created_by,
|
|
17037
|
+
:updated_at,
|
|
17038
|
+
:updated_by)
|
|
17039
|
+
SENSITIVE = [:name, :description]
|
|
17040
|
+
include Aws::Structure
|
|
17041
|
+
end
|
|
17042
|
+
|
|
16499
17043
|
# The details of a notification generated in Amazon DataZone.
|
|
16500
17044
|
#
|
|
16501
17045
|
# @!attribute [rw] identifier
|
|
@@ -16679,6 +17223,29 @@ module Aws::DataZone
|
|
|
16679
17223
|
include Aws::Structure
|
|
16680
17224
|
end
|
|
16681
17225
|
|
|
17226
|
+
# The output location for a notebook export in Amazon SageMaker Unified
|
|
17227
|
+
# Studio.
|
|
17228
|
+
#
|
|
17229
|
+
# @note OutputLocation is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of OutputLocation corresponding to the set member.
|
|
17230
|
+
#
|
|
17231
|
+
# @!attribute [rw] s3
|
|
17232
|
+
# The Amazon Simple Storage Service destination for the notebook
|
|
17233
|
+
# export.
|
|
17234
|
+
# @return [Types::S3Destination]
|
|
17235
|
+
#
|
|
17236
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/OutputLocation AWS API Documentation
|
|
17237
|
+
#
|
|
17238
|
+
class OutputLocation < Struct.new(
|
|
17239
|
+
:s3,
|
|
17240
|
+
:unknown)
|
|
17241
|
+
SENSITIVE = []
|
|
17242
|
+
include Aws::Structure
|
|
17243
|
+
include Aws::Structure::Union
|
|
17244
|
+
|
|
17245
|
+
class S3 < OutputLocation; end
|
|
17246
|
+
class Unknown < OutputLocation; end
|
|
17247
|
+
end
|
|
17248
|
+
|
|
16682
17249
|
# The grant details of the override domain unit owners policy.
|
|
16683
17250
|
#
|
|
16684
17251
|
# @!attribute [rw] include_child_domain_units
|
|
@@ -16818,7 +17385,7 @@ module Aws::DataZone
|
|
|
16818
17385
|
end
|
|
16819
17386
|
|
|
16820
17387
|
# The package configuration for a notebook run environment in Amazon
|
|
16821
|
-
#
|
|
17388
|
+
# SageMaker Unified Studio.
|
|
16822
17389
|
#
|
|
16823
17390
|
# @!attribute [rw] package_manager
|
|
16824
17391
|
# The package manager for the notebook run environment. The default
|
|
@@ -19087,6 +19654,21 @@ module Aws::DataZone
|
|
|
19087
19654
|
include Aws::Structure
|
|
19088
19655
|
end
|
|
19089
19656
|
|
|
19657
|
+
# The Amazon Simple Storage Service destination for a notebook export in
|
|
19658
|
+
# Amazon SageMaker Unified Studio.
|
|
19659
|
+
#
|
|
19660
|
+
# @!attribute [rw] uri
|
|
19661
|
+
# The Amazon Simple Storage Service URI of the exported notebook.
|
|
19662
|
+
# @return [String]
|
|
19663
|
+
#
|
|
19664
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/S3Destination AWS API Documentation
|
|
19665
|
+
#
|
|
19666
|
+
class S3Destination < Struct.new(
|
|
19667
|
+
:uri)
|
|
19668
|
+
SENSITIVE = [:uri]
|
|
19669
|
+
include Aws::Structure
|
|
19670
|
+
end
|
|
19671
|
+
|
|
19090
19672
|
# The Amazon S3 properties of a connection.
|
|
19091
19673
|
#
|
|
19092
19674
|
# @!attribute [rw] s3_uri
|
|
@@ -19864,6 +20446,30 @@ module Aws::DataZone
|
|
|
19864
20446
|
include Aws::Structure
|
|
19865
20447
|
end
|
|
19866
20448
|
|
|
20449
|
+
# The source location for a notebook import in Amazon SageMaker Unified
|
|
20450
|
+
# Studio.
|
|
20451
|
+
#
|
|
20452
|
+
# @note SourceLocation is a union - when making an API calls you must set exactly one of the members.
|
|
20453
|
+
#
|
|
20454
|
+
# @note SourceLocation is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SourceLocation corresponding to the set member.
|
|
20455
|
+
#
|
|
20456
|
+
# @!attribute [rw] s3
|
|
20457
|
+
# The Amazon Simple Storage Service URI of the notebook source file.
|
|
20458
|
+
# @return [String]
|
|
20459
|
+
#
|
|
20460
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SourceLocation AWS API Documentation
|
|
20461
|
+
#
|
|
20462
|
+
class SourceLocation < Struct.new(
|
|
20463
|
+
:s3,
|
|
20464
|
+
:unknown)
|
|
20465
|
+
SENSITIVE = [:s3]
|
|
20466
|
+
include Aws::Structure
|
|
20467
|
+
include Aws::Structure::Union
|
|
20468
|
+
|
|
20469
|
+
class S3 < SourceLocation; end
|
|
20470
|
+
class Unknown < SourceLocation; end
|
|
20471
|
+
end
|
|
20472
|
+
|
|
19867
20473
|
# The Spark EMR properties.
|
|
19868
20474
|
#
|
|
19869
20475
|
# @!attribute [rw] compute_arn
|
|
@@ -20397,8 +21003,189 @@ module Aws::DataZone
|
|
|
20397
21003
|
end
|
|
20398
21004
|
|
|
20399
21005
|
# @!attribute [rw] domain_identifier
|
|
20400
|
-
# The identifier of the Amazon
|
|
20401
|
-
#
|
|
21006
|
+
# The identifier of the Amazon SageMaker Unified Studio domain in
|
|
21007
|
+
# which to export the notebook.
|
|
21008
|
+
# @return [String]
|
|
21009
|
+
#
|
|
21010
|
+
# @!attribute [rw] notebook_identifier
|
|
21011
|
+
# The identifier of the notebook to export.
|
|
21012
|
+
# @return [String]
|
|
21013
|
+
#
|
|
21014
|
+
# @!attribute [rw] owning_project_identifier
|
|
21015
|
+
# The identifier of the project that owns the notebook.
|
|
21016
|
+
# @return [String]
|
|
21017
|
+
#
|
|
21018
|
+
# @!attribute [rw] file_format
|
|
21019
|
+
# The file format for the notebook export. Valid values are `PDF` and
|
|
21020
|
+
# `IPYNB`.
|
|
21021
|
+
# @return [String]
|
|
21022
|
+
#
|
|
21023
|
+
# @!attribute [rw] client_token
|
|
21024
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
21025
|
+
# request. This field is automatically populated if not provided.
|
|
21026
|
+
#
|
|
21027
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
21028
|
+
# not need to pass this option.
|
|
21029
|
+
# @return [String]
|
|
21030
|
+
#
|
|
21031
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/StartNotebookExportInput AWS API Documentation
|
|
21032
|
+
#
|
|
21033
|
+
class StartNotebookExportInput < Struct.new(
|
|
21034
|
+
:domain_identifier,
|
|
21035
|
+
:notebook_identifier,
|
|
21036
|
+
:owning_project_identifier,
|
|
21037
|
+
:file_format,
|
|
21038
|
+
:client_token)
|
|
21039
|
+
SENSITIVE = []
|
|
21040
|
+
include Aws::Structure
|
|
21041
|
+
end
|
|
21042
|
+
|
|
21043
|
+
# @!attribute [rw] id
|
|
21044
|
+
# The identifier of the notebook export.
|
|
21045
|
+
# @return [String]
|
|
21046
|
+
#
|
|
21047
|
+
# @!attribute [rw] domain_id
|
|
21048
|
+
# The identifier of the Amazon SageMaker Unified Studio domain.
|
|
21049
|
+
# @return [String]
|
|
21050
|
+
#
|
|
21051
|
+
# @!attribute [rw] owning_project_id
|
|
21052
|
+
# The identifier of the project that owns the notebook.
|
|
21053
|
+
# @return [String]
|
|
21054
|
+
#
|
|
21055
|
+
# @!attribute [rw] notebook_id
|
|
21056
|
+
# The identifier of the notebook.
|
|
21057
|
+
# @return [String]
|
|
21058
|
+
#
|
|
21059
|
+
# @!attribute [rw] file_format
|
|
21060
|
+
# The file format of the notebook export.
|
|
21061
|
+
# @return [String]
|
|
21062
|
+
#
|
|
21063
|
+
# @!attribute [rw] status
|
|
21064
|
+
# The status of the notebook export.
|
|
21065
|
+
# @return [String]
|
|
21066
|
+
#
|
|
21067
|
+
# @!attribute [rw] created_at
|
|
21068
|
+
# The timestamp of when the notebook export was started.
|
|
21069
|
+
# @return [Time]
|
|
21070
|
+
#
|
|
21071
|
+
# @!attribute [rw] created_by
|
|
21072
|
+
# The identifier of the user who started the notebook export.
|
|
21073
|
+
# @return [String]
|
|
21074
|
+
#
|
|
21075
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/StartNotebookExportOutput AWS API Documentation
|
|
21076
|
+
#
|
|
21077
|
+
class StartNotebookExportOutput < Struct.new(
|
|
21078
|
+
:id,
|
|
21079
|
+
:domain_id,
|
|
21080
|
+
:owning_project_id,
|
|
21081
|
+
:notebook_id,
|
|
21082
|
+
:file_format,
|
|
21083
|
+
:status,
|
|
21084
|
+
:created_at,
|
|
21085
|
+
:created_by)
|
|
21086
|
+
SENSITIVE = []
|
|
21087
|
+
include Aws::Structure
|
|
21088
|
+
end
|
|
21089
|
+
|
|
21090
|
+
# @!attribute [rw] domain_identifier
|
|
21091
|
+
# The identifier of the Amazon SageMaker Unified Studio domain in
|
|
21092
|
+
# which to import the notebook.
|
|
21093
|
+
# @return [String]
|
|
21094
|
+
#
|
|
21095
|
+
# @!attribute [rw] owning_project_identifier
|
|
21096
|
+
# The identifier of the project that will own the imported notebook.
|
|
21097
|
+
# @return [String]
|
|
21098
|
+
#
|
|
21099
|
+
# @!attribute [rw] source_location
|
|
21100
|
+
# The source location of the notebook to import. This specifies the
|
|
21101
|
+
# Amazon Simple Storage Service URI of the notebook file.
|
|
21102
|
+
# @return [Types::SourceLocation]
|
|
21103
|
+
#
|
|
21104
|
+
# @!attribute [rw] name
|
|
21105
|
+
# The name of the imported notebook. The name must be between 1 and
|
|
21106
|
+
# 256 characters.
|
|
21107
|
+
# @return [String]
|
|
21108
|
+
#
|
|
21109
|
+
# @!attribute [rw] description
|
|
21110
|
+
# The description of the imported notebook.
|
|
21111
|
+
# @return [String]
|
|
21112
|
+
#
|
|
21113
|
+
# @!attribute [rw] client_token
|
|
21114
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
21115
|
+
# request. This field is automatically populated if not provided.
|
|
21116
|
+
#
|
|
21117
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
21118
|
+
# not need to pass this option.
|
|
21119
|
+
# @return [String]
|
|
21120
|
+
#
|
|
21121
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/StartNotebookImportInput AWS API Documentation
|
|
21122
|
+
#
|
|
21123
|
+
class StartNotebookImportInput < Struct.new(
|
|
21124
|
+
:domain_identifier,
|
|
21125
|
+
:owning_project_identifier,
|
|
21126
|
+
:source_location,
|
|
21127
|
+
:name,
|
|
21128
|
+
:description,
|
|
21129
|
+
:client_token)
|
|
21130
|
+
SENSITIVE = [:name, :description]
|
|
21131
|
+
include Aws::Structure
|
|
21132
|
+
end
|
|
21133
|
+
|
|
21134
|
+
# @!attribute [rw] notebook_id
|
|
21135
|
+
# The identifier of the imported notebook.
|
|
21136
|
+
# @return [String]
|
|
21137
|
+
#
|
|
21138
|
+
# @!attribute [rw] status
|
|
21139
|
+
# The status of the notebook import.
|
|
21140
|
+
# @return [String]
|
|
21141
|
+
#
|
|
21142
|
+
# @!attribute [rw] domain_id
|
|
21143
|
+
# The identifier of the Amazon SageMaker Unified Studio domain.
|
|
21144
|
+
# @return [String]
|
|
21145
|
+
#
|
|
21146
|
+
# @!attribute [rw] owning_project_id
|
|
21147
|
+
# The identifier of the project that owns the imported notebook.
|
|
21148
|
+
# @return [String]
|
|
21149
|
+
#
|
|
21150
|
+
# @!attribute [rw] name
|
|
21151
|
+
# The name of the imported notebook.
|
|
21152
|
+
# @return [String]
|
|
21153
|
+
#
|
|
21154
|
+
# @!attribute [rw] description
|
|
21155
|
+
# The description of the imported notebook.
|
|
21156
|
+
# @return [String]
|
|
21157
|
+
#
|
|
21158
|
+
# @!attribute [rw] source_location
|
|
21159
|
+
# The source location from which the notebook was imported.
|
|
21160
|
+
# @return [Types::SourceLocation]
|
|
21161
|
+
#
|
|
21162
|
+
# @!attribute [rw] created_at
|
|
21163
|
+
# The timestamp of when the notebook import was started.
|
|
21164
|
+
# @return [Time]
|
|
21165
|
+
#
|
|
21166
|
+
# @!attribute [rw] created_by
|
|
21167
|
+
# The identifier of the user who started the notebook import.
|
|
21168
|
+
# @return [String]
|
|
21169
|
+
#
|
|
21170
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/StartNotebookImportOutput AWS API Documentation
|
|
21171
|
+
#
|
|
21172
|
+
class StartNotebookImportOutput < Struct.new(
|
|
21173
|
+
:notebook_id,
|
|
21174
|
+
:status,
|
|
21175
|
+
:domain_id,
|
|
21176
|
+
:owning_project_id,
|
|
21177
|
+
:name,
|
|
21178
|
+
:description,
|
|
21179
|
+
:source_location,
|
|
21180
|
+
:created_at,
|
|
21181
|
+
:created_by)
|
|
21182
|
+
SENSITIVE = [:name, :description]
|
|
21183
|
+
include Aws::Structure
|
|
21184
|
+
end
|
|
21185
|
+
|
|
21186
|
+
# @!attribute [rw] domain_identifier
|
|
21187
|
+
# The identifier of the Amazon SageMaker Unified Studio domain in
|
|
21188
|
+
# which the notebook run is started.
|
|
20402
21189
|
# @return [String]
|
|
20403
21190
|
#
|
|
20404
21191
|
# @!attribute [rw] owning_project_identifier
|
|
@@ -20476,7 +21263,7 @@ module Aws::DataZone
|
|
|
20476
21263
|
# @return [String]
|
|
20477
21264
|
#
|
|
20478
21265
|
# @!attribute [rw] domain_id
|
|
20479
|
-
# The identifier of the Amazon
|
|
21266
|
+
# The identifier of the Amazon SageMaker Unified Studio domain.
|
|
20480
21267
|
# @return [String]
|
|
20481
21268
|
#
|
|
20482
21269
|
# @!attribute [rw] owning_project_id
|
|
@@ -20591,8 +21378,8 @@ module Aws::DataZone
|
|
|
20591
21378
|
end
|
|
20592
21379
|
|
|
20593
21380
|
# @!attribute [rw] domain_identifier
|
|
20594
|
-
# The identifier of the Amazon
|
|
20595
|
-
# run is stopped.
|
|
21381
|
+
# The identifier of the Amazon SageMaker Unified Studio domain in
|
|
21382
|
+
# which the notebook run is stopped.
|
|
20596
21383
|
# @return [String]
|
|
20597
21384
|
#
|
|
20598
21385
|
# @!attribute [rw] identifier
|
|
@@ -20622,7 +21409,7 @@ module Aws::DataZone
|
|
|
20622
21409
|
# @return [String]
|
|
20623
21410
|
#
|
|
20624
21411
|
# @!attribute [rw] domain_id
|
|
20625
|
-
# The identifier of the Amazon
|
|
21412
|
+
# The identifier of the Amazon SageMaker Unified Studio domain.
|
|
20626
21413
|
# @return [String]
|
|
20627
21414
|
#
|
|
20628
21415
|
# @!attribute [rw] owning_project_id
|
|
@@ -20644,7 +21431,8 @@ module Aws::DataZone
|
|
|
20644
21431
|
include Aws::Structure
|
|
20645
21432
|
end
|
|
20646
21433
|
|
|
20647
|
-
# The storage configuration for a notebook run in Amazon
|
|
21434
|
+
# The storage configuration for a notebook run in Amazon SageMaker
|
|
21435
|
+
# Unified Studio.
|
|
20648
21436
|
#
|
|
20649
21437
|
# @!attribute [rw] project_s3_path
|
|
20650
21438
|
# The Amazon Simple Storage Service path for the project storage.
|
|
@@ -21627,7 +22415,8 @@ module Aws::DataZone
|
|
|
21627
22415
|
include Aws::Structure
|
|
21628
22416
|
end
|
|
21629
22417
|
|
|
21630
|
-
# The timeout configuration for a notebook run in Amazon
|
|
22418
|
+
# The timeout configuration for a notebook run in Amazon SageMaker
|
|
22419
|
+
# Unified Studio.
|
|
21631
22420
|
#
|
|
21632
22421
|
# @!attribute [rw] run_timeout_in_minutes
|
|
21633
22422
|
# The timeout for the notebook run, in minutes. The minimum value is
|
|
@@ -21667,7 +22456,8 @@ module Aws::DataZone
|
|
|
21667
22456
|
include Aws::Structure
|
|
21668
22457
|
end
|
|
21669
22458
|
|
|
21670
|
-
# The source that triggered a notebook run in Amazon
|
|
22459
|
+
# The source that triggered a notebook run in Amazon SageMaker Unified
|
|
22460
|
+
# Studio.
|
|
21671
22461
|
#
|
|
21672
22462
|
# @!attribute [rw] type
|
|
21673
22463
|
# The type of the trigger source. Valid values are `MANUAL`,
|
|
@@ -23159,6 +23949,171 @@ module Aws::DataZone
|
|
|
23159
23949
|
include Aws::Structure
|
|
23160
23950
|
end
|
|
23161
23951
|
|
|
23952
|
+
# @!attribute [rw] domain_identifier
|
|
23953
|
+
# The identifier of the Amazon SageMaker Unified Studio domain in
|
|
23954
|
+
# which the notebook exists.
|
|
23955
|
+
# @return [String]
|
|
23956
|
+
#
|
|
23957
|
+
# @!attribute [rw] identifier
|
|
23958
|
+
# The identifier of the notebook to update.
|
|
23959
|
+
# @return [String]
|
|
23960
|
+
#
|
|
23961
|
+
# @!attribute [rw] description
|
|
23962
|
+
# The updated description of the notebook.
|
|
23963
|
+
# @return [String]
|
|
23964
|
+
#
|
|
23965
|
+
# @!attribute [rw] status
|
|
23966
|
+
# The updated status of the notebook.
|
|
23967
|
+
# @return [String]
|
|
23968
|
+
#
|
|
23969
|
+
# @!attribute [rw] name
|
|
23970
|
+
# The updated name of the notebook.
|
|
23971
|
+
# @return [String]
|
|
23972
|
+
#
|
|
23973
|
+
# @!attribute [rw] cell_order
|
|
23974
|
+
# The updated ordered list of cells in the notebook.
|
|
23975
|
+
# @return [Array<Types::CellInformation>]
|
|
23976
|
+
#
|
|
23977
|
+
# @!attribute [rw] metadata
|
|
23978
|
+
# The updated metadata for the notebook, specified as key-value pairs.
|
|
23979
|
+
# @return [Hash<String,String>]
|
|
23980
|
+
#
|
|
23981
|
+
# @!attribute [rw] parameters
|
|
23982
|
+
# The updated sensitive parameters for the notebook, specified as
|
|
23983
|
+
# key-value pairs.
|
|
23984
|
+
# @return [Hash<String,String>]
|
|
23985
|
+
#
|
|
23986
|
+
# @!attribute [rw] environment_configuration
|
|
23987
|
+
# The updated environment configuration for the notebook.
|
|
23988
|
+
# @return [Types::EnvironmentConfig]
|
|
23989
|
+
#
|
|
23990
|
+
# @!attribute [rw] client_token
|
|
23991
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
23992
|
+
# request. This field is automatically populated if not provided.
|
|
23993
|
+
#
|
|
23994
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
23995
|
+
# not need to pass this option.
|
|
23996
|
+
# @return [String]
|
|
23997
|
+
#
|
|
23998
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateNotebookInput AWS API Documentation
|
|
23999
|
+
#
|
|
24000
|
+
class UpdateNotebookInput < Struct.new(
|
|
24001
|
+
:domain_identifier,
|
|
24002
|
+
:identifier,
|
|
24003
|
+
:description,
|
|
24004
|
+
:status,
|
|
24005
|
+
:name,
|
|
24006
|
+
:cell_order,
|
|
24007
|
+
:metadata,
|
|
24008
|
+
:parameters,
|
|
24009
|
+
:environment_configuration,
|
|
24010
|
+
:client_token)
|
|
24011
|
+
SENSITIVE = [:description, :name, :metadata, :parameters]
|
|
24012
|
+
include Aws::Structure
|
|
24013
|
+
end
|
|
24014
|
+
|
|
24015
|
+
# @!attribute [rw] id
|
|
24016
|
+
# The identifier of the notebook.
|
|
24017
|
+
# @return [String]
|
|
24018
|
+
#
|
|
24019
|
+
# @!attribute [rw] name
|
|
24020
|
+
# The name of the notebook.
|
|
24021
|
+
# @return [String]
|
|
24022
|
+
#
|
|
24023
|
+
# @!attribute [rw] owning_project_id
|
|
24024
|
+
# The identifier of the project that owns the notebook.
|
|
24025
|
+
# @return [String]
|
|
24026
|
+
#
|
|
24027
|
+
# @!attribute [rw] domain_id
|
|
24028
|
+
# The identifier of the Amazon SageMaker Unified Studio domain.
|
|
24029
|
+
# @return [String]
|
|
24030
|
+
#
|
|
24031
|
+
# @!attribute [rw] cell_order
|
|
24032
|
+
# The ordered list of cells in the notebook.
|
|
24033
|
+
# @return [Array<Types::CellInformation>]
|
|
24034
|
+
#
|
|
24035
|
+
# @!attribute [rw] status
|
|
24036
|
+
# The status of the notebook.
|
|
24037
|
+
# @return [String]
|
|
24038
|
+
#
|
|
24039
|
+
# @!attribute [rw] description
|
|
24040
|
+
# The description of the notebook.
|
|
24041
|
+
# @return [String]
|
|
24042
|
+
#
|
|
24043
|
+
# @!attribute [rw] created_at
|
|
24044
|
+
# The timestamp of when the notebook was created.
|
|
24045
|
+
# @return [Time]
|
|
24046
|
+
#
|
|
24047
|
+
# @!attribute [rw] created_by
|
|
24048
|
+
# The identifier of the user who created the notebook.
|
|
24049
|
+
# @return [String]
|
|
24050
|
+
#
|
|
24051
|
+
# @!attribute [rw] updated_at
|
|
24052
|
+
# The timestamp of when the notebook was last updated.
|
|
24053
|
+
# @return [Time]
|
|
24054
|
+
#
|
|
24055
|
+
# @!attribute [rw] updated_by
|
|
24056
|
+
# The identifier of the user who last updated the notebook.
|
|
24057
|
+
# @return [String]
|
|
24058
|
+
#
|
|
24059
|
+
# @!attribute [rw] locked_by
|
|
24060
|
+
# The identifier of the user who locked the notebook.
|
|
24061
|
+
# @return [String]
|
|
24062
|
+
#
|
|
24063
|
+
# @!attribute [rw] locked_at
|
|
24064
|
+
# The timestamp of when the notebook was locked.
|
|
24065
|
+
# @return [Time]
|
|
24066
|
+
#
|
|
24067
|
+
# @!attribute [rw] lock_expires_at
|
|
24068
|
+
# The timestamp of when the notebook lock expires.
|
|
24069
|
+
# @return [Time]
|
|
24070
|
+
#
|
|
24071
|
+
# @!attribute [rw] compute_id
|
|
24072
|
+
# The identifier of the compute associated with the notebook.
|
|
24073
|
+
# @return [String]
|
|
24074
|
+
#
|
|
24075
|
+
# @!attribute [rw] metadata
|
|
24076
|
+
# The metadata of the notebook.
|
|
24077
|
+
# @return [Hash<String,String>]
|
|
24078
|
+
#
|
|
24079
|
+
# @!attribute [rw] parameters
|
|
24080
|
+
# The sensitive parameters of the notebook.
|
|
24081
|
+
# @return [Hash<String,String>]
|
|
24082
|
+
#
|
|
24083
|
+
# @!attribute [rw] environment_configuration
|
|
24084
|
+
# The environment configuration of the notebook.
|
|
24085
|
+
# @return [Types::EnvironmentConfig]
|
|
24086
|
+
#
|
|
24087
|
+
# @!attribute [rw] error
|
|
24088
|
+
# The error details if the notebook is in a failed state.
|
|
24089
|
+
# @return [Types::NotebookError]
|
|
24090
|
+
#
|
|
24091
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateNotebookOutput AWS API Documentation
|
|
24092
|
+
#
|
|
24093
|
+
class UpdateNotebookOutput < Struct.new(
|
|
24094
|
+
:id,
|
|
24095
|
+
:name,
|
|
24096
|
+
:owning_project_id,
|
|
24097
|
+
:domain_id,
|
|
24098
|
+
:cell_order,
|
|
24099
|
+
:status,
|
|
24100
|
+
:description,
|
|
24101
|
+
:created_at,
|
|
24102
|
+
:created_by,
|
|
24103
|
+
:updated_at,
|
|
24104
|
+
:updated_by,
|
|
24105
|
+
:locked_by,
|
|
24106
|
+
:locked_at,
|
|
24107
|
+
:lock_expires_at,
|
|
24108
|
+
:compute_id,
|
|
24109
|
+
:metadata,
|
|
24110
|
+
:parameters,
|
|
24111
|
+
:environment_configuration,
|
|
24112
|
+
:error)
|
|
24113
|
+
SENSITIVE = [:name, :description, :metadata, :parameters]
|
|
24114
|
+
include Aws::Structure
|
|
24115
|
+
end
|
|
24116
|
+
|
|
23162
24117
|
# @!attribute [rw] domain_identifier
|
|
23163
24118
|
# The ID of the Amazon DataZone domain where a project is being
|
|
23164
24119
|
# updated.
|