aws-sdk-datazone 1.73.0 → 1.75.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +381 -1
- data/lib/aws-sdk-datazone/client_api.rb +275 -0
- data/lib/aws-sdk-datazone/types.rb +767 -0
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +123 -0
- data/sig/types.rbs +198 -0
- metadata +1 -1
|
@@ -1901,6 +1901,12 @@ 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 DataZone.
|
|
1905
|
+
#
|
|
1906
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CellInformation AWS API Documentation
|
|
1907
|
+
#
|
|
1908
|
+
class CellInformation < Aws::EmptyStructure; end
|
|
1909
|
+
|
|
1904
1910
|
# Part of the provisioning properties of the environment blueprint.
|
|
1905
1911
|
#
|
|
1906
1912
|
# @!attribute [rw] template_url
|
|
@@ -1930,6 +1936,25 @@ module Aws::DataZone
|
|
|
1930
1936
|
include Aws::Structure
|
|
1931
1937
|
end
|
|
1932
1938
|
|
|
1939
|
+
# The compute configuration for a notebook run in Amazon DataZone.
|
|
1940
|
+
#
|
|
1941
|
+
# @!attribute [rw] instance_type
|
|
1942
|
+
# The instance type for the notebook run compute.
|
|
1943
|
+
# @return [String]
|
|
1944
|
+
#
|
|
1945
|
+
# @!attribute [rw] environment_version
|
|
1946
|
+
# The environment version for the notebook run compute.
|
|
1947
|
+
# @return [String]
|
|
1948
|
+
#
|
|
1949
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ComputeConfig AWS API Documentation
|
|
1950
|
+
#
|
|
1951
|
+
class ComputeConfig < Struct.new(
|
|
1952
|
+
:instance_type,
|
|
1953
|
+
:environment_version)
|
|
1954
|
+
SENSITIVE = []
|
|
1955
|
+
include Aws::Structure
|
|
1956
|
+
end
|
|
1957
|
+
|
|
1933
1958
|
# The details of the parameters for the configurable environment action.
|
|
1934
1959
|
#
|
|
1935
1960
|
# @!attribute [rw] key
|
|
@@ -2088,6 +2113,10 @@ module Aws::DataZone
|
|
|
2088
2113
|
# The MWAA serverless properties of a connection.
|
|
2089
2114
|
# @return [Types::WorkflowsServerlessPropertiesInput]
|
|
2090
2115
|
#
|
|
2116
|
+
# @!attribute [rw] lakehouse_properties
|
|
2117
|
+
# The lakehouse properties of a connection.
|
|
2118
|
+
# @return [Types::LakehousePropertiesInput]
|
|
2119
|
+
#
|
|
2091
2120
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectionPropertiesInput AWS API Documentation
|
|
2092
2121
|
#
|
|
2093
2122
|
class ConnectionPropertiesInput < Struct.new(
|
|
@@ -2103,6 +2132,7 @@ module Aws::DataZone
|
|
|
2103
2132
|
:mlflow_properties,
|
|
2104
2133
|
:workflows_mwaa_properties,
|
|
2105
2134
|
:workflows_serverless_properties,
|
|
2135
|
+
:lakehouse_properties,
|
|
2106
2136
|
:unknown)
|
|
2107
2137
|
SENSITIVE = []
|
|
2108
2138
|
include Aws::Structure
|
|
@@ -2120,6 +2150,7 @@ module Aws::DataZone
|
|
|
2120
2150
|
class MlflowProperties < ConnectionPropertiesInput; end
|
|
2121
2151
|
class WorkflowsMwaaProperties < ConnectionPropertiesInput; end
|
|
2122
2152
|
class WorkflowsServerlessProperties < ConnectionPropertiesInput; end
|
|
2153
|
+
class LakehouseProperties < ConnectionPropertiesInput; end
|
|
2123
2154
|
class Unknown < ConnectionPropertiesInput; end
|
|
2124
2155
|
end
|
|
2125
2156
|
|
|
@@ -2175,6 +2206,10 @@ module Aws::DataZone
|
|
|
2175
2206
|
# The MWAA serverless properties of a connection.
|
|
2176
2207
|
# @return [Types::WorkflowsServerlessPropertiesOutput]
|
|
2177
2208
|
#
|
|
2209
|
+
# @!attribute [rw] lakehouse_properties
|
|
2210
|
+
# The lakehouse properties of a connection.
|
|
2211
|
+
# @return [Types::LakehousePropertiesOutput]
|
|
2212
|
+
#
|
|
2178
2213
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectionPropertiesOutput AWS API Documentation
|
|
2179
2214
|
#
|
|
2180
2215
|
class ConnectionPropertiesOutput < Struct.new(
|
|
@@ -2190,6 +2225,7 @@ module Aws::DataZone
|
|
|
2190
2225
|
:mlflow_properties,
|
|
2191
2226
|
:workflows_mwaa_properties,
|
|
2192
2227
|
:workflows_serverless_properties,
|
|
2228
|
+
:lakehouse_properties,
|
|
2193
2229
|
:unknown)
|
|
2194
2230
|
SENSITIVE = []
|
|
2195
2231
|
include Aws::Structure
|
|
@@ -2207,6 +2243,7 @@ module Aws::DataZone
|
|
|
2207
2243
|
class MlflowProperties < ConnectionPropertiesOutput; end
|
|
2208
2244
|
class WorkflowsMwaaProperties < ConnectionPropertiesOutput; end
|
|
2209
2245
|
class WorkflowsServerlessProperties < ConnectionPropertiesOutput; end
|
|
2246
|
+
class LakehouseProperties < ConnectionPropertiesOutput; end
|
|
2210
2247
|
class Unknown < ConnectionPropertiesOutput; end
|
|
2211
2248
|
end
|
|
2212
2249
|
|
|
@@ -2247,6 +2284,10 @@ module Aws::DataZone
|
|
|
2247
2284
|
# The MLflow properties of a connection.
|
|
2248
2285
|
# @return [Types::MlflowPropertiesPatch]
|
|
2249
2286
|
#
|
|
2287
|
+
# @!attribute [rw] lakehouse_properties
|
|
2288
|
+
# The lakehouse properties of a connection properties patch.
|
|
2289
|
+
# @return [Types::LakehousePropertiesPatch]
|
|
2290
|
+
#
|
|
2250
2291
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectionPropertiesPatch AWS API Documentation
|
|
2251
2292
|
#
|
|
2252
2293
|
class ConnectionPropertiesPatch < Struct.new(
|
|
@@ -2258,6 +2299,7 @@ module Aws::DataZone
|
|
|
2258
2299
|
:s3_properties,
|
|
2259
2300
|
:amazon_q_properties,
|
|
2260
2301
|
:mlflow_properties,
|
|
2302
|
+
:lakehouse_properties,
|
|
2261
2303
|
:unknown)
|
|
2262
2304
|
SENSITIVE = []
|
|
2263
2305
|
include Aws::Structure
|
|
@@ -2271,6 +2313,7 @@ module Aws::DataZone
|
|
|
2271
2313
|
class S3Properties < ConnectionPropertiesPatch; end
|
|
2272
2314
|
class AmazonQProperties < ConnectionPropertiesPatch; end
|
|
2273
2315
|
class MlflowProperties < ConnectionPropertiesPatch; end
|
|
2316
|
+
class LakehouseProperties < ConnectionPropertiesPatch; end
|
|
2274
2317
|
class Unknown < ConnectionPropertiesPatch; end
|
|
2275
2318
|
end
|
|
2276
2319
|
|
|
@@ -7816,6 +7859,25 @@ module Aws::DataZone
|
|
|
7816
7859
|
include Aws::Structure
|
|
7817
7860
|
end
|
|
7818
7861
|
|
|
7862
|
+
# The environment configuration for a notebook run in Amazon DataZone.
|
|
7863
|
+
#
|
|
7864
|
+
# @!attribute [rw] image_version
|
|
7865
|
+
# The image version for the notebook run environment.
|
|
7866
|
+
# @return [String]
|
|
7867
|
+
#
|
|
7868
|
+
# @!attribute [rw] package_config
|
|
7869
|
+
# The package configuration for the notebook run environment.
|
|
7870
|
+
# @return [Types::PackageConfig]
|
|
7871
|
+
#
|
|
7872
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/EnvironmentConfig AWS API Documentation
|
|
7873
|
+
#
|
|
7874
|
+
class EnvironmentConfig < Struct.new(
|
|
7875
|
+
:image_version,
|
|
7876
|
+
:package_config)
|
|
7877
|
+
SENSITIVE = []
|
|
7878
|
+
include Aws::Structure
|
|
7879
|
+
end
|
|
7880
|
+
|
|
7819
7881
|
# The configuration of an environment.
|
|
7820
7882
|
#
|
|
7821
7883
|
# @!attribute [rw] name
|
|
@@ -10825,6 +10887,143 @@ module Aws::DataZone
|
|
|
10825
10887
|
include Aws::Structure
|
|
10826
10888
|
end
|
|
10827
10889
|
|
|
10890
|
+
# @!attribute [rw] domain_identifier
|
|
10891
|
+
# The identifier of the Amazon DataZone domain in which the notebook
|
|
10892
|
+
# run exists.
|
|
10893
|
+
# @return [String]
|
|
10894
|
+
#
|
|
10895
|
+
# @!attribute [rw] identifier
|
|
10896
|
+
# The identifier of the notebook run.
|
|
10897
|
+
# @return [String]
|
|
10898
|
+
#
|
|
10899
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetNotebookRunInput AWS API Documentation
|
|
10900
|
+
#
|
|
10901
|
+
class GetNotebookRunInput < Struct.new(
|
|
10902
|
+
:domain_identifier,
|
|
10903
|
+
:identifier)
|
|
10904
|
+
SENSITIVE = []
|
|
10905
|
+
include Aws::Structure
|
|
10906
|
+
end
|
|
10907
|
+
|
|
10908
|
+
# @!attribute [rw] id
|
|
10909
|
+
# The identifier of the notebook run.
|
|
10910
|
+
# @return [String]
|
|
10911
|
+
#
|
|
10912
|
+
# @!attribute [rw] domain_id
|
|
10913
|
+
# The identifier of the Amazon DataZone domain.
|
|
10914
|
+
# @return [String]
|
|
10915
|
+
#
|
|
10916
|
+
# @!attribute [rw] owning_project_id
|
|
10917
|
+
# The identifier of the project that owns the notebook run.
|
|
10918
|
+
# @return [String]
|
|
10919
|
+
#
|
|
10920
|
+
# @!attribute [rw] notebook_id
|
|
10921
|
+
# The identifier of the notebook.
|
|
10922
|
+
# @return [String]
|
|
10923
|
+
#
|
|
10924
|
+
# @!attribute [rw] schedule_id
|
|
10925
|
+
# The identifier of the schedule associated with the notebook run.
|
|
10926
|
+
# @return [String]
|
|
10927
|
+
#
|
|
10928
|
+
# @!attribute [rw] status
|
|
10929
|
+
# The status of the notebook run.
|
|
10930
|
+
# @return [String]
|
|
10931
|
+
#
|
|
10932
|
+
# @!attribute [rw] cell_order
|
|
10933
|
+
# The ordered list of cells in the notebook run.
|
|
10934
|
+
# @return [Array<Types::CellInformation>]
|
|
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]
|
|
10969
|
+
#
|
|
10970
|
+
# @!attribute [rw] error
|
|
10971
|
+
# The error details if the notebook run failed.
|
|
10972
|
+
# @return [Types::NotebookRunError]
|
|
10973
|
+
#
|
|
10974
|
+
# @!attribute [rw] created_at
|
|
10975
|
+
# The timestamp of when the notebook run was created.
|
|
10976
|
+
# @return [Time]
|
|
10977
|
+
#
|
|
10978
|
+
# @!attribute [rw] created_by
|
|
10979
|
+
# The identifier of the user who created the notebook run.
|
|
10980
|
+
# @return [String]
|
|
10981
|
+
#
|
|
10982
|
+
# @!attribute [rw] updated_at
|
|
10983
|
+
# The timestamp of when the notebook run was last updated.
|
|
10984
|
+
# @return [Time]
|
|
10985
|
+
#
|
|
10986
|
+
# @!attribute [rw] updated_by
|
|
10987
|
+
# The identifier of the user who last updated the notebook run.
|
|
10988
|
+
# @return [String]
|
|
10989
|
+
#
|
|
10990
|
+
# @!attribute [rw] started_at
|
|
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
|
|
10999
|
+
#
|
|
11000
|
+
class GetNotebookRunOutput < Struct.new(
|
|
11001
|
+
:id,
|
|
11002
|
+
:domain_id,
|
|
11003
|
+
:owning_project_id,
|
|
11004
|
+
:notebook_id,
|
|
11005
|
+
:schedule_id,
|
|
11006
|
+
:status,
|
|
11007
|
+
:cell_order,
|
|
11008
|
+
:metadata,
|
|
11009
|
+
:parameters,
|
|
11010
|
+
:compute_configuration,
|
|
11011
|
+
:network_configuration,
|
|
11012
|
+
:timeout_configuration,
|
|
11013
|
+
:environment_configuration,
|
|
11014
|
+
:storage_configuration,
|
|
11015
|
+
:trigger_source,
|
|
11016
|
+
:error,
|
|
11017
|
+
:created_at,
|
|
11018
|
+
:created_by,
|
|
11019
|
+
:updated_at,
|
|
11020
|
+
:updated_by,
|
|
11021
|
+
:started_at,
|
|
11022
|
+
:completed_at)
|
|
11023
|
+
SENSITIVE = [:metadata, :parameters]
|
|
11024
|
+
include Aws::Structure
|
|
11025
|
+
end
|
|
11026
|
+
|
|
10828
11027
|
# @!attribute [rw] domain_identifier
|
|
10829
11028
|
# The ID of the Amazon DataZone domain in which the project exists.
|
|
10830
11029
|
# @return [String]
|
|
@@ -12674,6 +12873,51 @@ module Aws::DataZone
|
|
|
12674
12873
|
include Aws::Structure
|
|
12675
12874
|
end
|
|
12676
12875
|
|
|
12876
|
+
# The lakehouse properties of a connection.
|
|
12877
|
+
#
|
|
12878
|
+
# @!attribute [rw] glue_lineage_sync_enabled
|
|
12879
|
+
# Specifies whether to enable Glue lineage sync for tables managed by
|
|
12880
|
+
# Glue crawlers.
|
|
12881
|
+
# @return [Boolean]
|
|
12882
|
+
#
|
|
12883
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LakehousePropertiesInput AWS API Documentation
|
|
12884
|
+
#
|
|
12885
|
+
class LakehousePropertiesInput < Struct.new(
|
|
12886
|
+
:glue_lineage_sync_enabled)
|
|
12887
|
+
SENSITIVE = []
|
|
12888
|
+
include Aws::Structure
|
|
12889
|
+
end
|
|
12890
|
+
|
|
12891
|
+
# The lakehouse properties of a connection.
|
|
12892
|
+
#
|
|
12893
|
+
# @!attribute [rw] glue_lineage_sync_enabled
|
|
12894
|
+
# Specifies whether Glue lineage sync is enabled for tables managed by
|
|
12895
|
+
# Glue crawlers.
|
|
12896
|
+
# @return [Boolean]
|
|
12897
|
+
#
|
|
12898
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LakehousePropertiesOutput AWS API Documentation
|
|
12899
|
+
#
|
|
12900
|
+
class LakehousePropertiesOutput < Struct.new(
|
|
12901
|
+
:glue_lineage_sync_enabled)
|
|
12902
|
+
SENSITIVE = []
|
|
12903
|
+
include Aws::Structure
|
|
12904
|
+
end
|
|
12905
|
+
|
|
12906
|
+
# The lakehouse properties of a connection properties patch.
|
|
12907
|
+
#
|
|
12908
|
+
# @!attribute [rw] glue_lineage_sync_enabled
|
|
12909
|
+
# Specifies whether to enable Glue lineage sync for tables managed by
|
|
12910
|
+
# Glue crawlers.
|
|
12911
|
+
# @return [Boolean]
|
|
12912
|
+
#
|
|
12913
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LakehousePropertiesPatch AWS API Documentation
|
|
12914
|
+
#
|
|
12915
|
+
class LakehousePropertiesPatch < Struct.new(
|
|
12916
|
+
:glue_lineage_sync_enabled)
|
|
12917
|
+
SENSITIVE = []
|
|
12918
|
+
include Aws::Structure
|
|
12919
|
+
end
|
|
12920
|
+
|
|
12677
12921
|
# Specifies that a value is less than an expression.
|
|
12678
12922
|
#
|
|
12679
12923
|
# @!attribute [rw] column_name
|
|
@@ -14537,6 +14781,83 @@ module Aws::DataZone
|
|
|
14537
14781
|
include Aws::Structure
|
|
14538
14782
|
end
|
|
14539
14783
|
|
|
14784
|
+
# @!attribute [rw] domain_identifier
|
|
14785
|
+
# The identifier of the Amazon DataZone domain in which to list
|
|
14786
|
+
# notebook runs.
|
|
14787
|
+
# @return [String]
|
|
14788
|
+
#
|
|
14789
|
+
# @!attribute [rw] owning_project_identifier
|
|
14790
|
+
# The identifier of the project that owns the notebook runs.
|
|
14791
|
+
# @return [String]
|
|
14792
|
+
#
|
|
14793
|
+
# @!attribute [rw] notebook_identifier
|
|
14794
|
+
# The identifier of the notebook to filter runs by.
|
|
14795
|
+
# @return [String]
|
|
14796
|
+
#
|
|
14797
|
+
# @!attribute [rw] status
|
|
14798
|
+
# The status to filter notebook runs by.
|
|
14799
|
+
# @return [String]
|
|
14800
|
+
#
|
|
14801
|
+
# @!attribute [rw] schedule_identifier
|
|
14802
|
+
# The identifier of the schedule to filter notebook runs by.
|
|
14803
|
+
# @return [String]
|
|
14804
|
+
#
|
|
14805
|
+
# @!attribute [rw] max_results
|
|
14806
|
+
# The maximum number of notebook runs to return in a single call. When
|
|
14807
|
+
# the number of notebook runs exceeds the value of `MaxResults`, the
|
|
14808
|
+
# response contains a `NextToken` value.
|
|
14809
|
+
# @return [Integer]
|
|
14810
|
+
#
|
|
14811
|
+
# @!attribute [rw] sort_order
|
|
14812
|
+
# The sort order for the results.
|
|
14813
|
+
# @return [String]
|
|
14814
|
+
#
|
|
14815
|
+
# @!attribute [rw] next_token
|
|
14816
|
+
# When the number of notebook runs is greater than the default value
|
|
14817
|
+
# for the `MaxResults` parameter, or if you explicitly specify a value
|
|
14818
|
+
# for `MaxResults` that is less than the number of notebook runs, the
|
|
14819
|
+
# response includes a pagination token named `NextToken`. You can
|
|
14820
|
+
# specify this `NextToken` value in a subsequent call to
|
|
14821
|
+
# `ListNotebookRuns` to list the next set of notebook runs.
|
|
14822
|
+
# @return [String]
|
|
14823
|
+
#
|
|
14824
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListNotebookRunsInput AWS API Documentation
|
|
14825
|
+
#
|
|
14826
|
+
class ListNotebookRunsInput < Struct.new(
|
|
14827
|
+
:domain_identifier,
|
|
14828
|
+
:owning_project_identifier,
|
|
14829
|
+
:notebook_identifier,
|
|
14830
|
+
:status,
|
|
14831
|
+
:schedule_identifier,
|
|
14832
|
+
:max_results,
|
|
14833
|
+
:sort_order,
|
|
14834
|
+
:next_token)
|
|
14835
|
+
SENSITIVE = []
|
|
14836
|
+
include Aws::Structure
|
|
14837
|
+
end
|
|
14838
|
+
|
|
14839
|
+
# @!attribute [rw] items
|
|
14840
|
+
# The results of the `ListNotebookRuns` action.
|
|
14841
|
+
# @return [Array<Types::NotebookRunSummary>]
|
|
14842
|
+
#
|
|
14843
|
+
# @!attribute [rw] next_token
|
|
14844
|
+
# When the number of notebook runs is greater than the default value
|
|
14845
|
+
# for the `MaxResults` parameter, or if you explicitly specify a value
|
|
14846
|
+
# for `MaxResults` that is less than the number of notebook runs, the
|
|
14847
|
+
# response includes a pagination token named `NextToken`. You can
|
|
14848
|
+
# specify this `NextToken` value in a subsequent call to
|
|
14849
|
+
# `ListNotebookRuns` to list the next set of notebook runs.
|
|
14850
|
+
# @return [String]
|
|
14851
|
+
#
|
|
14852
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListNotebookRunsOutput AWS API Documentation
|
|
14853
|
+
#
|
|
14854
|
+
class ListNotebookRunsOutput < Struct.new(
|
|
14855
|
+
:items,
|
|
14856
|
+
:next_token)
|
|
14857
|
+
SENSITIVE = []
|
|
14858
|
+
include Aws::Structure
|
|
14859
|
+
end
|
|
14860
|
+
|
|
14540
14861
|
# @!attribute [rw] domain_identifier
|
|
14541
14862
|
# The identifier of the Amazon DataZone domain.
|
|
14542
14863
|
# @return [String]
|
|
@@ -15997,6 +16318,39 @@ module Aws::DataZone
|
|
|
15997
16318
|
include Aws::Structure
|
|
15998
16319
|
end
|
|
15999
16320
|
|
|
16321
|
+
# The network configuration for a notebook run in Amazon DataZone.
|
|
16322
|
+
#
|
|
16323
|
+
# @!attribute [rw] network_access_type
|
|
16324
|
+
# The network access type for the notebook run. Valid values are
|
|
16325
|
+
# `PUBLIC_INTERNET_ONLY` and `VPC_ONLY`.
|
|
16326
|
+
# @return [String]
|
|
16327
|
+
#
|
|
16328
|
+
# @!attribute [rw] vpc_id
|
|
16329
|
+
# The identifier of the VPC for the notebook run. This is required
|
|
16330
|
+
# when the network access type is `VPC_ONLY`.
|
|
16331
|
+
# @return [String]
|
|
16332
|
+
#
|
|
16333
|
+
# @!attribute [rw] subnet_ids
|
|
16334
|
+
# The identifiers of the subnets for the notebook run. You can specify
|
|
16335
|
+
# up to 10 subnets.
|
|
16336
|
+
# @return [Array<String>]
|
|
16337
|
+
#
|
|
16338
|
+
# @!attribute [rw] security_group_ids
|
|
16339
|
+
# The identifiers of the security groups for the notebook run. You can
|
|
16340
|
+
# specify up to 5 security groups.
|
|
16341
|
+
# @return [Array<String>]
|
|
16342
|
+
#
|
|
16343
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/NetworkConfig AWS API Documentation
|
|
16344
|
+
#
|
|
16345
|
+
class NetworkConfig < Struct.new(
|
|
16346
|
+
:network_access_type,
|
|
16347
|
+
:vpc_id,
|
|
16348
|
+
:subnet_ids,
|
|
16349
|
+
:security_group_ids)
|
|
16350
|
+
SENSITIVE = []
|
|
16351
|
+
include Aws::Structure
|
|
16352
|
+
end
|
|
16353
|
+
|
|
16000
16354
|
# Specifies that a value is not equal to the expression.
|
|
16001
16355
|
#
|
|
16002
16356
|
# @!attribute [rw] column_name
|
|
@@ -16054,6 +16408,94 @@ module Aws::DataZone
|
|
|
16054
16408
|
include Aws::Structure
|
|
16055
16409
|
end
|
|
16056
16410
|
|
|
16411
|
+
# The error details of a failed notebook run in Amazon DataZone.
|
|
16412
|
+
#
|
|
16413
|
+
# @!attribute [rw] message
|
|
16414
|
+
# The error message. The maximum length is 1024 characters.
|
|
16415
|
+
# @return [String]
|
|
16416
|
+
#
|
|
16417
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/NotebookRunError AWS API Documentation
|
|
16418
|
+
#
|
|
16419
|
+
class NotebookRunError < Struct.new(
|
|
16420
|
+
:message)
|
|
16421
|
+
SENSITIVE = []
|
|
16422
|
+
include Aws::Structure
|
|
16423
|
+
end
|
|
16424
|
+
|
|
16425
|
+
# The summary of a notebook run in Amazon DataZone.
|
|
16426
|
+
#
|
|
16427
|
+
# @!attribute [rw] id
|
|
16428
|
+
# The identifier of the notebook run.
|
|
16429
|
+
# @return [String]
|
|
16430
|
+
#
|
|
16431
|
+
# @!attribute [rw] domain_id
|
|
16432
|
+
# The identifier of the Amazon DataZone domain.
|
|
16433
|
+
# @return [String]
|
|
16434
|
+
#
|
|
16435
|
+
# @!attribute [rw] owning_project_id
|
|
16436
|
+
# The identifier of the project that owns the notebook run.
|
|
16437
|
+
# @return [String]
|
|
16438
|
+
#
|
|
16439
|
+
# @!attribute [rw] notebook_id
|
|
16440
|
+
# The identifier of the notebook.
|
|
16441
|
+
# @return [String]
|
|
16442
|
+
#
|
|
16443
|
+
# @!attribute [rw] schedule_id
|
|
16444
|
+
# The identifier of the schedule associated with the notebook run.
|
|
16445
|
+
# @return [String]
|
|
16446
|
+
#
|
|
16447
|
+
# @!attribute [rw] status
|
|
16448
|
+
# The status of the notebook run.
|
|
16449
|
+
# @return [String]
|
|
16450
|
+
#
|
|
16451
|
+
# @!attribute [rw] trigger_source
|
|
16452
|
+
# The source that triggered the notebook run.
|
|
16453
|
+
# @return [Types::TriggerSource]
|
|
16454
|
+
#
|
|
16455
|
+
# @!attribute [rw] created_at
|
|
16456
|
+
# The timestamp of when the notebook run was created.
|
|
16457
|
+
# @return [Time]
|
|
16458
|
+
#
|
|
16459
|
+
# @!attribute [rw] created_by
|
|
16460
|
+
# The identifier of the user who created the notebook run.
|
|
16461
|
+
# @return [String]
|
|
16462
|
+
#
|
|
16463
|
+
# @!attribute [rw] updated_at
|
|
16464
|
+
# The timestamp of when the notebook run was last updated.
|
|
16465
|
+
# @return [Time]
|
|
16466
|
+
#
|
|
16467
|
+
# @!attribute [rw] updated_by
|
|
16468
|
+
# The identifier of the user who last updated the notebook run.
|
|
16469
|
+
# @return [String]
|
|
16470
|
+
#
|
|
16471
|
+
# @!attribute [rw] started_at
|
|
16472
|
+
# The timestamp of when the notebook run started executing.
|
|
16473
|
+
# @return [Time]
|
|
16474
|
+
#
|
|
16475
|
+
# @!attribute [rw] completed_at
|
|
16476
|
+
# The timestamp of when the notebook run completed.
|
|
16477
|
+
# @return [Time]
|
|
16478
|
+
#
|
|
16479
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/NotebookRunSummary AWS API Documentation
|
|
16480
|
+
#
|
|
16481
|
+
class NotebookRunSummary < Struct.new(
|
|
16482
|
+
:id,
|
|
16483
|
+
:domain_id,
|
|
16484
|
+
:owning_project_id,
|
|
16485
|
+
:notebook_id,
|
|
16486
|
+
:schedule_id,
|
|
16487
|
+
:status,
|
|
16488
|
+
:trigger_source,
|
|
16489
|
+
:created_at,
|
|
16490
|
+
:created_by,
|
|
16491
|
+
:updated_at,
|
|
16492
|
+
:updated_by,
|
|
16493
|
+
:started_at,
|
|
16494
|
+
:completed_at)
|
|
16495
|
+
SENSITIVE = []
|
|
16496
|
+
include Aws::Structure
|
|
16497
|
+
end
|
|
16498
|
+
|
|
16057
16499
|
# The details of a notification generated in Amazon DataZone.
|
|
16058
16500
|
#
|
|
16059
16501
|
# @!attribute [rw] identifier
|
|
@@ -16375,6 +16817,28 @@ module Aws::DataZone
|
|
|
16375
16817
|
include Aws::Structure
|
|
16376
16818
|
end
|
|
16377
16819
|
|
|
16820
|
+
# The package configuration for a notebook run environment in Amazon
|
|
16821
|
+
# DataZone.
|
|
16822
|
+
#
|
|
16823
|
+
# @!attribute [rw] package_manager
|
|
16824
|
+
# The package manager for the notebook run environment. The default
|
|
16825
|
+
# value is `UV`.
|
|
16826
|
+
# @return [String]
|
|
16827
|
+
#
|
|
16828
|
+
# @!attribute [rw] package_specification
|
|
16829
|
+
# The package specification content for the notebook run environment.
|
|
16830
|
+
# The maximum length is 10240 characters.
|
|
16831
|
+
# @return [String]
|
|
16832
|
+
#
|
|
16833
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/PackageConfig AWS API Documentation
|
|
16834
|
+
#
|
|
16835
|
+
class PackageConfig < Struct.new(
|
|
16836
|
+
:package_manager,
|
|
16837
|
+
:package_specification)
|
|
16838
|
+
SENSITIVE = []
|
|
16839
|
+
include Aws::Structure
|
|
16840
|
+
end
|
|
16841
|
+
|
|
16378
16842
|
# The asset permissions.
|
|
16379
16843
|
#
|
|
16380
16844
|
# @note Permissions is a union - when making an API calls you must set exactly one of the members.
|
|
@@ -19932,6 +20396,273 @@ module Aws::DataZone
|
|
|
19932
20396
|
include Aws::Structure
|
|
19933
20397
|
end
|
|
19934
20398
|
|
|
20399
|
+
# @!attribute [rw] domain_identifier
|
|
20400
|
+
# The identifier of the Amazon DataZone domain in which the notebook
|
|
20401
|
+
# run is started.
|
|
20402
|
+
# @return [String]
|
|
20403
|
+
#
|
|
20404
|
+
# @!attribute [rw] owning_project_identifier
|
|
20405
|
+
# The identifier of the project that owns the notebook run.
|
|
20406
|
+
# @return [String]
|
|
20407
|
+
#
|
|
20408
|
+
# @!attribute [rw] notebook_identifier
|
|
20409
|
+
# The identifier of the notebook to run.
|
|
20410
|
+
# @return [String]
|
|
20411
|
+
#
|
|
20412
|
+
# @!attribute [rw] schedule_identifier
|
|
20413
|
+
# The identifier of the schedule associated with the notebook run.
|
|
20414
|
+
# @return [String]
|
|
20415
|
+
#
|
|
20416
|
+
# @!attribute [rw] compute_configuration
|
|
20417
|
+
# The compute configuration for the notebook run, including instance
|
|
20418
|
+
# type and environment version.
|
|
20419
|
+
# @return [Types::ComputeConfig]
|
|
20420
|
+
#
|
|
20421
|
+
# @!attribute [rw] network_configuration
|
|
20422
|
+
# The network configuration for the notebook run, including network
|
|
20423
|
+
# access type and optional VPC settings.
|
|
20424
|
+
# @return [Types::NetworkConfig]
|
|
20425
|
+
#
|
|
20426
|
+
# @!attribute [rw] timeout_configuration
|
|
20427
|
+
# The timeout configuration for the notebook run. The default timeout
|
|
20428
|
+
# is 720 minutes (12 hours) and the maximum is 1440 minutes (24
|
|
20429
|
+
# hours).
|
|
20430
|
+
# @return [Types::TimeoutConfig]
|
|
20431
|
+
#
|
|
20432
|
+
# @!attribute [rw] trigger_source
|
|
20433
|
+
# The source that triggered the notebook run.
|
|
20434
|
+
# @return [Types::TriggerSource]
|
|
20435
|
+
#
|
|
20436
|
+
# @!attribute [rw] metadata
|
|
20437
|
+
# The metadata for the notebook run, specified as key-value pairs. You
|
|
20438
|
+
# can specify up to 50 entries, with keys up to 128 characters and
|
|
20439
|
+
# values up to 1024 characters.
|
|
20440
|
+
# @return [Hash<String,String>]
|
|
20441
|
+
#
|
|
20442
|
+
# @!attribute [rw] parameters
|
|
20443
|
+
# The sensitive parameters for the notebook run, specified as
|
|
20444
|
+
# key-value pairs. You can specify up to 50 entries, with keys up to
|
|
20445
|
+
# 128 characters and values up to 1024 characters.
|
|
20446
|
+
# @return [Hash<String,String>]
|
|
20447
|
+
#
|
|
20448
|
+
# @!attribute [rw] client_token
|
|
20449
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
20450
|
+
# request. This field is automatically populated if not provided.
|
|
20451
|
+
#
|
|
20452
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
20453
|
+
# not need to pass this option.
|
|
20454
|
+
# @return [String]
|
|
20455
|
+
#
|
|
20456
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/StartNotebookRunInput AWS API Documentation
|
|
20457
|
+
#
|
|
20458
|
+
class StartNotebookRunInput < Struct.new(
|
|
20459
|
+
:domain_identifier,
|
|
20460
|
+
:owning_project_identifier,
|
|
20461
|
+
:notebook_identifier,
|
|
20462
|
+
:schedule_identifier,
|
|
20463
|
+
:compute_configuration,
|
|
20464
|
+
:network_configuration,
|
|
20465
|
+
:timeout_configuration,
|
|
20466
|
+
:trigger_source,
|
|
20467
|
+
:metadata,
|
|
20468
|
+
:parameters,
|
|
20469
|
+
:client_token)
|
|
20470
|
+
SENSITIVE = [:metadata, :parameters]
|
|
20471
|
+
include Aws::Structure
|
|
20472
|
+
end
|
|
20473
|
+
|
|
20474
|
+
# @!attribute [rw] id
|
|
20475
|
+
# The identifier of the notebook run.
|
|
20476
|
+
# @return [String]
|
|
20477
|
+
#
|
|
20478
|
+
# @!attribute [rw] domain_id
|
|
20479
|
+
# The identifier of the Amazon DataZone domain.
|
|
20480
|
+
# @return [String]
|
|
20481
|
+
#
|
|
20482
|
+
# @!attribute [rw] owning_project_id
|
|
20483
|
+
# The identifier of the project that owns the notebook run.
|
|
20484
|
+
# @return [String]
|
|
20485
|
+
#
|
|
20486
|
+
# @!attribute [rw] notebook_id
|
|
20487
|
+
# The identifier of the notebook.
|
|
20488
|
+
# @return [String]
|
|
20489
|
+
#
|
|
20490
|
+
# @!attribute [rw] schedule_id
|
|
20491
|
+
# The identifier of the schedule associated with the notebook run.
|
|
20492
|
+
# @return [String]
|
|
20493
|
+
#
|
|
20494
|
+
# @!attribute [rw] status
|
|
20495
|
+
# The status of the notebook run.
|
|
20496
|
+
# @return [String]
|
|
20497
|
+
#
|
|
20498
|
+
# @!attribute [rw] cell_order
|
|
20499
|
+
# The ordered list of cells in the notebook run.
|
|
20500
|
+
# @return [Array<Types::CellInformation>]
|
|
20501
|
+
#
|
|
20502
|
+
# @!attribute [rw] metadata
|
|
20503
|
+
# The metadata of the notebook run.
|
|
20504
|
+
# @return [Hash<String,String>]
|
|
20505
|
+
#
|
|
20506
|
+
# @!attribute [rw] parameters
|
|
20507
|
+
# The sensitive parameters of the notebook run.
|
|
20508
|
+
# @return [Hash<String,String>]
|
|
20509
|
+
#
|
|
20510
|
+
# @!attribute [rw] compute_configuration
|
|
20511
|
+
# The compute configuration of the notebook run.
|
|
20512
|
+
# @return [Types::ComputeConfig]
|
|
20513
|
+
#
|
|
20514
|
+
# @!attribute [rw] network_configuration
|
|
20515
|
+
# The network configuration of the notebook run.
|
|
20516
|
+
# @return [Types::NetworkConfig]
|
|
20517
|
+
#
|
|
20518
|
+
# @!attribute [rw] timeout_configuration
|
|
20519
|
+
# The timeout configuration of the notebook run.
|
|
20520
|
+
# @return [Types::TimeoutConfig]
|
|
20521
|
+
#
|
|
20522
|
+
# @!attribute [rw] environment_configuration
|
|
20523
|
+
# The environment configuration of the notebook run, including image
|
|
20524
|
+
# version and package settings.
|
|
20525
|
+
# @return [Types::EnvironmentConfig]
|
|
20526
|
+
#
|
|
20527
|
+
# @!attribute [rw] storage_configuration
|
|
20528
|
+
# The storage configuration of the notebook run, including the Amazon
|
|
20529
|
+
# Simple Storage Service path and KMS key ARN.
|
|
20530
|
+
# @return [Types::StorageConfig]
|
|
20531
|
+
#
|
|
20532
|
+
# @!attribute [rw] trigger_source
|
|
20533
|
+
# The source that triggered the notebook run.
|
|
20534
|
+
# @return [Types::TriggerSource]
|
|
20535
|
+
#
|
|
20536
|
+
# @!attribute [rw] error
|
|
20537
|
+
# The error details if the notebook run failed.
|
|
20538
|
+
# @return [Types::NotebookRunError]
|
|
20539
|
+
#
|
|
20540
|
+
# @!attribute [rw] created_at
|
|
20541
|
+
# The timestamp of when the notebook run was created.
|
|
20542
|
+
# @return [Time]
|
|
20543
|
+
#
|
|
20544
|
+
# @!attribute [rw] created_by
|
|
20545
|
+
# The identifier of the user who created the notebook run.
|
|
20546
|
+
# @return [String]
|
|
20547
|
+
#
|
|
20548
|
+
# @!attribute [rw] updated_at
|
|
20549
|
+
# The timestamp of when the notebook run was last updated.
|
|
20550
|
+
# @return [Time]
|
|
20551
|
+
#
|
|
20552
|
+
# @!attribute [rw] updated_by
|
|
20553
|
+
# The identifier of the user who last updated the notebook run.
|
|
20554
|
+
# @return [String]
|
|
20555
|
+
#
|
|
20556
|
+
# @!attribute [rw] started_at
|
|
20557
|
+
# The timestamp of when the notebook run started executing.
|
|
20558
|
+
# @return [Time]
|
|
20559
|
+
#
|
|
20560
|
+
# @!attribute [rw] completed_at
|
|
20561
|
+
# The timestamp of when the notebook run completed.
|
|
20562
|
+
# @return [Time]
|
|
20563
|
+
#
|
|
20564
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/StartNotebookRunOutput AWS API Documentation
|
|
20565
|
+
#
|
|
20566
|
+
class StartNotebookRunOutput < Struct.new(
|
|
20567
|
+
:id,
|
|
20568
|
+
:domain_id,
|
|
20569
|
+
:owning_project_id,
|
|
20570
|
+
:notebook_id,
|
|
20571
|
+
:schedule_id,
|
|
20572
|
+
:status,
|
|
20573
|
+
:cell_order,
|
|
20574
|
+
:metadata,
|
|
20575
|
+
:parameters,
|
|
20576
|
+
:compute_configuration,
|
|
20577
|
+
:network_configuration,
|
|
20578
|
+
:timeout_configuration,
|
|
20579
|
+
:environment_configuration,
|
|
20580
|
+
:storage_configuration,
|
|
20581
|
+
:trigger_source,
|
|
20582
|
+
:error,
|
|
20583
|
+
:created_at,
|
|
20584
|
+
:created_by,
|
|
20585
|
+
:updated_at,
|
|
20586
|
+
:updated_by,
|
|
20587
|
+
:started_at,
|
|
20588
|
+
:completed_at)
|
|
20589
|
+
SENSITIVE = [:metadata, :parameters]
|
|
20590
|
+
include Aws::Structure
|
|
20591
|
+
end
|
|
20592
|
+
|
|
20593
|
+
# @!attribute [rw] domain_identifier
|
|
20594
|
+
# The identifier of the Amazon DataZone domain in which the notebook
|
|
20595
|
+
# run is stopped.
|
|
20596
|
+
# @return [String]
|
|
20597
|
+
#
|
|
20598
|
+
# @!attribute [rw] identifier
|
|
20599
|
+
# The identifier of the notebook run to stop.
|
|
20600
|
+
# @return [String]
|
|
20601
|
+
#
|
|
20602
|
+
# @!attribute [rw] client_token
|
|
20603
|
+
# A unique, case-sensitive identifier to ensure idempotency of the
|
|
20604
|
+
# request. This field is automatically populated if not provided.
|
|
20605
|
+
#
|
|
20606
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
20607
|
+
# not need to pass this option.
|
|
20608
|
+
# @return [String]
|
|
20609
|
+
#
|
|
20610
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/StopNotebookRunInput AWS API Documentation
|
|
20611
|
+
#
|
|
20612
|
+
class StopNotebookRunInput < Struct.new(
|
|
20613
|
+
:domain_identifier,
|
|
20614
|
+
:identifier,
|
|
20615
|
+
:client_token)
|
|
20616
|
+
SENSITIVE = []
|
|
20617
|
+
include Aws::Structure
|
|
20618
|
+
end
|
|
20619
|
+
|
|
20620
|
+
# @!attribute [rw] id
|
|
20621
|
+
# The identifier of the notebook run.
|
|
20622
|
+
# @return [String]
|
|
20623
|
+
#
|
|
20624
|
+
# @!attribute [rw] domain_id
|
|
20625
|
+
# The identifier of the Amazon DataZone domain.
|
|
20626
|
+
# @return [String]
|
|
20627
|
+
#
|
|
20628
|
+
# @!attribute [rw] owning_project_id
|
|
20629
|
+
# The identifier of the project that owns the notebook run.
|
|
20630
|
+
# @return [String]
|
|
20631
|
+
#
|
|
20632
|
+
# @!attribute [rw] status
|
|
20633
|
+
# The status of the notebook run.
|
|
20634
|
+
# @return [String]
|
|
20635
|
+
#
|
|
20636
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/StopNotebookRunOutput AWS API Documentation
|
|
20637
|
+
#
|
|
20638
|
+
class StopNotebookRunOutput < Struct.new(
|
|
20639
|
+
:id,
|
|
20640
|
+
:domain_id,
|
|
20641
|
+
:owning_project_id,
|
|
20642
|
+
:status)
|
|
20643
|
+
SENSITIVE = []
|
|
20644
|
+
include Aws::Structure
|
|
20645
|
+
end
|
|
20646
|
+
|
|
20647
|
+
# The storage configuration for a notebook run in Amazon DataZone.
|
|
20648
|
+
#
|
|
20649
|
+
# @!attribute [rw] project_s3_path
|
|
20650
|
+
# The Amazon Simple Storage Service path for the project storage.
|
|
20651
|
+
# @return [String]
|
|
20652
|
+
#
|
|
20653
|
+
# @!attribute [rw] kms_key_arn
|
|
20654
|
+
# The ARN of the KMS key used for encryption.
|
|
20655
|
+
# @return [String]
|
|
20656
|
+
#
|
|
20657
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/StorageConfig AWS API Documentation
|
|
20658
|
+
#
|
|
20659
|
+
class StorageConfig < Struct.new(
|
|
20660
|
+
:project_s3_path,
|
|
20661
|
+
:kms_key_arn)
|
|
20662
|
+
SENSITIVE = []
|
|
20663
|
+
include Aws::Structure
|
|
20664
|
+
end
|
|
20665
|
+
|
|
19935
20666
|
# The details of the asset for which the subscription grant is created.
|
|
19936
20667
|
#
|
|
19937
20668
|
# @!attribute [rw] asset_id
|
|
@@ -20896,6 +21627,22 @@ module Aws::DataZone
|
|
|
20896
21627
|
include Aws::Structure
|
|
20897
21628
|
end
|
|
20898
21629
|
|
|
21630
|
+
# The timeout configuration for a notebook run in Amazon DataZone.
|
|
21631
|
+
#
|
|
21632
|
+
# @!attribute [rw] run_timeout_in_minutes
|
|
21633
|
+
# The timeout for the notebook run, in minutes. The minimum value is
|
|
21634
|
+
# 60 minutes (1 hour), the maximum value is 1440 minutes (24 hours),
|
|
21635
|
+
# and the default value is 720 minutes (12 hours).
|
|
21636
|
+
# @return [Integer]
|
|
21637
|
+
#
|
|
21638
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/TimeoutConfig AWS API Documentation
|
|
21639
|
+
#
|
|
21640
|
+
class TimeoutConfig < Struct.new(
|
|
21641
|
+
:run_timeout_in_minutes)
|
|
21642
|
+
SENSITIVE = []
|
|
21643
|
+
include Aws::Structure
|
|
21644
|
+
end
|
|
21645
|
+
|
|
20899
21646
|
# The topic of the notification.
|
|
20900
21647
|
#
|
|
20901
21648
|
# @!attribute [rw] subject
|
|
@@ -20920,6 +21667,26 @@ module Aws::DataZone
|
|
|
20920
21667
|
include Aws::Structure
|
|
20921
21668
|
end
|
|
20922
21669
|
|
|
21670
|
+
# The source that triggered a notebook run in Amazon DataZone.
|
|
21671
|
+
#
|
|
21672
|
+
# @!attribute [rw] type
|
|
21673
|
+
# The type of the trigger source. Valid values are `MANUAL`,
|
|
21674
|
+
# `SCHEDULED`, and `WORKFLOW`.
|
|
21675
|
+
# @return [String]
|
|
21676
|
+
#
|
|
21677
|
+
# @!attribute [rw] name
|
|
21678
|
+
# The name of the trigger source.
|
|
21679
|
+
# @return [String]
|
|
21680
|
+
#
|
|
21681
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/TriggerSource AWS API Documentation
|
|
21682
|
+
#
|
|
21683
|
+
class TriggerSource < Struct.new(
|
|
21684
|
+
:type,
|
|
21685
|
+
:name)
|
|
21686
|
+
SENSITIVE = []
|
|
21687
|
+
include Aws::Structure
|
|
21688
|
+
end
|
|
21689
|
+
|
|
20923
21690
|
# You do not have permission to perform this action.
|
|
20924
21691
|
#
|
|
20925
21692
|
# @!attribute [rw] message
|