aws-sdk-datazone 1.74.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +371 -1
- data/lib/aws-sdk-datazone/client_api.rb +257 -0
- data/lib/aws-sdk-datazone/types.rb +704 -0
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +117 -0
- data/sig/types.rbs +174 -0
- metadata +1 -1
data/lib/aws-sdk-datazone.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -2526,6 +2526,37 @@ module Aws
|
|
|
2526
2526
|
) -> _GetMetadataGenerationRunResponseSuccess
|
|
2527
2527
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMetadataGenerationRunResponseSuccess
|
|
2528
2528
|
|
|
2529
|
+
interface _GetNotebookRunResponseSuccess
|
|
2530
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetNotebookRunOutput]
|
|
2531
|
+
def id: () -> ::String
|
|
2532
|
+
def domain_id: () -> ::String
|
|
2533
|
+
def owning_project_id: () -> ::String
|
|
2534
|
+
def notebook_id: () -> ::String
|
|
2535
|
+
def schedule_id: () -> ::String
|
|
2536
|
+
def status: () -> ("QUEUED" | "STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED")
|
|
2537
|
+
def cell_order: () -> ::Array[Types::CellInformation]
|
|
2538
|
+
def metadata: () -> ::Hash[::String, ::String]
|
|
2539
|
+
def parameters: () -> ::Hash[::String, ::String]
|
|
2540
|
+
def compute_configuration: () -> Types::ComputeConfig
|
|
2541
|
+
def network_configuration: () -> Types::NetworkConfig
|
|
2542
|
+
def timeout_configuration: () -> Types::TimeoutConfig
|
|
2543
|
+
def environment_configuration: () -> Types::EnvironmentConfig
|
|
2544
|
+
def storage_configuration: () -> Types::StorageConfig
|
|
2545
|
+
def trigger_source: () -> Types::TriggerSource
|
|
2546
|
+
def created_at: () -> ::Time
|
|
2547
|
+
def created_by: () -> ::String
|
|
2548
|
+
def updated_at: () -> ::Time
|
|
2549
|
+
def updated_by: () -> ::String
|
|
2550
|
+
def started_at: () -> ::Time
|
|
2551
|
+
def completed_at: () -> ::Time
|
|
2552
|
+
end
|
|
2553
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_notebook_run-instance_method
|
|
2554
|
+
def get_notebook_run: (
|
|
2555
|
+
domain_identifier: ::String,
|
|
2556
|
+
identifier: ::String
|
|
2557
|
+
) -> _GetNotebookRunResponseSuccess
|
|
2558
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetNotebookRunResponseSuccess
|
|
2559
|
+
|
|
2529
2560
|
interface _GetProjectResponseSuccess
|
|
2530
2561
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetProjectOutput]
|
|
2531
2562
|
def domain_id: () -> ::String
|
|
@@ -3061,6 +3092,24 @@ module Aws
|
|
|
3061
3092
|
) -> _ListMetadataGenerationRunsResponseSuccess
|
|
3062
3093
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMetadataGenerationRunsResponseSuccess
|
|
3063
3094
|
|
|
3095
|
+
interface _ListNotebookRunsResponseSuccess
|
|
3096
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListNotebookRunsOutput]
|
|
3097
|
+
def items: () -> ::Array[Types::NotebookRunSummary]
|
|
3098
|
+
def next_token: () -> ::String
|
|
3099
|
+
end
|
|
3100
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_notebook_runs-instance_method
|
|
3101
|
+
def list_notebook_runs: (
|
|
3102
|
+
domain_identifier: ::String,
|
|
3103
|
+
owning_project_identifier: ::String,
|
|
3104
|
+
?notebook_identifier: ::String,
|
|
3105
|
+
?status: ("QUEUED" | "STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED"),
|
|
3106
|
+
?schedule_identifier: ::String,
|
|
3107
|
+
?max_results: ::Integer,
|
|
3108
|
+
?sort_order: ("ASCENDING" | "DESCENDING"),
|
|
3109
|
+
?next_token: ::String
|
|
3110
|
+
) -> _ListNotebookRunsResponseSuccess
|
|
3111
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListNotebookRunsResponseSuccess
|
|
3112
|
+
|
|
3064
3113
|
interface _ListNotificationsResponseSuccess
|
|
3065
3114
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListNotificationsOutput]
|
|
3066
3115
|
def notifications: () -> ::Array[Types::NotificationOutput]
|
|
@@ -3748,6 +3797,74 @@ module Aws
|
|
|
3748
3797
|
) -> _StartMetadataGenerationRunResponseSuccess
|
|
3749
3798
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartMetadataGenerationRunResponseSuccess
|
|
3750
3799
|
|
|
3800
|
+
interface _StartNotebookRunResponseSuccess
|
|
3801
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartNotebookRunOutput]
|
|
3802
|
+
def id: () -> ::String
|
|
3803
|
+
def domain_id: () -> ::String
|
|
3804
|
+
def owning_project_id: () -> ::String
|
|
3805
|
+
def notebook_id: () -> ::String
|
|
3806
|
+
def schedule_id: () -> ::String
|
|
3807
|
+
def status: () -> ("QUEUED" | "STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED")
|
|
3808
|
+
def cell_order: () -> ::Array[Types::CellInformation]
|
|
3809
|
+
def metadata: () -> ::Hash[::String, ::String]
|
|
3810
|
+
def parameters: () -> ::Hash[::String, ::String]
|
|
3811
|
+
def compute_configuration: () -> Types::ComputeConfig
|
|
3812
|
+
def network_configuration: () -> Types::NetworkConfig
|
|
3813
|
+
def timeout_configuration: () -> Types::TimeoutConfig
|
|
3814
|
+
def environment_configuration: () -> Types::EnvironmentConfig
|
|
3815
|
+
def storage_configuration: () -> Types::StorageConfig
|
|
3816
|
+
def trigger_source: () -> Types::TriggerSource
|
|
3817
|
+
def created_at: () -> ::Time
|
|
3818
|
+
def created_by: () -> ::String
|
|
3819
|
+
def updated_at: () -> ::Time
|
|
3820
|
+
def updated_by: () -> ::String
|
|
3821
|
+
def started_at: () -> ::Time
|
|
3822
|
+
def completed_at: () -> ::Time
|
|
3823
|
+
end
|
|
3824
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#start_notebook_run-instance_method
|
|
3825
|
+
def start_notebook_run: (
|
|
3826
|
+
domain_identifier: ::String,
|
|
3827
|
+
owning_project_identifier: ::String,
|
|
3828
|
+
notebook_identifier: ::String,
|
|
3829
|
+
?schedule_identifier: ::String,
|
|
3830
|
+
?compute_configuration: {
|
|
3831
|
+
instance_type: ::String?,
|
|
3832
|
+
environment_version: ::String?
|
|
3833
|
+
},
|
|
3834
|
+
?network_configuration: {
|
|
3835
|
+
network_access_type: ("PUBLIC_INTERNET_ONLY" | "VPC_ONLY"),
|
|
3836
|
+
vpc_id: ::String?,
|
|
3837
|
+
subnet_ids: Array[::String]?,
|
|
3838
|
+
security_group_ids: Array[::String]?
|
|
3839
|
+
},
|
|
3840
|
+
?timeout_configuration: {
|
|
3841
|
+
run_timeout_in_minutes: ::Integer?
|
|
3842
|
+
},
|
|
3843
|
+
?trigger_source: {
|
|
3844
|
+
type: ("MANUAL" | "SCHEDULED" | "WORKFLOW")?,
|
|
3845
|
+
name: ::String?
|
|
3846
|
+
},
|
|
3847
|
+
?metadata: Hash[::String, ::String],
|
|
3848
|
+
?parameters: Hash[::String, ::String],
|
|
3849
|
+
?client_token: ::String
|
|
3850
|
+
) -> _StartNotebookRunResponseSuccess
|
|
3851
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartNotebookRunResponseSuccess
|
|
3852
|
+
|
|
3853
|
+
interface _StopNotebookRunResponseSuccess
|
|
3854
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopNotebookRunOutput]
|
|
3855
|
+
def id: () -> ::String
|
|
3856
|
+
def domain_id: () -> ::String
|
|
3857
|
+
def owning_project_id: () -> ::String
|
|
3858
|
+
def status: () -> ("QUEUED" | "STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED")
|
|
3859
|
+
end
|
|
3860
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#stop_notebook_run-instance_method
|
|
3861
|
+
def stop_notebook_run: (
|
|
3862
|
+
domain_identifier: ::String,
|
|
3863
|
+
identifier: ::String,
|
|
3864
|
+
?client_token: ::String
|
|
3865
|
+
) -> _StopNotebookRunResponseSuccess
|
|
3866
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopNotebookRunResponseSuccess
|
|
3867
|
+
|
|
3751
3868
|
interface _TagResourceResponseSuccess
|
|
3752
3869
|
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
|
3753
3870
|
end
|
data/sig/types.rbs
CHANGED
|
@@ -548,6 +548,9 @@ module Aws::DataZone
|
|
|
548
548
|
SENSITIVE: []
|
|
549
549
|
end
|
|
550
550
|
|
|
551
|
+
class CellInformation < Aws::EmptyStructure
|
|
552
|
+
end
|
|
553
|
+
|
|
551
554
|
class CloudFormationProperties
|
|
552
555
|
attr_accessor template_url: ::String
|
|
553
556
|
SENSITIVE: []
|
|
@@ -558,6 +561,12 @@ module Aws::DataZone
|
|
|
558
561
|
SENSITIVE: []
|
|
559
562
|
end
|
|
560
563
|
|
|
564
|
+
class ComputeConfig
|
|
565
|
+
attr_accessor instance_type: ::String
|
|
566
|
+
attr_accessor environment_version: ::String
|
|
567
|
+
SENSITIVE: []
|
|
568
|
+
end
|
|
569
|
+
|
|
561
570
|
class ConfigurableActionParameter
|
|
562
571
|
attr_accessor key: ::String
|
|
563
572
|
attr_accessor value: ::String
|
|
@@ -2155,6 +2164,12 @@ module Aws::DataZone
|
|
|
2155
2164
|
SENSITIVE: [:description]
|
|
2156
2165
|
end
|
|
2157
2166
|
|
|
2167
|
+
class EnvironmentConfig
|
|
2168
|
+
attr_accessor image_version: ::String
|
|
2169
|
+
attr_accessor package_config: Types::PackageConfig
|
|
2170
|
+
SENSITIVE: []
|
|
2171
|
+
end
|
|
2172
|
+
|
|
2158
2173
|
class EnvironmentConfiguration
|
|
2159
2174
|
attr_accessor name: ::String
|
|
2160
2175
|
attr_accessor id: ::String
|
|
@@ -2939,6 +2954,38 @@ module Aws::DataZone
|
|
|
2939
2954
|
SENSITIVE: []
|
|
2940
2955
|
end
|
|
2941
2956
|
|
|
2957
|
+
class GetNotebookRunInput
|
|
2958
|
+
attr_accessor domain_identifier: ::String
|
|
2959
|
+
attr_accessor identifier: ::String
|
|
2960
|
+
SENSITIVE: []
|
|
2961
|
+
end
|
|
2962
|
+
|
|
2963
|
+
class GetNotebookRunOutput
|
|
2964
|
+
attr_accessor id: ::String
|
|
2965
|
+
attr_accessor domain_id: ::String
|
|
2966
|
+
attr_accessor owning_project_id: ::String
|
|
2967
|
+
attr_accessor notebook_id: ::String
|
|
2968
|
+
attr_accessor schedule_id: ::String
|
|
2969
|
+
attr_accessor status: ("QUEUED" | "STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED")
|
|
2970
|
+
attr_accessor cell_order: ::Array[Types::CellInformation]
|
|
2971
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
|
2972
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
|
2973
|
+
attr_accessor compute_configuration: Types::ComputeConfig
|
|
2974
|
+
attr_accessor network_configuration: Types::NetworkConfig
|
|
2975
|
+
attr_accessor timeout_configuration: Types::TimeoutConfig
|
|
2976
|
+
attr_accessor environment_configuration: Types::EnvironmentConfig
|
|
2977
|
+
attr_accessor storage_configuration: Types::StorageConfig
|
|
2978
|
+
attr_accessor trigger_source: Types::TriggerSource
|
|
2979
|
+
attr_accessor error: Types::NotebookRunError
|
|
2980
|
+
attr_accessor created_at: ::Time
|
|
2981
|
+
attr_accessor created_by: ::String
|
|
2982
|
+
attr_accessor updated_at: ::Time
|
|
2983
|
+
attr_accessor updated_by: ::String
|
|
2984
|
+
attr_accessor started_at: ::Time
|
|
2985
|
+
attr_accessor completed_at: ::Time
|
|
2986
|
+
SENSITIVE: [:parameters]
|
|
2987
|
+
end
|
|
2988
|
+
|
|
2942
2989
|
class GetProjectInput
|
|
2943
2990
|
attr_accessor domain_identifier: ::String
|
|
2944
2991
|
attr_accessor identifier: ::String
|
|
@@ -3899,6 +3946,24 @@ module Aws::DataZone
|
|
|
3899
3946
|
SENSITIVE: []
|
|
3900
3947
|
end
|
|
3901
3948
|
|
|
3949
|
+
class ListNotebookRunsInput
|
|
3950
|
+
attr_accessor domain_identifier: ::String
|
|
3951
|
+
attr_accessor owning_project_identifier: ::String
|
|
3952
|
+
attr_accessor notebook_identifier: ::String
|
|
3953
|
+
attr_accessor status: ("QUEUED" | "STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED")
|
|
3954
|
+
attr_accessor schedule_identifier: ::String
|
|
3955
|
+
attr_accessor max_results: ::Integer
|
|
3956
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
|
3957
|
+
attr_accessor next_token: ::String
|
|
3958
|
+
SENSITIVE: []
|
|
3959
|
+
end
|
|
3960
|
+
|
|
3961
|
+
class ListNotebookRunsOutput
|
|
3962
|
+
attr_accessor items: ::Array[Types::NotebookRunSummary]
|
|
3963
|
+
attr_accessor next_token: ::String
|
|
3964
|
+
SENSITIVE: []
|
|
3965
|
+
end
|
|
3966
|
+
|
|
3902
3967
|
class ListNotificationsInput
|
|
3903
3968
|
attr_accessor domain_identifier: ::String
|
|
3904
3969
|
attr_accessor type: ("TASK" | "EVENT")
|
|
@@ -4297,6 +4362,14 @@ module Aws::DataZone
|
|
|
4297
4362
|
SENSITIVE: []
|
|
4298
4363
|
end
|
|
4299
4364
|
|
|
4365
|
+
class NetworkConfig
|
|
4366
|
+
attr_accessor network_access_type: ("PUBLIC_INTERNET_ONLY" | "VPC_ONLY")
|
|
4367
|
+
attr_accessor vpc_id: ::String
|
|
4368
|
+
attr_accessor subnet_ids: ::Array[::String]
|
|
4369
|
+
attr_accessor security_group_ids: ::Array[::String]
|
|
4370
|
+
SENSITIVE: []
|
|
4371
|
+
end
|
|
4372
|
+
|
|
4300
4373
|
class NotEqualToExpression
|
|
4301
4374
|
attr_accessor column_name: ::String
|
|
4302
4375
|
attr_accessor value: ::String
|
|
@@ -4315,6 +4388,28 @@ module Aws::DataZone
|
|
|
4315
4388
|
SENSITIVE: []
|
|
4316
4389
|
end
|
|
4317
4390
|
|
|
4391
|
+
class NotebookRunError
|
|
4392
|
+
attr_accessor message: ::String
|
|
4393
|
+
SENSITIVE: []
|
|
4394
|
+
end
|
|
4395
|
+
|
|
4396
|
+
class NotebookRunSummary
|
|
4397
|
+
attr_accessor id: ::String
|
|
4398
|
+
attr_accessor domain_id: ::String
|
|
4399
|
+
attr_accessor owning_project_id: ::String
|
|
4400
|
+
attr_accessor notebook_id: ::String
|
|
4401
|
+
attr_accessor schedule_id: ::String
|
|
4402
|
+
attr_accessor status: ("QUEUED" | "STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED")
|
|
4403
|
+
attr_accessor trigger_source: Types::TriggerSource
|
|
4404
|
+
attr_accessor created_at: ::Time
|
|
4405
|
+
attr_accessor created_by: ::String
|
|
4406
|
+
attr_accessor updated_at: ::Time
|
|
4407
|
+
attr_accessor updated_by: ::String
|
|
4408
|
+
attr_accessor started_at: ::Time
|
|
4409
|
+
attr_accessor completed_at: ::Time
|
|
4410
|
+
SENSITIVE: []
|
|
4411
|
+
end
|
|
4412
|
+
|
|
4318
4413
|
class NotificationOutput
|
|
4319
4414
|
attr_accessor identifier: ::String
|
|
4320
4415
|
attr_accessor domain_identifier: ::String
|
|
@@ -4420,6 +4515,12 @@ module Aws::DataZone
|
|
|
4420
4515
|
SENSITIVE: []
|
|
4421
4516
|
end
|
|
4422
4517
|
|
|
4518
|
+
class PackageConfig
|
|
4519
|
+
attr_accessor package_manager: ("UV")
|
|
4520
|
+
attr_accessor package_specification: ::String
|
|
4521
|
+
SENSITIVE: []
|
|
4522
|
+
end
|
|
4523
|
+
|
|
4423
4524
|
class Permissions
|
|
4424
4525
|
attr_accessor s3: ::Array[("READ" | "WRITE")]
|
|
4425
4526
|
attr_accessor unknown: untyped
|
|
@@ -5487,6 +5588,68 @@ module Aws::DataZone
|
|
|
5487
5588
|
SENSITIVE: []
|
|
5488
5589
|
end
|
|
5489
5590
|
|
|
5591
|
+
class StartNotebookRunInput
|
|
5592
|
+
attr_accessor domain_identifier: ::String
|
|
5593
|
+
attr_accessor owning_project_identifier: ::String
|
|
5594
|
+
attr_accessor notebook_identifier: ::String
|
|
5595
|
+
attr_accessor schedule_identifier: ::String
|
|
5596
|
+
attr_accessor compute_configuration: Types::ComputeConfig
|
|
5597
|
+
attr_accessor network_configuration: Types::NetworkConfig
|
|
5598
|
+
attr_accessor timeout_configuration: Types::TimeoutConfig
|
|
5599
|
+
attr_accessor trigger_source: Types::TriggerSource
|
|
5600
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
|
5601
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
|
5602
|
+
attr_accessor client_token: ::String
|
|
5603
|
+
SENSITIVE: [:parameters]
|
|
5604
|
+
end
|
|
5605
|
+
|
|
5606
|
+
class StartNotebookRunOutput
|
|
5607
|
+
attr_accessor id: ::String
|
|
5608
|
+
attr_accessor domain_id: ::String
|
|
5609
|
+
attr_accessor owning_project_id: ::String
|
|
5610
|
+
attr_accessor notebook_id: ::String
|
|
5611
|
+
attr_accessor schedule_id: ::String
|
|
5612
|
+
attr_accessor status: ("QUEUED" | "STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED")
|
|
5613
|
+
attr_accessor cell_order: ::Array[Types::CellInformation]
|
|
5614
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
|
5615
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
|
5616
|
+
attr_accessor compute_configuration: Types::ComputeConfig
|
|
5617
|
+
attr_accessor network_configuration: Types::NetworkConfig
|
|
5618
|
+
attr_accessor timeout_configuration: Types::TimeoutConfig
|
|
5619
|
+
attr_accessor environment_configuration: Types::EnvironmentConfig
|
|
5620
|
+
attr_accessor storage_configuration: Types::StorageConfig
|
|
5621
|
+
attr_accessor trigger_source: Types::TriggerSource
|
|
5622
|
+
attr_accessor error: Types::NotebookRunError
|
|
5623
|
+
attr_accessor created_at: ::Time
|
|
5624
|
+
attr_accessor created_by: ::String
|
|
5625
|
+
attr_accessor updated_at: ::Time
|
|
5626
|
+
attr_accessor updated_by: ::String
|
|
5627
|
+
attr_accessor started_at: ::Time
|
|
5628
|
+
attr_accessor completed_at: ::Time
|
|
5629
|
+
SENSITIVE: [:parameters]
|
|
5630
|
+
end
|
|
5631
|
+
|
|
5632
|
+
class StopNotebookRunInput
|
|
5633
|
+
attr_accessor domain_identifier: ::String
|
|
5634
|
+
attr_accessor identifier: ::String
|
|
5635
|
+
attr_accessor client_token: ::String
|
|
5636
|
+
SENSITIVE: []
|
|
5637
|
+
end
|
|
5638
|
+
|
|
5639
|
+
class StopNotebookRunOutput
|
|
5640
|
+
attr_accessor id: ::String
|
|
5641
|
+
attr_accessor domain_id: ::String
|
|
5642
|
+
attr_accessor owning_project_id: ::String
|
|
5643
|
+
attr_accessor status: ("QUEUED" | "STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED")
|
|
5644
|
+
SENSITIVE: []
|
|
5645
|
+
end
|
|
5646
|
+
|
|
5647
|
+
class StorageConfig
|
|
5648
|
+
attr_accessor project_s3_path: ::String
|
|
5649
|
+
attr_accessor kms_key_arn: ::String
|
|
5650
|
+
SENSITIVE: []
|
|
5651
|
+
end
|
|
5652
|
+
|
|
5490
5653
|
class SubscribedAsset
|
|
5491
5654
|
attr_accessor asset_id: ::String
|
|
5492
5655
|
attr_accessor asset_revision: ::String
|
|
@@ -5765,6 +5928,11 @@ module Aws::DataZone
|
|
|
5765
5928
|
SENSITIVE: []
|
|
5766
5929
|
end
|
|
5767
5930
|
|
|
5931
|
+
class TimeoutConfig
|
|
5932
|
+
attr_accessor run_timeout_in_minutes: ::Integer
|
|
5933
|
+
SENSITIVE: []
|
|
5934
|
+
end
|
|
5935
|
+
|
|
5768
5936
|
class Topic
|
|
5769
5937
|
attr_accessor subject: ::String
|
|
5770
5938
|
attr_accessor resource: Types::NotificationResource
|
|
@@ -5772,6 +5940,12 @@ module Aws::DataZone
|
|
|
5772
5940
|
SENSITIVE: []
|
|
5773
5941
|
end
|
|
5774
5942
|
|
|
5943
|
+
class TriggerSource
|
|
5944
|
+
attr_accessor type: ("MANUAL" | "SCHEDULED" | "WORKFLOW")
|
|
5945
|
+
attr_accessor name: ::String
|
|
5946
|
+
SENSITIVE: []
|
|
5947
|
+
end
|
|
5948
|
+
|
|
5775
5949
|
class UnauthorizedException
|
|
5776
5950
|
attr_accessor message: ::String
|
|
5777
5951
|
SENSITIVE: []
|