aws-sdk-datazone 1.27.0 → 1.29.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 +2289 -62
- data/lib/aws-sdk-datazone/client_api.rb +1536 -20
- data/lib/aws-sdk-datazone/types.rb +4396 -268
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +746 -10
- data/sig/types.rbs +1173 -14
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -51,7 +51,9 @@ module Aws::DataZone
|
|
51
51
|
attr_accessor created_by: ::String
|
52
52
|
attr_accessor decision_comment: ::String
|
53
53
|
attr_accessor domain_id: ::String
|
54
|
+
attr_accessor existing_subscription_id: ::String
|
54
55
|
attr_accessor id: ::String
|
56
|
+
attr_accessor metadata_forms: ::Array[Types::FormOutput]
|
55
57
|
attr_accessor request_reason: ::String
|
56
58
|
attr_accessor reviewer_id: ::String
|
57
59
|
attr_accessor status: ("PENDING" | "ACCEPTED" | "REJECTED")
|
@@ -102,7 +104,7 @@ module Aws::DataZone
|
|
102
104
|
attr_accessor domain_identifier: ::String
|
103
105
|
attr_accessor entity_identifier: ::String
|
104
106
|
attr_accessor entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE")
|
105
|
-
attr_accessor policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT")
|
107
|
+
attr_accessor policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT" | "CREATE_ENVIRONMENT_FROM_BLUEPRINT" | "CREATE_PROJECT_FROM_PROJECT_PROFILE")
|
106
108
|
attr_accessor principal: Types::PolicyGrantPrincipal
|
107
109
|
SENSITIVE: []
|
108
110
|
end
|
@@ -171,7 +173,7 @@ module Aws::DataZone
|
|
171
173
|
attr_accessor owning_project_id: ::String
|
172
174
|
attr_accessor type_identifier: ::String
|
173
175
|
attr_accessor type_revision: ::String
|
174
|
-
SENSITIVE: [:description, :
|
176
|
+
SENSITIVE: [:description, :name]
|
175
177
|
end
|
176
178
|
|
177
179
|
class AssetItemAdditionalAttributes
|
@@ -261,6 +263,12 @@ module Aws::DataZone
|
|
261
263
|
SENSITIVE: [:description]
|
262
264
|
end
|
263
265
|
|
266
|
+
class AssetTypesForRule
|
267
|
+
attr_accessor selection_mode: ("ALL" | "SPECIFIC")
|
268
|
+
attr_accessor specific_asset_types: ::Array[::String]
|
269
|
+
SENSITIVE: []
|
270
|
+
end
|
271
|
+
|
264
272
|
class AssociateEnvironmentRoleInput
|
265
273
|
attr_accessor domain_identifier: ::String
|
266
274
|
attr_accessor environment_identifier: ::String
|
@@ -271,11 +279,83 @@ module Aws::DataZone
|
|
271
279
|
class AssociateEnvironmentRoleOutput < Aws::EmptyStructure
|
272
280
|
end
|
273
281
|
|
282
|
+
class AthenaPropertiesInput
|
283
|
+
attr_accessor workgroup_name: ::String
|
284
|
+
SENSITIVE: []
|
285
|
+
end
|
286
|
+
|
287
|
+
class AthenaPropertiesOutput
|
288
|
+
attr_accessor workgroup_name: ::String
|
289
|
+
SENSITIVE: []
|
290
|
+
end
|
291
|
+
|
292
|
+
class AthenaPropertiesPatch
|
293
|
+
attr_accessor workgroup_name: ::String
|
294
|
+
SENSITIVE: []
|
295
|
+
end
|
296
|
+
|
297
|
+
class AuthenticationConfiguration
|
298
|
+
attr_accessor authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")
|
299
|
+
attr_accessor o_auth_2_properties: Types::OAuth2Properties
|
300
|
+
attr_accessor secret_arn: ::String
|
301
|
+
SENSITIVE: []
|
302
|
+
end
|
303
|
+
|
304
|
+
class AuthenticationConfigurationInput
|
305
|
+
attr_accessor authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")
|
306
|
+
attr_accessor basic_authentication_credentials: Types::BasicAuthenticationCredentials
|
307
|
+
attr_accessor custom_authentication_credentials: ::Hash[::String, ::String]
|
308
|
+
attr_accessor kms_key_arn: ::String
|
309
|
+
attr_accessor o_auth_2_properties: Types::OAuth2Properties
|
310
|
+
attr_accessor secret_arn: ::String
|
311
|
+
SENSITIVE: [:basic_authentication_credentials, :custom_authentication_credentials]
|
312
|
+
end
|
313
|
+
|
314
|
+
class AuthenticationConfigurationPatch
|
315
|
+
attr_accessor basic_authentication_credentials: Types::BasicAuthenticationCredentials
|
316
|
+
attr_accessor secret_arn: ::String
|
317
|
+
SENSITIVE: [:basic_authentication_credentials]
|
318
|
+
end
|
319
|
+
|
320
|
+
class AuthorizationCodeProperties
|
321
|
+
attr_accessor authorization_code: ::String
|
322
|
+
attr_accessor redirect_uri: ::String
|
323
|
+
SENSITIVE: []
|
324
|
+
end
|
325
|
+
|
326
|
+
class AwsAccount
|
327
|
+
attr_accessor aws_account_id: ::String
|
328
|
+
attr_accessor aws_account_id_path: ::String
|
329
|
+
attr_accessor unknown: untyped
|
330
|
+
SENSITIVE: []
|
331
|
+
|
332
|
+
class AwsAccountId < AwsAccount
|
333
|
+
end
|
334
|
+
class AwsAccountIdPath < AwsAccount
|
335
|
+
end
|
336
|
+
class Unknown < AwsAccount
|
337
|
+
end
|
338
|
+
end
|
339
|
+
|
274
340
|
class AwsConsoleLinkParameters
|
275
341
|
attr_accessor uri: ::String
|
276
342
|
SENSITIVE: []
|
277
343
|
end
|
278
344
|
|
345
|
+
class AwsLocation
|
346
|
+
attr_accessor access_role: ::String
|
347
|
+
attr_accessor aws_account_id: ::String
|
348
|
+
attr_accessor aws_region: ::String
|
349
|
+
attr_accessor iam_connection_id: ::String
|
350
|
+
SENSITIVE: []
|
351
|
+
end
|
352
|
+
|
353
|
+
class BasicAuthenticationCredentials
|
354
|
+
attr_accessor password: ::String
|
355
|
+
attr_accessor user_name: ::String
|
356
|
+
SENSITIVE: []
|
357
|
+
end
|
358
|
+
|
279
359
|
class BusinessNameGenerationConfiguration
|
280
360
|
attr_accessor enabled: bool
|
281
361
|
SENSITIVE: []
|
@@ -339,6 +419,108 @@ module Aws::DataZone
|
|
339
419
|
SENSITIVE: []
|
340
420
|
end
|
341
421
|
|
422
|
+
class ConnectionCredentials
|
423
|
+
attr_accessor access_key_id: ::String
|
424
|
+
attr_accessor expiration: ::Time
|
425
|
+
attr_accessor secret_access_key: ::String
|
426
|
+
attr_accessor session_token: ::String
|
427
|
+
SENSITIVE: []
|
428
|
+
end
|
429
|
+
|
430
|
+
class ConnectionPropertiesInput
|
431
|
+
attr_accessor athena_properties: Types::AthenaPropertiesInput
|
432
|
+
attr_accessor glue_properties: Types::GluePropertiesInput
|
433
|
+
attr_accessor hyper_pod_properties: Types::HyperPodPropertiesInput
|
434
|
+
attr_accessor iam_properties: Types::IamPropertiesInput
|
435
|
+
attr_accessor redshift_properties: Types::RedshiftPropertiesInput
|
436
|
+
attr_accessor spark_emr_properties: Types::SparkEmrPropertiesInput
|
437
|
+
attr_accessor spark_glue_properties: Types::SparkGluePropertiesInput
|
438
|
+
attr_accessor unknown: untyped
|
439
|
+
SENSITIVE: []
|
440
|
+
|
441
|
+
class AthenaProperties < ConnectionPropertiesInput
|
442
|
+
end
|
443
|
+
class GlueProperties < ConnectionPropertiesInput
|
444
|
+
end
|
445
|
+
class HyperPodProperties < ConnectionPropertiesInput
|
446
|
+
end
|
447
|
+
class IamProperties < ConnectionPropertiesInput
|
448
|
+
end
|
449
|
+
class RedshiftProperties < ConnectionPropertiesInput
|
450
|
+
end
|
451
|
+
class SparkEmrProperties < ConnectionPropertiesInput
|
452
|
+
end
|
453
|
+
class SparkGlueProperties < ConnectionPropertiesInput
|
454
|
+
end
|
455
|
+
class Unknown < ConnectionPropertiesInput
|
456
|
+
end
|
457
|
+
end
|
458
|
+
|
459
|
+
class ConnectionPropertiesOutput
|
460
|
+
attr_accessor athena_properties: Types::AthenaPropertiesOutput
|
461
|
+
attr_accessor glue_properties: Types::GluePropertiesOutput
|
462
|
+
attr_accessor hyper_pod_properties: Types::HyperPodPropertiesOutput
|
463
|
+
attr_accessor iam_properties: Types::IamPropertiesOutput
|
464
|
+
attr_accessor redshift_properties: Types::RedshiftPropertiesOutput
|
465
|
+
attr_accessor spark_emr_properties: Types::SparkEmrPropertiesOutput
|
466
|
+
attr_accessor spark_glue_properties: Types::SparkGluePropertiesOutput
|
467
|
+
attr_accessor unknown: untyped
|
468
|
+
SENSITIVE: []
|
469
|
+
|
470
|
+
class AthenaProperties < ConnectionPropertiesOutput
|
471
|
+
end
|
472
|
+
class GlueProperties < ConnectionPropertiesOutput
|
473
|
+
end
|
474
|
+
class HyperPodProperties < ConnectionPropertiesOutput
|
475
|
+
end
|
476
|
+
class IamProperties < ConnectionPropertiesOutput
|
477
|
+
end
|
478
|
+
class RedshiftProperties < ConnectionPropertiesOutput
|
479
|
+
end
|
480
|
+
class SparkEmrProperties < ConnectionPropertiesOutput
|
481
|
+
end
|
482
|
+
class SparkGlueProperties < ConnectionPropertiesOutput
|
483
|
+
end
|
484
|
+
class Unknown < ConnectionPropertiesOutput
|
485
|
+
end
|
486
|
+
end
|
487
|
+
|
488
|
+
class ConnectionPropertiesPatch
|
489
|
+
attr_accessor athena_properties: Types::AthenaPropertiesPatch
|
490
|
+
attr_accessor glue_properties: Types::GluePropertiesPatch
|
491
|
+
attr_accessor iam_properties: Types::IamPropertiesPatch
|
492
|
+
attr_accessor redshift_properties: Types::RedshiftPropertiesPatch
|
493
|
+
attr_accessor spark_emr_properties: Types::SparkEmrPropertiesPatch
|
494
|
+
attr_accessor unknown: untyped
|
495
|
+
SENSITIVE: []
|
496
|
+
|
497
|
+
class AthenaProperties < ConnectionPropertiesPatch
|
498
|
+
end
|
499
|
+
class GlueProperties < ConnectionPropertiesPatch
|
500
|
+
end
|
501
|
+
class IamProperties < ConnectionPropertiesPatch
|
502
|
+
end
|
503
|
+
class RedshiftProperties < ConnectionPropertiesPatch
|
504
|
+
end
|
505
|
+
class SparkEmrProperties < ConnectionPropertiesPatch
|
506
|
+
end
|
507
|
+
class Unknown < ConnectionPropertiesPatch
|
508
|
+
end
|
509
|
+
end
|
510
|
+
|
511
|
+
class ConnectionSummary
|
512
|
+
attr_accessor connection_id: ::String
|
513
|
+
attr_accessor domain_id: ::String
|
514
|
+
attr_accessor domain_unit_id: ::String
|
515
|
+
attr_accessor environment_id: ::String
|
516
|
+
attr_accessor name: ::String
|
517
|
+
attr_accessor physical_endpoints: ::Array[Types::PhysicalEndpoint]
|
518
|
+
attr_accessor project_id: ::String
|
519
|
+
attr_accessor props: Types::ConnectionPropertiesOutput
|
520
|
+
attr_accessor type: ("ATHENA" | "BIGQUERY" | "DATABRICKS" | "DOCUMENTDB" | "DYNAMODB" | "HYPERPOD" | "IAM" | "MYSQL" | "OPENSEARCH" | "ORACLE" | "POSTGRESQL" | "REDSHIFT" | "SAPHANA" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "VERTICA" | "WORKFLOWS_MWAA")
|
521
|
+
SENSITIVE: []
|
522
|
+
end
|
523
|
+
|
342
524
|
class CreateAssetFilterInput
|
343
525
|
attr_accessor asset_identifier: ::String
|
344
526
|
attr_accessor client_token: ::String
|
@@ -376,7 +558,7 @@ module Aws::DataZone
|
|
376
558
|
attr_accessor prediction_configuration: Types::PredictionConfiguration
|
377
559
|
attr_accessor type_identifier: ::String
|
378
560
|
attr_accessor type_revision: ::String
|
379
|
-
SENSITIVE: [:description, :
|
561
|
+
SENSITIVE: [:description, :forms_input, :name]
|
380
562
|
end
|
381
563
|
|
382
564
|
class CreateAssetOutput
|
@@ -399,7 +581,7 @@ module Aws::DataZone
|
|
399
581
|
attr_accessor revision: ::String
|
400
582
|
attr_accessor type_identifier: ::String
|
401
583
|
attr_accessor type_revision: ::String
|
402
|
-
SENSITIVE: [:description, :
|
584
|
+
SENSITIVE: [:description, :name]
|
403
585
|
end
|
404
586
|
|
405
587
|
class CreateAssetRevisionInput
|
@@ -435,7 +617,7 @@ module Aws::DataZone
|
|
435
617
|
attr_accessor revision: ::String
|
436
618
|
attr_accessor type_identifier: ::String
|
437
619
|
attr_accessor type_revision: ::String
|
438
|
-
SENSITIVE: [:description, :
|
620
|
+
SENSITIVE: [:description, :name]
|
439
621
|
end
|
440
622
|
|
441
623
|
class CreateAssetTypeInput
|
@@ -468,6 +650,31 @@ module Aws::DataZone
|
|
468
650
|
SENSITIVE: []
|
469
651
|
end
|
470
652
|
|
653
|
+
class CreateConnectionInput
|
654
|
+
attr_accessor aws_location: Types::AwsLocation
|
655
|
+
attr_accessor client_token: ::String
|
656
|
+
attr_accessor description: ::String
|
657
|
+
attr_accessor domain_identifier: ::String
|
658
|
+
attr_accessor environment_identifier: ::String
|
659
|
+
attr_accessor name: ::String
|
660
|
+
attr_accessor props: Types::ConnectionPropertiesInput
|
661
|
+
SENSITIVE: [:description]
|
662
|
+
end
|
663
|
+
|
664
|
+
class CreateConnectionOutput
|
665
|
+
attr_accessor connection_id: ::String
|
666
|
+
attr_accessor description: ::String
|
667
|
+
attr_accessor domain_id: ::String
|
668
|
+
attr_accessor domain_unit_id: ::String
|
669
|
+
attr_accessor environment_id: ::String
|
670
|
+
attr_accessor name: ::String
|
671
|
+
attr_accessor physical_endpoints: ::Array[Types::PhysicalEndpoint]
|
672
|
+
attr_accessor project_id: ::String
|
673
|
+
attr_accessor props: Types::ConnectionPropertiesOutput
|
674
|
+
attr_accessor type: ("ATHENA" | "BIGQUERY" | "DATABRICKS" | "DOCUMENTDB" | "DYNAMODB" | "HYPERPOD" | "IAM" | "MYSQL" | "OPENSEARCH" | "ORACLE" | "POSTGRESQL" | "REDSHIFT" | "SAPHANA" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "VERTICA" | "WORKFLOWS_MWAA")
|
675
|
+
SENSITIVE: [:description]
|
676
|
+
end
|
677
|
+
|
471
678
|
class CreateDataProductInput
|
472
679
|
attr_accessor client_token: ::String
|
473
680
|
attr_accessor description: ::String
|
@@ -532,6 +739,7 @@ module Aws::DataZone
|
|
532
739
|
attr_accessor asset_forms_input: ::Array[Types::FormInput]
|
533
740
|
attr_accessor client_token: ::String
|
534
741
|
attr_accessor configuration: Types::DataSourceConfigurationInput
|
742
|
+
attr_accessor connection_identifier: ::String
|
535
743
|
attr_accessor description: ::String
|
536
744
|
attr_accessor domain_identifier: ::String
|
537
745
|
attr_accessor enable_setting: ("ENABLED" | "DISABLED")
|
@@ -548,6 +756,7 @@ module Aws::DataZone
|
|
548
756
|
class CreateDataSourceOutput
|
549
757
|
attr_accessor asset_forms_output: ::Array[Types::FormOutput]
|
550
758
|
attr_accessor configuration: Types::DataSourceConfigurationOutput
|
759
|
+
attr_accessor connection_id: ::String
|
551
760
|
attr_accessor created_at: ::Time
|
552
761
|
attr_accessor description: ::String
|
553
762
|
attr_accessor domain_id: ::String
|
@@ -573,8 +782,10 @@ module Aws::DataZone
|
|
573
782
|
attr_accessor client_token: ::String
|
574
783
|
attr_accessor description: ::String
|
575
784
|
attr_accessor domain_execution_role: ::String
|
785
|
+
attr_accessor domain_version: ("V1" | "V2")
|
576
786
|
attr_accessor kms_key_identifier: ::String
|
577
787
|
attr_accessor name: ::String
|
788
|
+
attr_accessor service_role: ::String
|
578
789
|
attr_accessor single_sign_on: Types::SingleSignOn
|
579
790
|
attr_accessor tags: ::Hash[::String, ::String]
|
580
791
|
SENSITIVE: []
|
@@ -584,11 +795,13 @@ module Aws::DataZone
|
|
584
795
|
attr_accessor arn: ::String
|
585
796
|
attr_accessor description: ::String
|
586
797
|
attr_accessor domain_execution_role: ::String
|
798
|
+
attr_accessor domain_version: ("V1" | "V2")
|
587
799
|
attr_accessor id: ::String
|
588
800
|
attr_accessor kms_key_identifier: ::String
|
589
801
|
attr_accessor name: ::String
|
590
802
|
attr_accessor portal_url: ::String
|
591
803
|
attr_accessor root_domain_unit_id: ::String
|
804
|
+
attr_accessor service_role: ::String
|
592
805
|
attr_accessor single_sign_on: Types::SingleSignOn
|
593
806
|
attr_accessor status: ("CREATING" | "AVAILABLE" | "CREATION_FAILED" | "DELETING" | "DELETED" | "DELETION_FAILED")
|
594
807
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -642,11 +855,13 @@ module Aws::DataZone
|
|
642
855
|
end
|
643
856
|
|
644
857
|
class CreateEnvironmentInput
|
858
|
+
attr_accessor deployment_order: ::Integer
|
645
859
|
attr_accessor description: ::String
|
646
860
|
attr_accessor domain_identifier: ::String
|
647
861
|
attr_accessor environment_account_identifier: ::String
|
648
862
|
attr_accessor environment_account_region: ::String
|
649
863
|
attr_accessor environment_blueprint_identifier: ::String
|
864
|
+
attr_accessor environment_configuration_id: ::String
|
650
865
|
attr_accessor environment_profile_identifier: ::String
|
651
866
|
attr_accessor glossary_terms: ::Array[::String]
|
652
867
|
attr_accessor name: ::String
|
@@ -820,12 +1035,20 @@ module Aws::DataZone
|
|
820
1035
|
SENSITIVE: []
|
821
1036
|
end
|
822
1037
|
|
1038
|
+
class CreateProjectFromProjectProfilePolicyGrantDetail
|
1039
|
+
attr_accessor include_child_domain_units: bool
|
1040
|
+
attr_accessor project_profiles: ::Array[::String]
|
1041
|
+
SENSITIVE: []
|
1042
|
+
end
|
1043
|
+
|
823
1044
|
class CreateProjectInput
|
824
1045
|
attr_accessor description: ::String
|
825
1046
|
attr_accessor domain_identifier: ::String
|
826
1047
|
attr_accessor domain_unit_id: ::String
|
827
1048
|
attr_accessor glossary_terms: ::Array[::String]
|
828
1049
|
attr_accessor name: ::String
|
1050
|
+
attr_accessor project_profile_id: ::String
|
1051
|
+
attr_accessor user_parameters: ::Array[Types::EnvironmentConfigurationUserParameter]
|
829
1052
|
SENSITIVE: [:description, :name]
|
830
1053
|
end
|
831
1054
|
|
@@ -846,12 +1069,15 @@ module Aws::DataZone
|
|
846
1069
|
attr_accessor description: ::String
|
847
1070
|
attr_accessor domain_id: ::String
|
848
1071
|
attr_accessor domain_unit_id: ::String
|
1072
|
+
attr_accessor environment_deployment_details: Types::EnvironmentDeploymentDetails
|
849
1073
|
attr_accessor failure_reasons: ::Array[Types::ProjectDeletionError]
|
850
1074
|
attr_accessor glossary_terms: ::Array[::String]
|
851
1075
|
attr_accessor id: ::String
|
852
1076
|
attr_accessor last_updated_at: ::Time
|
853
1077
|
attr_accessor name: ::String
|
1078
|
+
attr_accessor project_profile_id: ::String
|
854
1079
|
attr_accessor project_status: ("ACTIVE" | "DELETING" | "DELETE_FAILED")
|
1080
|
+
attr_accessor user_parameters: ::Array[Types::EnvironmentConfigurationUserParameter]
|
855
1081
|
SENSITIVE: [:description, :name]
|
856
1082
|
end
|
857
1083
|
|
@@ -860,6 +1086,57 @@ module Aws::DataZone
|
|
860
1086
|
SENSITIVE: []
|
861
1087
|
end
|
862
1088
|
|
1089
|
+
class CreateProjectProfileInput
|
1090
|
+
attr_accessor description: ::String
|
1091
|
+
attr_accessor domain_identifier: ::String
|
1092
|
+
attr_accessor domain_unit_identifier: ::String
|
1093
|
+
attr_accessor environment_configurations: ::Array[Types::EnvironmentConfiguration]
|
1094
|
+
attr_accessor name: ::String
|
1095
|
+
attr_accessor status: ("ENABLED" | "DISABLED")
|
1096
|
+
SENSITIVE: [:description, :name]
|
1097
|
+
end
|
1098
|
+
|
1099
|
+
class CreateProjectProfileOutput
|
1100
|
+
attr_accessor created_at: ::Time
|
1101
|
+
attr_accessor created_by: ::String
|
1102
|
+
attr_accessor description: ::String
|
1103
|
+
attr_accessor domain_id: ::String
|
1104
|
+
attr_accessor domain_unit_id: ::String
|
1105
|
+
attr_accessor environment_configurations: ::Array[Types::EnvironmentConfiguration]
|
1106
|
+
attr_accessor id: ::String
|
1107
|
+
attr_accessor last_updated_at: ::Time
|
1108
|
+
attr_accessor name: ::String
|
1109
|
+
attr_accessor status: ("ENABLED" | "DISABLED")
|
1110
|
+
SENSITIVE: [:description, :name]
|
1111
|
+
end
|
1112
|
+
|
1113
|
+
class CreateRuleInput
|
1114
|
+
attr_accessor action: ("CREATE_SUBSCRIPTION_REQUEST")
|
1115
|
+
attr_accessor client_token: ::String
|
1116
|
+
attr_accessor description: ::String
|
1117
|
+
attr_accessor detail: Types::RuleDetail
|
1118
|
+
attr_accessor domain_identifier: ::String
|
1119
|
+
attr_accessor name: ::String
|
1120
|
+
attr_accessor scope: Types::RuleScope
|
1121
|
+
attr_accessor target: Types::RuleTarget
|
1122
|
+
SENSITIVE: [:description, :name]
|
1123
|
+
end
|
1124
|
+
|
1125
|
+
class CreateRuleOutput
|
1126
|
+
attr_accessor action: ("CREATE_SUBSCRIPTION_REQUEST")
|
1127
|
+
attr_accessor created_at: ::Time
|
1128
|
+
attr_accessor created_by: ::String
|
1129
|
+
attr_accessor description: ::String
|
1130
|
+
attr_accessor detail: Types::RuleDetail
|
1131
|
+
attr_accessor identifier: ::String
|
1132
|
+
attr_accessor name: ::String
|
1133
|
+
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT")
|
1134
|
+
attr_accessor scope: Types::RuleScope
|
1135
|
+
attr_accessor target: Types::RuleTarget
|
1136
|
+
attr_accessor target_type: ("DOMAIN_UNIT")
|
1137
|
+
SENSITIVE: [:description, :name]
|
1138
|
+
end
|
1139
|
+
|
863
1140
|
class CreateSubscriptionGrantInput
|
864
1141
|
attr_accessor asset_target_names: ::Array[Types::AssetTargetNameMap]
|
865
1142
|
attr_accessor client_token: ::String
|
@@ -888,6 +1165,7 @@ module Aws::DataZone
|
|
888
1165
|
class CreateSubscriptionRequestInput
|
889
1166
|
attr_accessor client_token: ::String
|
890
1167
|
attr_accessor domain_identifier: ::String
|
1168
|
+
attr_accessor metadata_forms: ::Array[Types::FormInput]
|
891
1169
|
attr_accessor request_reason: ::String
|
892
1170
|
attr_accessor subscribed_listings: ::Array[Types::SubscribedListingInput]
|
893
1171
|
attr_accessor subscribed_principals: ::Array[Types::SubscribedPrincipalInput]
|
@@ -899,7 +1177,9 @@ module Aws::DataZone
|
|
899
1177
|
attr_accessor created_by: ::String
|
900
1178
|
attr_accessor decision_comment: ::String
|
901
1179
|
attr_accessor domain_id: ::String
|
1180
|
+
attr_accessor existing_subscription_id: ::String
|
902
1181
|
attr_accessor id: ::String
|
1182
|
+
attr_accessor metadata_forms: ::Array[Types::FormOutput]
|
903
1183
|
attr_accessor request_reason: ::String
|
904
1184
|
attr_accessor reviewer_id: ::String
|
905
1185
|
attr_accessor status: ("PENDING" | "ACCEPTED" | "REJECTED")
|
@@ -1037,6 +1317,7 @@ module Aws::DataZone
|
|
1037
1317
|
class DataSourceConfigurationInput
|
1038
1318
|
attr_accessor glue_run_configuration: Types::GlueRunConfigurationInput
|
1039
1319
|
attr_accessor redshift_run_configuration: Types::RedshiftRunConfigurationInput
|
1320
|
+
attr_accessor sage_maker_run_configuration: Types::SageMakerRunConfigurationInput
|
1040
1321
|
attr_accessor unknown: untyped
|
1041
1322
|
SENSITIVE: []
|
1042
1323
|
|
@@ -1044,6 +1325,8 @@ module Aws::DataZone
|
|
1044
1325
|
end
|
1045
1326
|
class RedshiftRunConfiguration < DataSourceConfigurationInput
|
1046
1327
|
end
|
1328
|
+
class SageMakerRunConfiguration < DataSourceConfigurationInput
|
1329
|
+
end
|
1047
1330
|
class Unknown < DataSourceConfigurationInput
|
1048
1331
|
end
|
1049
1332
|
end
|
@@ -1051,6 +1334,7 @@ module Aws::DataZone
|
|
1051
1334
|
class DataSourceConfigurationOutput
|
1052
1335
|
attr_accessor glue_run_configuration: Types::GlueRunConfigurationOutput
|
1053
1336
|
attr_accessor redshift_run_configuration: Types::RedshiftRunConfigurationOutput
|
1337
|
+
attr_accessor sage_maker_run_configuration: Types::SageMakerRunConfigurationOutput
|
1054
1338
|
attr_accessor unknown: untyped
|
1055
1339
|
SENSITIVE: []
|
1056
1340
|
|
@@ -1058,6 +1342,8 @@ module Aws::DataZone
|
|
1058
1342
|
end
|
1059
1343
|
class RedshiftRunConfiguration < DataSourceConfigurationOutput
|
1060
1344
|
end
|
1345
|
+
class SageMakerRunConfiguration < DataSourceConfigurationOutput
|
1346
|
+
end
|
1061
1347
|
class Unknown < DataSourceConfigurationOutput
|
1062
1348
|
end
|
1063
1349
|
end
|
@@ -1075,6 +1361,7 @@ module Aws::DataZone
|
|
1075
1361
|
attr_accessor data_source_run_id: ::String
|
1076
1362
|
attr_accessor database: ::String
|
1077
1363
|
attr_accessor error_message: Types::DataSourceErrorMessage
|
1364
|
+
attr_accessor lineage_summary: Types::LineageInfo
|
1078
1365
|
attr_accessor project_id: ::String
|
1079
1366
|
attr_accessor technical_description: ::String
|
1080
1367
|
attr_accessor technical_name: ::String
|
@@ -1082,11 +1369,17 @@ module Aws::DataZone
|
|
1082
1369
|
SENSITIVE: [:database, :technical_description, :technical_name]
|
1083
1370
|
end
|
1084
1371
|
|
1372
|
+
class DataSourceRunLineageSummary
|
1373
|
+
attr_accessor import_status: ("IN_PROGRESS" | "SUCCESS" | "FAILED" | "PARTIALLY_SUCCEEDED")
|
1374
|
+
SENSITIVE: []
|
1375
|
+
end
|
1376
|
+
|
1085
1377
|
class DataSourceRunSummary
|
1086
1378
|
attr_accessor created_at: ::Time
|
1087
1379
|
attr_accessor data_source_id: ::String
|
1088
1380
|
attr_accessor error_message: Types::DataSourceErrorMessage
|
1089
1381
|
attr_accessor id: ::String
|
1382
|
+
attr_accessor lineage_summary: Types::DataSourceRunLineageSummary
|
1090
1383
|
attr_accessor project_id: ::String
|
1091
1384
|
attr_accessor run_statistics_for_assets: Types::RunStatisticsForAssets
|
1092
1385
|
attr_accessor started_at: ::Time
|
@@ -1098,8 +1391,10 @@ module Aws::DataZone
|
|
1098
1391
|
end
|
1099
1392
|
|
1100
1393
|
class DataSourceSummary
|
1394
|
+
attr_accessor connection_id: ::String
|
1101
1395
|
attr_accessor created_at: ::Time
|
1102
1396
|
attr_accessor data_source_id: ::String
|
1397
|
+
attr_accessor description: ::String
|
1103
1398
|
attr_accessor domain_id: ::String
|
1104
1399
|
attr_accessor enable_setting: ("ENABLED" | "DISABLED")
|
1105
1400
|
attr_accessor environment_id: ::String
|
@@ -1112,7 +1407,7 @@ module Aws::DataZone
|
|
1112
1407
|
attr_accessor status: ("CREATING" | "FAILED_CREATION" | "READY" | "UPDATING" | "FAILED_UPDATE" | "RUNNING" | "DELETING" | "FAILED_DELETION")
|
1113
1408
|
attr_accessor type: ::String
|
1114
1409
|
attr_accessor updated_at: ::Time
|
1115
|
-
SENSITIVE: [:name, :schedule]
|
1410
|
+
SENSITIVE: [:description, :name, :schedule]
|
1116
1411
|
end
|
1117
1412
|
|
1118
1413
|
class DeleteAssetFilterInput
|
@@ -1140,6 +1435,17 @@ module Aws::DataZone
|
|
1140
1435
|
class DeleteAssetTypeOutput < Aws::EmptyStructure
|
1141
1436
|
end
|
1142
1437
|
|
1438
|
+
class DeleteConnectionInput
|
1439
|
+
attr_accessor domain_identifier: ::String
|
1440
|
+
attr_accessor identifier: ::String
|
1441
|
+
SENSITIVE: []
|
1442
|
+
end
|
1443
|
+
|
1444
|
+
class DeleteConnectionOutput
|
1445
|
+
attr_accessor status: ::String
|
1446
|
+
SENSITIVE: []
|
1447
|
+
end
|
1448
|
+
|
1143
1449
|
class DeleteDataProductInput
|
1144
1450
|
attr_accessor domain_identifier: ::String
|
1145
1451
|
attr_accessor identifier: ::String
|
@@ -1160,6 +1466,7 @@ module Aws::DataZone
|
|
1160
1466
|
class DeleteDataSourceOutput
|
1161
1467
|
attr_accessor asset_forms_output: ::Array[Types::FormOutput]
|
1162
1468
|
attr_accessor configuration: Types::DataSourceConfigurationOutput
|
1469
|
+
attr_accessor connection_id: ::String
|
1163
1470
|
attr_accessor created_at: ::Time
|
1164
1471
|
attr_accessor description: ::String
|
1165
1472
|
attr_accessor domain_id: ::String
|
@@ -1287,6 +1594,24 @@ module Aws::DataZone
|
|
1287
1594
|
class DeleteProjectOutput < Aws::EmptyStructure
|
1288
1595
|
end
|
1289
1596
|
|
1597
|
+
class DeleteProjectProfileInput
|
1598
|
+
attr_accessor domain_identifier: ::String
|
1599
|
+
attr_accessor identifier: ::String
|
1600
|
+
SENSITIVE: []
|
1601
|
+
end
|
1602
|
+
|
1603
|
+
class DeleteProjectProfileOutput < Aws::EmptyStructure
|
1604
|
+
end
|
1605
|
+
|
1606
|
+
class DeleteRuleInput
|
1607
|
+
attr_accessor domain_identifier: ::String
|
1608
|
+
attr_accessor identifier: ::String
|
1609
|
+
SENSITIVE: []
|
1610
|
+
end
|
1611
|
+
|
1612
|
+
class DeleteRuleOutput < Aws::EmptyStructure
|
1613
|
+
end
|
1614
|
+
|
1290
1615
|
class DeleteSubscriptionGrantInput
|
1291
1616
|
attr_accessor domain_identifier: ::String
|
1292
1617
|
attr_accessor identifier: ::String
|
@@ -1369,6 +1694,7 @@ module Aws::DataZone
|
|
1369
1694
|
attr_accessor arn: ::String
|
1370
1695
|
attr_accessor created_at: ::Time
|
1371
1696
|
attr_accessor description: ::String
|
1697
|
+
attr_accessor domain_version: ("V1" | "V2")
|
1372
1698
|
attr_accessor id: ::String
|
1373
1699
|
attr_accessor last_updated_at: ::Time
|
1374
1700
|
attr_accessor managed_account_id: ::String
|
@@ -1427,6 +1753,12 @@ module Aws::DataZone
|
|
1427
1753
|
SENSITIVE: []
|
1428
1754
|
end
|
1429
1755
|
|
1756
|
+
class DomainUnitTarget
|
1757
|
+
attr_accessor domain_unit_id: ::String
|
1758
|
+
attr_accessor include_child_domain_units: bool
|
1759
|
+
SENSITIVE: []
|
1760
|
+
end
|
1761
|
+
|
1430
1762
|
class DomainUnitUserProperties
|
1431
1763
|
attr_accessor user_id: ::String
|
1432
1764
|
SENSITIVE: []
|
@@ -1447,6 +1779,7 @@ module Aws::DataZone
|
|
1447
1779
|
attr_accessor domain_id: ::String
|
1448
1780
|
attr_accessor enabled_regions: ::Array[::String]
|
1449
1781
|
attr_accessor environment_blueprint_id: ::String
|
1782
|
+
attr_accessor environment_role_permission_boundary: ::String
|
1450
1783
|
attr_accessor manage_access_role_arn: ::String
|
1451
1784
|
attr_accessor provisioning_configurations: ::Array[Types::ProvisioningConfiguration]
|
1452
1785
|
attr_accessor provisioning_role_arn: ::String
|
@@ -1466,6 +1799,45 @@ module Aws::DataZone
|
|
1466
1799
|
SENSITIVE: [:description]
|
1467
1800
|
end
|
1468
1801
|
|
1802
|
+
class EnvironmentConfiguration
|
1803
|
+
attr_accessor aws_account: Types::AwsAccount
|
1804
|
+
attr_accessor aws_region: Types::Region
|
1805
|
+
attr_accessor configuration_parameters: Types::EnvironmentConfigurationParametersDetails
|
1806
|
+
attr_accessor deployment_mode: ("ON_CREATE" | "ON_DEMAND")
|
1807
|
+
attr_accessor deployment_order: ::Integer
|
1808
|
+
attr_accessor description: ::String
|
1809
|
+
attr_accessor environment_blueprint_id: ::String
|
1810
|
+
attr_accessor id: ::String
|
1811
|
+
attr_accessor name: ::String
|
1812
|
+
SENSITIVE: [:description, :id, :name]
|
1813
|
+
end
|
1814
|
+
|
1815
|
+
class EnvironmentConfigurationParameter
|
1816
|
+
attr_accessor is_editable: bool
|
1817
|
+
attr_accessor name: ::String
|
1818
|
+
attr_accessor value: ::String
|
1819
|
+
SENSITIVE: []
|
1820
|
+
end
|
1821
|
+
|
1822
|
+
class EnvironmentConfigurationParametersDetails
|
1823
|
+
attr_accessor parameter_overrides: ::Array[Types::EnvironmentConfigurationParameter]
|
1824
|
+
attr_accessor resolved_parameters: ::Array[Types::EnvironmentConfigurationParameter]
|
1825
|
+
attr_accessor ssm_path: ::String
|
1826
|
+
SENSITIVE: []
|
1827
|
+
end
|
1828
|
+
|
1829
|
+
class EnvironmentConfigurationUserParameter
|
1830
|
+
attr_accessor environment_configuration_name: ::String
|
1831
|
+
attr_accessor environment_parameters: ::Array[Types::EnvironmentParameter]
|
1832
|
+
SENSITIVE: [:environment_configuration_name]
|
1833
|
+
end
|
1834
|
+
|
1835
|
+
class EnvironmentDeploymentDetails
|
1836
|
+
attr_accessor environment_failure_reasons: ::Hash[::String, ::Array[Types::EnvironmentError]]
|
1837
|
+
attr_accessor overall_deployment_status: ("PENDING_DEPLOYMENT" | "IN_PROGRESS" | "SUCCESSFUL" | "FAILED_VALIDATION" | "FAILED_DEPLOYMENT")
|
1838
|
+
SENSITIVE: []
|
1839
|
+
end
|
1840
|
+
|
1469
1841
|
class EnvironmentError
|
1470
1842
|
attr_accessor code: ::String
|
1471
1843
|
attr_accessor message: ::String
|
@@ -1516,6 +1888,17 @@ module Aws::DataZone
|
|
1516
1888
|
SENSITIVE: []
|
1517
1889
|
end
|
1518
1890
|
|
1891
|
+
class EventSummary
|
1892
|
+
attr_accessor open_lineage_run_event_summary: Types::OpenLineageRunEventSummary
|
1893
|
+
attr_accessor unknown: untyped
|
1894
|
+
SENSITIVE: []
|
1895
|
+
|
1896
|
+
class OpenLineageRunEventSummary < EventSummary
|
1897
|
+
end
|
1898
|
+
class Unknown < EventSummary
|
1899
|
+
end
|
1900
|
+
end
|
1901
|
+
|
1519
1902
|
class FailureCause
|
1520
1903
|
attr_accessor message: ::String
|
1521
1904
|
SENSITIVE: []
|
@@ -1644,7 +2027,7 @@ module Aws::DataZone
|
|
1644
2027
|
attr_accessor revision: ::String
|
1645
2028
|
attr_accessor type_identifier: ::String
|
1646
2029
|
attr_accessor type_revision: ::String
|
1647
|
-
SENSITIVE: [:description, :
|
2030
|
+
SENSITIVE: [:description, :name]
|
1648
2031
|
end
|
1649
2032
|
|
1650
2033
|
class GetAssetTypeInput
|
@@ -1670,6 +2053,29 @@ module Aws::DataZone
|
|
1670
2053
|
SENSITIVE: [:description]
|
1671
2054
|
end
|
1672
2055
|
|
2056
|
+
class GetConnectionInput
|
2057
|
+
attr_accessor domain_identifier: ::String
|
2058
|
+
attr_accessor identifier: ::String
|
2059
|
+
attr_accessor with_secret: bool
|
2060
|
+
SENSITIVE: []
|
2061
|
+
end
|
2062
|
+
|
2063
|
+
class GetConnectionOutput
|
2064
|
+
attr_accessor connection_credentials: Types::ConnectionCredentials
|
2065
|
+
attr_accessor connection_id: ::String
|
2066
|
+
attr_accessor description: ::String
|
2067
|
+
attr_accessor domain_id: ::String
|
2068
|
+
attr_accessor domain_unit_id: ::String
|
2069
|
+
attr_accessor environment_id: ::String
|
2070
|
+
attr_accessor environment_user_role: ::String
|
2071
|
+
attr_accessor name: ::String
|
2072
|
+
attr_accessor physical_endpoints: ::Array[Types::PhysicalEndpoint]
|
2073
|
+
attr_accessor project_id: ::String
|
2074
|
+
attr_accessor props: Types::ConnectionPropertiesOutput
|
2075
|
+
attr_accessor type: ("ATHENA" | "BIGQUERY" | "DATABRICKS" | "DOCUMENTDB" | "DYNAMODB" | "HYPERPOD" | "IAM" | "MYSQL" | "OPENSEARCH" | "ORACLE" | "POSTGRESQL" | "REDSHIFT" | "SAPHANA" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "VERTICA" | "WORKFLOWS_MWAA")
|
2076
|
+
SENSITIVE: [:connection_credentials, :description]
|
2077
|
+
end
|
2078
|
+
|
1673
2079
|
class GetDataProductInput
|
1674
2080
|
attr_accessor domain_identifier: ::String
|
1675
2081
|
attr_accessor identifier: ::String
|
@@ -1704,6 +2110,7 @@ module Aws::DataZone
|
|
1704
2110
|
class GetDataSourceOutput
|
1705
2111
|
attr_accessor asset_forms_output: ::Array[Types::FormOutput]
|
1706
2112
|
attr_accessor configuration: Types::DataSourceConfigurationOutput
|
2113
|
+
attr_accessor connection_id: ::String
|
1707
2114
|
attr_accessor created_at: ::Time
|
1708
2115
|
attr_accessor description: ::String
|
1709
2116
|
attr_accessor domain_id: ::String
|
@@ -1740,6 +2147,7 @@ module Aws::DataZone
|
|
1740
2147
|
attr_accessor domain_id: ::String
|
1741
2148
|
attr_accessor error_message: Types::DataSourceErrorMessage
|
1742
2149
|
attr_accessor id: ::String
|
2150
|
+
attr_accessor lineage_summary: Types::DataSourceRunLineageSummary
|
1743
2151
|
attr_accessor project_id: ::String
|
1744
2152
|
attr_accessor run_statistics_for_assets: Types::RunStatisticsForAssets
|
1745
2153
|
attr_accessor started_at: ::Time
|
@@ -1760,12 +2168,14 @@ module Aws::DataZone
|
|
1760
2168
|
attr_accessor created_at: ::Time
|
1761
2169
|
attr_accessor description: ::String
|
1762
2170
|
attr_accessor domain_execution_role: ::String
|
2171
|
+
attr_accessor domain_version: ("V1" | "V2")
|
1763
2172
|
attr_accessor id: ::String
|
1764
2173
|
attr_accessor kms_key_identifier: ::String
|
1765
2174
|
attr_accessor last_updated_at: ::Time
|
1766
2175
|
attr_accessor name: ::String
|
1767
2176
|
attr_accessor portal_url: ::String
|
1768
2177
|
attr_accessor root_domain_unit_id: ::String
|
2178
|
+
attr_accessor service_role: ::String
|
1769
2179
|
attr_accessor single_sign_on: Types::SingleSignOn
|
1770
2180
|
attr_accessor status: ("CREATING" | "AVAILABLE" | "CREATION_FAILED" | "DELETING" | "DELETED" | "DELETION_FAILED")
|
1771
2181
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -1820,6 +2230,7 @@ module Aws::DataZone
|
|
1820
2230
|
attr_accessor domain_id: ::String
|
1821
2231
|
attr_accessor enabled_regions: ::Array[::String]
|
1822
2232
|
attr_accessor environment_blueprint_id: ::String
|
2233
|
+
attr_accessor environment_role_permission_boundary: ::String
|
1823
2234
|
attr_accessor manage_access_role_arn: ::String
|
1824
2235
|
attr_accessor provisioning_configurations: ::Array[Types::ProvisioningConfiguration]
|
1825
2236
|
attr_accessor provisioning_role_arn: ::String
|
@@ -2005,6 +2416,45 @@ module Aws::DataZone
|
|
2005
2416
|
SENSITIVE: []
|
2006
2417
|
end
|
2007
2418
|
|
2419
|
+
class GetJobRunInput
|
2420
|
+
attr_accessor domain_identifier: ::String
|
2421
|
+
attr_accessor identifier: ::String
|
2422
|
+
SENSITIVE: []
|
2423
|
+
end
|
2424
|
+
|
2425
|
+
class GetJobRunOutput
|
2426
|
+
attr_accessor created_at: ::Time
|
2427
|
+
attr_accessor created_by: ::String
|
2428
|
+
attr_accessor details: Types::JobRunDetails
|
2429
|
+
attr_accessor domain_id: ::String
|
2430
|
+
attr_accessor end_time: ::Time
|
2431
|
+
attr_accessor error: Types::JobRunError
|
2432
|
+
attr_accessor id: ::String
|
2433
|
+
attr_accessor job_id: ::String
|
2434
|
+
attr_accessor job_type: ("LINEAGE")
|
2435
|
+
attr_accessor run_mode: ("SCHEDULED" | "ON_DEMAND")
|
2436
|
+
attr_accessor start_time: ::Time
|
2437
|
+
attr_accessor status: ("SCHEDULED" | "IN_PROGRESS" | "SUCCESS" | "PARTIALLY_SUCCEEDED" | "FAILED" | "ABORTED" | "TIMED_OUT" | "CANCELED")
|
2438
|
+
SENSITIVE: []
|
2439
|
+
end
|
2440
|
+
|
2441
|
+
class GetLineageEventInput
|
2442
|
+
attr_accessor domain_identifier: ::String
|
2443
|
+
attr_accessor identifier: ::String
|
2444
|
+
SENSITIVE: []
|
2445
|
+
end
|
2446
|
+
|
2447
|
+
class GetLineageEventOutput
|
2448
|
+
attr_accessor created_at: ::Time
|
2449
|
+
attr_accessor created_by: ::String
|
2450
|
+
attr_accessor domain_id: ::String
|
2451
|
+
attr_accessor event: ::String
|
2452
|
+
attr_accessor event_time: ::Time
|
2453
|
+
attr_accessor id: ::String
|
2454
|
+
attr_accessor processing_status: ("REQUESTED" | "PROCESSING" | "SUCCESS" | "FAILED")
|
2455
|
+
SENSITIVE: [:event]
|
2456
|
+
end
|
2457
|
+
|
2008
2458
|
class GetLineageNodeInput
|
2009
2459
|
attr_accessor domain_identifier: ::String
|
2010
2460
|
attr_accessor event_timestamp: ::Time
|
@@ -2083,12 +2533,60 @@ module Aws::DataZone
|
|
2083
2533
|
attr_accessor description: ::String
|
2084
2534
|
attr_accessor domain_id: ::String
|
2085
2535
|
attr_accessor domain_unit_id: ::String
|
2536
|
+
attr_accessor environment_deployment_details: Types::EnvironmentDeploymentDetails
|
2086
2537
|
attr_accessor failure_reasons: ::Array[Types::ProjectDeletionError]
|
2087
2538
|
attr_accessor glossary_terms: ::Array[::String]
|
2088
2539
|
attr_accessor id: ::String
|
2089
2540
|
attr_accessor last_updated_at: ::Time
|
2090
2541
|
attr_accessor name: ::String
|
2542
|
+
attr_accessor project_profile_id: ::String
|
2091
2543
|
attr_accessor project_status: ("ACTIVE" | "DELETING" | "DELETE_FAILED")
|
2544
|
+
attr_accessor user_parameters: ::Array[Types::EnvironmentConfigurationUserParameter]
|
2545
|
+
SENSITIVE: [:description, :name]
|
2546
|
+
end
|
2547
|
+
|
2548
|
+
class GetProjectProfileInput
|
2549
|
+
attr_accessor domain_identifier: ::String
|
2550
|
+
attr_accessor identifier: ::String
|
2551
|
+
SENSITIVE: []
|
2552
|
+
end
|
2553
|
+
|
2554
|
+
class GetProjectProfileOutput
|
2555
|
+
attr_accessor created_at: ::Time
|
2556
|
+
attr_accessor created_by: ::String
|
2557
|
+
attr_accessor description: ::String
|
2558
|
+
attr_accessor domain_id: ::String
|
2559
|
+
attr_accessor domain_unit_id: ::String
|
2560
|
+
attr_accessor environment_configurations: ::Array[Types::EnvironmentConfiguration]
|
2561
|
+
attr_accessor id: ::String
|
2562
|
+
attr_accessor last_updated_at: ::Time
|
2563
|
+
attr_accessor name: ::String
|
2564
|
+
attr_accessor status: ("ENABLED" | "DISABLED")
|
2565
|
+
SENSITIVE: [:description, :name]
|
2566
|
+
end
|
2567
|
+
|
2568
|
+
class GetRuleInput
|
2569
|
+
attr_accessor domain_identifier: ::String
|
2570
|
+
attr_accessor identifier: ::String
|
2571
|
+
attr_accessor revision: ::String
|
2572
|
+
SENSITIVE: []
|
2573
|
+
end
|
2574
|
+
|
2575
|
+
class GetRuleOutput
|
2576
|
+
attr_accessor action: ("CREATE_SUBSCRIPTION_REQUEST")
|
2577
|
+
attr_accessor created_at: ::Time
|
2578
|
+
attr_accessor created_by: ::String
|
2579
|
+
attr_accessor description: ::String
|
2580
|
+
attr_accessor detail: Types::RuleDetail
|
2581
|
+
attr_accessor identifier: ::String
|
2582
|
+
attr_accessor last_updated_by: ::String
|
2583
|
+
attr_accessor name: ::String
|
2584
|
+
attr_accessor revision: ::String
|
2585
|
+
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT")
|
2586
|
+
attr_accessor scope: Types::RuleScope
|
2587
|
+
attr_accessor target: Types::RuleTarget
|
2588
|
+
attr_accessor target_type: ("DOMAIN_UNIT")
|
2589
|
+
attr_accessor updated_at: ::Time
|
2092
2590
|
SENSITIVE: [:description, :name]
|
2093
2591
|
end
|
2094
2592
|
|
@@ -2145,7 +2643,9 @@ module Aws::DataZone
|
|
2145
2643
|
attr_accessor created_by: ::String
|
2146
2644
|
attr_accessor decision_comment: ::String
|
2147
2645
|
attr_accessor domain_id: ::String
|
2646
|
+
attr_accessor existing_subscription_id: ::String
|
2148
2647
|
attr_accessor id: ::String
|
2648
|
+
attr_accessor metadata_forms: ::Array[Types::FormOutput]
|
2149
2649
|
attr_accessor request_reason: ::String
|
2150
2650
|
attr_accessor reviewer_id: ::String
|
2151
2651
|
attr_accessor status: ("PENDING" | "ACCEPTED" | "REJECTED")
|
@@ -2246,8 +2746,78 @@ module Aws::DataZone
|
|
2246
2746
|
SENSITIVE: [:long_description, :name, :short_description]
|
2247
2747
|
end
|
2248
2748
|
|
2749
|
+
class GlueConnection
|
2750
|
+
attr_accessor athena_properties: ::Hash[::String, ::String]
|
2751
|
+
attr_accessor authentication_configuration: Types::AuthenticationConfiguration
|
2752
|
+
attr_accessor compatible_compute_environments: ::Array[("SPARK" | "ATHENA" | "PYTHON")]
|
2753
|
+
attr_accessor connection_properties: ::Hash[::String, ::String]
|
2754
|
+
attr_accessor connection_schema_version: ::Integer
|
2755
|
+
attr_accessor connection_type: ("ATHENA" | "BIGQUERY" | "DATABRICKS" | "DOCUMENTDB" | "DYNAMODB" | "HYPERPOD" | "IAM" | "MYSQL" | "OPENSEARCH" | "ORACLE" | "POSTGRESQL" | "REDSHIFT" | "SAPHANA" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "VERTICA" | "WORKFLOWS_MWAA")
|
2756
|
+
attr_accessor creation_time: ::Time
|
2757
|
+
attr_accessor description: ::String
|
2758
|
+
attr_accessor last_connection_validation_time: ::Time
|
2759
|
+
attr_accessor last_updated_by: ::String
|
2760
|
+
attr_accessor last_updated_time: ::Time
|
2761
|
+
attr_accessor match_criteria: ::Array[::String]
|
2762
|
+
attr_accessor name: ::String
|
2763
|
+
attr_accessor physical_connection_requirements: Types::PhysicalConnectionRequirements
|
2764
|
+
attr_accessor python_properties: ::Hash[::String, ::String]
|
2765
|
+
attr_accessor spark_properties: ::Hash[::String, ::String]
|
2766
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "DELETING" | "DELETE_FAILED" | "READY" | "UPDATING" | "UPDATE_FAILED" | "DELETED")
|
2767
|
+
attr_accessor status_reason: ::String
|
2768
|
+
SENSITIVE: []
|
2769
|
+
end
|
2770
|
+
|
2771
|
+
class GlueConnectionInput
|
2772
|
+
attr_accessor athena_properties: ::Hash[::String, ::String]
|
2773
|
+
attr_accessor authentication_configuration: Types::AuthenticationConfigurationInput
|
2774
|
+
attr_accessor connection_properties: ::Hash[::String, ::String]
|
2775
|
+
attr_accessor connection_type: ("SNOWFLAKE" | "BIGQUERY" | "DOCUMENTDB" | "DYNAMODB" | "MYSQL" | "OPENSEARCH" | "ORACLE" | "POSTGRESQL" | "REDSHIFT" | "SAPHANA" | "SQLSERVER" | "TERADATA" | "VERTICA")
|
2776
|
+
attr_accessor description: ::String
|
2777
|
+
attr_accessor match_criteria: ::String
|
2778
|
+
attr_accessor name: ::String
|
2779
|
+
attr_accessor physical_connection_requirements: Types::PhysicalConnectionRequirements
|
2780
|
+
attr_accessor python_properties: ::Hash[::String, ::String]
|
2781
|
+
attr_accessor spark_properties: ::Hash[::String, ::String]
|
2782
|
+
attr_accessor validate_credentials: bool
|
2783
|
+
attr_accessor validate_for_compute_environments: ::Array[("SPARK" | "ATHENA" | "PYTHON")]
|
2784
|
+
SENSITIVE: []
|
2785
|
+
end
|
2786
|
+
|
2787
|
+
class GlueConnectionPatch
|
2788
|
+
attr_accessor authentication_configuration: Types::AuthenticationConfigurationPatch
|
2789
|
+
attr_accessor connection_properties: ::Hash[::String, ::String]
|
2790
|
+
attr_accessor description: ::String
|
2791
|
+
SENSITIVE: []
|
2792
|
+
end
|
2793
|
+
|
2794
|
+
class GlueOAuth2Credentials
|
2795
|
+
attr_accessor access_token: ::String
|
2796
|
+
attr_accessor jwt_token: ::String
|
2797
|
+
attr_accessor refresh_token: ::String
|
2798
|
+
attr_accessor user_managed_client_application_client_secret: ::String
|
2799
|
+
SENSITIVE: []
|
2800
|
+
end
|
2801
|
+
|
2802
|
+
class GluePropertiesInput
|
2803
|
+
attr_accessor glue_connection_input: Types::GlueConnectionInput
|
2804
|
+
SENSITIVE: []
|
2805
|
+
end
|
2806
|
+
|
2807
|
+
class GluePropertiesOutput
|
2808
|
+
attr_accessor error_message: ::String
|
2809
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "DELETING" | "DELETE_FAILED" | "READY" | "UPDATING" | "UPDATE_FAILED" | "DELETED")
|
2810
|
+
SENSITIVE: []
|
2811
|
+
end
|
2812
|
+
|
2813
|
+
class GluePropertiesPatch
|
2814
|
+
attr_accessor glue_connection_input: Types::GlueConnectionPatch
|
2815
|
+
SENSITIVE: []
|
2816
|
+
end
|
2817
|
+
|
2249
2818
|
class GlueRunConfigurationInput
|
2250
2819
|
attr_accessor auto_import_data_quality_result: bool
|
2820
|
+
attr_accessor catalog_name: ::String
|
2251
2821
|
attr_accessor data_access_role: ::String
|
2252
2822
|
attr_accessor relational_filter_configurations: ::Array[Types::RelationalFilterConfiguration]
|
2253
2823
|
SENSITIVE: []
|
@@ -2256,6 +2826,7 @@ module Aws::DataZone
|
|
2256
2826
|
class GlueRunConfigurationOutput
|
2257
2827
|
attr_accessor account_id: ::String
|
2258
2828
|
attr_accessor auto_import_data_quality_result: bool
|
2829
|
+
attr_accessor catalog_name: ::String
|
2259
2830
|
attr_accessor data_access_role: ::String
|
2260
2831
|
attr_accessor region: ::String
|
2261
2832
|
attr_accessor relational_filter_configurations: ::Array[Types::RelationalFilterConfiguration]
|
@@ -2325,6 +2896,34 @@ module Aws::DataZone
|
|
2325
2896
|
SENSITIVE: [:group_name]
|
2326
2897
|
end
|
2327
2898
|
|
2899
|
+
class HyperPodPropertiesInput
|
2900
|
+
attr_accessor cluster_name: ::String
|
2901
|
+
SENSITIVE: []
|
2902
|
+
end
|
2903
|
+
|
2904
|
+
class HyperPodPropertiesOutput
|
2905
|
+
attr_accessor cluster_arn: ::String
|
2906
|
+
attr_accessor cluster_name: ::String
|
2907
|
+
attr_accessor orchestrator: ("EKS" | "SLURM")
|
2908
|
+
SENSITIVE: []
|
2909
|
+
end
|
2910
|
+
|
2911
|
+
class IamPropertiesInput
|
2912
|
+
attr_accessor glue_lineage_sync_enabled: bool
|
2913
|
+
SENSITIVE: []
|
2914
|
+
end
|
2915
|
+
|
2916
|
+
class IamPropertiesOutput
|
2917
|
+
attr_accessor environment_id: ::String
|
2918
|
+
attr_accessor glue_lineage_sync_enabled: bool
|
2919
|
+
SENSITIVE: []
|
2920
|
+
end
|
2921
|
+
|
2922
|
+
class IamPropertiesPatch
|
2923
|
+
attr_accessor glue_lineage_sync_enabled: bool
|
2924
|
+
SENSITIVE: []
|
2925
|
+
end
|
2926
|
+
|
2328
2927
|
class IamUserProfileDetails
|
2329
2928
|
attr_accessor arn: ::String
|
2330
2929
|
SENSITIVE: []
|
@@ -2357,6 +2956,37 @@ module Aws::DataZone
|
|
2357
2956
|
SENSITIVE: []
|
2358
2957
|
end
|
2359
2958
|
|
2959
|
+
class JobRunDetails
|
2960
|
+
attr_accessor lineage_run_details: Types::LineageRunDetails
|
2961
|
+
attr_accessor unknown: untyped
|
2962
|
+
SENSITIVE: []
|
2963
|
+
|
2964
|
+
class LineageRunDetails < JobRunDetails
|
2965
|
+
end
|
2966
|
+
class Unknown < JobRunDetails
|
2967
|
+
end
|
2968
|
+
end
|
2969
|
+
|
2970
|
+
class JobRunError
|
2971
|
+
attr_accessor message: ::String
|
2972
|
+
SENSITIVE: []
|
2973
|
+
end
|
2974
|
+
|
2975
|
+
class JobRunSummary
|
2976
|
+
attr_accessor created_at: ::Time
|
2977
|
+
attr_accessor created_by: ::String
|
2978
|
+
attr_accessor domain_id: ::String
|
2979
|
+
attr_accessor end_time: ::Time
|
2980
|
+
attr_accessor error: Types::JobRunError
|
2981
|
+
attr_accessor job_id: ::String
|
2982
|
+
attr_accessor job_type: ("LINEAGE")
|
2983
|
+
attr_accessor run_id: ::String
|
2984
|
+
attr_accessor run_mode: ("SCHEDULED" | "ON_DEMAND")
|
2985
|
+
attr_accessor start_time: ::Time
|
2986
|
+
attr_accessor status: ("SCHEDULED" | "IN_PROGRESS" | "SUCCESS" | "PARTIALLY_SUCCEEDED" | "FAILED" | "ABORTED" | "TIMED_OUT" | "CANCELED")
|
2987
|
+
SENSITIVE: []
|
2988
|
+
end
|
2989
|
+
|
2360
2990
|
class LakeFormationConfiguration
|
2361
2991
|
attr_accessor location_registration_exclude_s3_locations: ::Array[::String]
|
2362
2992
|
attr_accessor location_registration_role: ::String
|
@@ -2381,6 +3011,24 @@ module Aws::DataZone
|
|
2381
3011
|
SENSITIVE: []
|
2382
3012
|
end
|
2383
3013
|
|
3014
|
+
class LineageEventSummary
|
3015
|
+
attr_accessor created_at: ::Time
|
3016
|
+
attr_accessor created_by: ::String
|
3017
|
+
attr_accessor domain_id: ::String
|
3018
|
+
attr_accessor event_summary: Types::EventSummary
|
3019
|
+
attr_accessor event_time: ::Time
|
3020
|
+
attr_accessor id: ::String
|
3021
|
+
attr_accessor processing_status: ("REQUESTED" | "PROCESSING" | "SUCCESS" | "FAILED")
|
3022
|
+
SENSITIVE: []
|
3023
|
+
end
|
3024
|
+
|
3025
|
+
class LineageInfo
|
3026
|
+
attr_accessor error_message: ::String
|
3027
|
+
attr_accessor event_id: ::String
|
3028
|
+
attr_accessor event_status: ("REQUESTED" | "PROCESSING" | "SUCCESS" | "FAILED")
|
3029
|
+
SENSITIVE: []
|
3030
|
+
end
|
3031
|
+
|
2384
3032
|
class LineageNodeReference
|
2385
3033
|
attr_accessor event_timestamp: ::Time
|
2386
3034
|
attr_accessor id: ::String
|
@@ -2416,6 +3064,25 @@ module Aws::DataZone
|
|
2416
3064
|
SENSITIVE: []
|
2417
3065
|
end
|
2418
3066
|
|
3067
|
+
class LineageRunDetails
|
3068
|
+
attr_accessor sql_query_run_details: Types::LineageSqlQueryRunDetails
|
3069
|
+
SENSITIVE: []
|
3070
|
+
end
|
3071
|
+
|
3072
|
+
class LineageSqlQueryRunDetails
|
3073
|
+
attr_accessor error_messages: ::Array[::String]
|
3074
|
+
attr_accessor num_queries_failed: ::Integer
|
3075
|
+
attr_accessor query_end_time: ::Time
|
3076
|
+
attr_accessor query_start_time: ::Time
|
3077
|
+
attr_accessor total_queries_processed: ::Integer
|
3078
|
+
SENSITIVE: []
|
3079
|
+
end
|
3080
|
+
|
3081
|
+
class LineageSyncSchedule
|
3082
|
+
attr_accessor schedule: ::String
|
3083
|
+
SENSITIVE: []
|
3084
|
+
end
|
3085
|
+
|
2419
3086
|
class ListAssetFiltersInput
|
2420
3087
|
attr_accessor asset_identifier: ::String
|
2421
3088
|
attr_accessor domain_identifier: ::String
|
@@ -2431,16 +3098,35 @@ module Aws::DataZone
|
|
2431
3098
|
SENSITIVE: []
|
2432
3099
|
end
|
2433
3100
|
|
2434
|
-
class ListAssetRevisionsInput
|
3101
|
+
class ListAssetRevisionsInput
|
3102
|
+
attr_accessor domain_identifier: ::String
|
3103
|
+
attr_accessor identifier: ::String
|
3104
|
+
attr_accessor max_results: ::Integer
|
3105
|
+
attr_accessor next_token: ::String
|
3106
|
+
SENSITIVE: []
|
3107
|
+
end
|
3108
|
+
|
3109
|
+
class ListAssetRevisionsOutput
|
3110
|
+
attr_accessor items: ::Array[Types::AssetRevision]
|
3111
|
+
attr_accessor next_token: ::String
|
3112
|
+
SENSITIVE: []
|
3113
|
+
end
|
3114
|
+
|
3115
|
+
class ListConnectionsInput
|
2435
3116
|
attr_accessor domain_identifier: ::String
|
2436
|
-
attr_accessor
|
3117
|
+
attr_accessor environment_identifier: ::String
|
2437
3118
|
attr_accessor max_results: ::Integer
|
3119
|
+
attr_accessor name: ::String
|
2438
3120
|
attr_accessor next_token: ::String
|
3121
|
+
attr_accessor project_identifier: ::String
|
3122
|
+
attr_accessor sort_by: ("NAME")
|
3123
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
3124
|
+
attr_accessor type: ("ATHENA" | "BIGQUERY" | "DATABRICKS" | "DOCUMENTDB" | "DYNAMODB" | "HYPERPOD" | "IAM" | "MYSQL" | "OPENSEARCH" | "ORACLE" | "POSTGRESQL" | "REDSHIFT" | "SAPHANA" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "VERTICA" | "WORKFLOWS_MWAA")
|
2439
3125
|
SENSITIVE: []
|
2440
3126
|
end
|
2441
3127
|
|
2442
|
-
class
|
2443
|
-
attr_accessor items: ::Array[Types::
|
3128
|
+
class ListConnectionsOutput
|
3129
|
+
attr_accessor items: ::Array[Types::ConnectionSummary]
|
2444
3130
|
attr_accessor next_token: ::String
|
2445
3131
|
SENSITIVE: []
|
2446
3132
|
end
|
@@ -2490,6 +3176,7 @@ module Aws::DataZone
|
|
2490
3176
|
end
|
2491
3177
|
|
2492
3178
|
class ListDataSourcesInput
|
3179
|
+
attr_accessor connection_identifier: ::String
|
2493
3180
|
attr_accessor domain_identifier: ::String
|
2494
3181
|
attr_accessor environment_identifier: ::String
|
2495
3182
|
attr_accessor max_results: ::Integer
|
@@ -2630,6 +3317,39 @@ module Aws::DataZone
|
|
2630
3317
|
SENSITIVE: []
|
2631
3318
|
end
|
2632
3319
|
|
3320
|
+
class ListJobRunsInput
|
3321
|
+
attr_accessor domain_identifier: ::String
|
3322
|
+
attr_accessor job_identifier: ::String
|
3323
|
+
attr_accessor max_results: ::Integer
|
3324
|
+
attr_accessor next_token: ::String
|
3325
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
3326
|
+
attr_accessor status: ("SCHEDULED" | "IN_PROGRESS" | "SUCCESS" | "PARTIALLY_SUCCEEDED" | "FAILED" | "ABORTED" | "TIMED_OUT" | "CANCELED")
|
3327
|
+
SENSITIVE: []
|
3328
|
+
end
|
3329
|
+
|
3330
|
+
class ListJobRunsOutput
|
3331
|
+
attr_accessor items: ::Array[Types::JobRunSummary]
|
3332
|
+
attr_accessor next_token: ::String
|
3333
|
+
SENSITIVE: []
|
3334
|
+
end
|
3335
|
+
|
3336
|
+
class ListLineageEventsInput
|
3337
|
+
attr_accessor domain_identifier: ::String
|
3338
|
+
attr_accessor max_results: ::Integer
|
3339
|
+
attr_accessor next_token: ::String
|
3340
|
+
attr_accessor processing_status: ("REQUESTED" | "PROCESSING" | "SUCCESS" | "FAILED")
|
3341
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
3342
|
+
attr_accessor timestamp_after: ::Time
|
3343
|
+
attr_accessor timestamp_before: ::Time
|
3344
|
+
SENSITIVE: []
|
3345
|
+
end
|
3346
|
+
|
3347
|
+
class ListLineageEventsOutput
|
3348
|
+
attr_accessor items: ::Array[Types::LineageEventSummary]
|
3349
|
+
attr_accessor next_token: ::String
|
3350
|
+
SENSITIVE: []
|
3351
|
+
end
|
3352
|
+
|
2633
3353
|
class ListLineageNodeHistoryInput
|
2634
3354
|
attr_accessor direction: ("UPSTREAM" | "DOWNSTREAM")
|
2635
3355
|
attr_accessor domain_identifier: ::String
|
@@ -2687,7 +3407,7 @@ module Aws::DataZone
|
|
2687
3407
|
attr_accessor entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE")
|
2688
3408
|
attr_accessor max_results: ::Integer
|
2689
3409
|
attr_accessor next_token: ::String
|
2690
|
-
attr_accessor policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT")
|
3410
|
+
attr_accessor policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT" | "CREATE_ENVIRONMENT_FROM_BLUEPRINT" | "CREATE_PROJECT_FROM_PROJECT_PROFILE")
|
2691
3411
|
SENSITIVE: []
|
2692
3412
|
end
|
2693
3413
|
|
@@ -2713,6 +3433,22 @@ module Aws::DataZone
|
|
2713
3433
|
SENSITIVE: []
|
2714
3434
|
end
|
2715
3435
|
|
3436
|
+
class ListProjectProfilesInput
|
3437
|
+
attr_accessor domain_identifier: ::String
|
3438
|
+
attr_accessor max_results: ::Integer
|
3439
|
+
attr_accessor name: ::String
|
3440
|
+
attr_accessor next_token: ::String
|
3441
|
+
attr_accessor sort_by: ("NAME")
|
3442
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
3443
|
+
SENSITIVE: [:name]
|
3444
|
+
end
|
3445
|
+
|
3446
|
+
class ListProjectProfilesOutput
|
3447
|
+
attr_accessor items: ::Array[Types::ProjectProfileSummary]
|
3448
|
+
attr_accessor next_token: ::String
|
3449
|
+
SENSITIVE: []
|
3450
|
+
end
|
3451
|
+
|
2716
3452
|
class ListProjectsInput
|
2717
3453
|
attr_accessor domain_identifier: ::String
|
2718
3454
|
attr_accessor group_identifier: ::String
|
@@ -2729,6 +3465,27 @@ module Aws::DataZone
|
|
2729
3465
|
SENSITIVE: []
|
2730
3466
|
end
|
2731
3467
|
|
3468
|
+
class ListRulesInput
|
3469
|
+
attr_accessor action: ("CREATE_SUBSCRIPTION_REQUEST")
|
3470
|
+
attr_accessor asset_types: ::Array[::String]
|
3471
|
+
attr_accessor data_product: bool
|
3472
|
+
attr_accessor domain_identifier: ::String
|
3473
|
+
attr_accessor include_cascaded: bool
|
3474
|
+
attr_accessor max_results: ::Integer
|
3475
|
+
attr_accessor next_token: ::String
|
3476
|
+
attr_accessor project_ids: ::Array[::String]
|
3477
|
+
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT")
|
3478
|
+
attr_accessor target_identifier: ::String
|
3479
|
+
attr_accessor target_type: ("DOMAIN_UNIT")
|
3480
|
+
SENSITIVE: []
|
3481
|
+
end
|
3482
|
+
|
3483
|
+
class ListRulesOutput
|
3484
|
+
attr_accessor items: ::Array[Types::RuleSummary]
|
3485
|
+
attr_accessor next_token: ::String
|
3486
|
+
SENSITIVE: []
|
3487
|
+
end
|
3488
|
+
|
2732
3489
|
class ListSubscriptionGrantsInput
|
2733
3490
|
attr_accessor domain_identifier: ::String
|
2734
3491
|
attr_accessor environment_id: ::String
|
@@ -2900,6 +3657,24 @@ module Aws::DataZone
|
|
2900
3657
|
end
|
2901
3658
|
end
|
2902
3659
|
|
3660
|
+
class MetadataFormEnforcementDetail
|
3661
|
+
attr_accessor required_metadata_forms: ::Array[Types::MetadataFormReference]
|
3662
|
+
SENSITIVE: []
|
3663
|
+
end
|
3664
|
+
|
3665
|
+
class MetadataFormReference
|
3666
|
+
attr_accessor type_identifier: ::String
|
3667
|
+
attr_accessor type_revision: ::String
|
3668
|
+
SENSITIVE: []
|
3669
|
+
end
|
3670
|
+
|
3671
|
+
class MetadataFormSummary
|
3672
|
+
attr_accessor form_name: ::String
|
3673
|
+
attr_accessor type_name: ::String
|
3674
|
+
attr_accessor type_revision: ::String
|
3675
|
+
SENSITIVE: [:type_name]
|
3676
|
+
end
|
3677
|
+
|
2903
3678
|
class MetadataGenerationRunItem
|
2904
3679
|
attr_accessor created_at: ::Time
|
2905
3680
|
attr_accessor created_by: ::String
|
@@ -2930,6 +3705,12 @@ module Aws::DataZone
|
|
2930
3705
|
end
|
2931
3706
|
end
|
2932
3707
|
|
3708
|
+
class NameIdentifier
|
3709
|
+
attr_accessor name: ::String
|
3710
|
+
attr_accessor namespace: ::String
|
3711
|
+
SENSITIVE: []
|
3712
|
+
end
|
3713
|
+
|
2933
3714
|
class NotEqualToExpression
|
2934
3715
|
attr_accessor column_name: ::String
|
2935
3716
|
attr_accessor value: ::String
|
@@ -2970,6 +3751,31 @@ module Aws::DataZone
|
|
2970
3751
|
SENSITIVE: []
|
2971
3752
|
end
|
2972
3753
|
|
3754
|
+
class OAuth2ClientApplication
|
3755
|
+
attr_accessor a_ws_managed_client_application_reference: ::String
|
3756
|
+
attr_accessor user_managed_client_application_client_id: ::String
|
3757
|
+
SENSITIVE: []
|
3758
|
+
end
|
3759
|
+
|
3760
|
+
class OAuth2Properties
|
3761
|
+
attr_accessor authorization_code_properties: Types::AuthorizationCodeProperties
|
3762
|
+
attr_accessor o_auth_2_client_application: Types::OAuth2ClientApplication
|
3763
|
+
attr_accessor o_auth_2_credentials: Types::GlueOAuth2Credentials
|
3764
|
+
attr_accessor o_auth_2_grant_type: ("AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER")
|
3765
|
+
attr_accessor token_url: ::String
|
3766
|
+
attr_accessor token_url_parameters_map: ::Hash[::String, ::String]
|
3767
|
+
SENSITIVE: [:o_auth_2_credentials]
|
3768
|
+
end
|
3769
|
+
|
3770
|
+
class OpenLineageRunEventSummary
|
3771
|
+
attr_accessor event_type: ("START" | "RUNNING" | "COMPLETE" | "ABORT" | "FAIL" | "OTHER")
|
3772
|
+
attr_accessor inputs: ::Array[Types::NameIdentifier]
|
3773
|
+
attr_accessor job: Types::NameIdentifier
|
3774
|
+
attr_accessor outputs: ::Array[Types::NameIdentifier]
|
3775
|
+
attr_accessor run_id: ::String
|
3776
|
+
SENSITIVE: []
|
3777
|
+
end
|
3778
|
+
|
2973
3779
|
class OverrideDomainUnitOwnersPolicyGrantDetail
|
2974
3780
|
attr_accessor include_child_domain_units: bool
|
2975
3781
|
SENSITIVE: []
|
@@ -3028,15 +3834,36 @@ module Aws::DataZone
|
|
3028
3834
|
SENSITIVE: []
|
3029
3835
|
end
|
3030
3836
|
|
3837
|
+
class PhysicalConnectionRequirements
|
3838
|
+
attr_accessor availability_zone: ::String
|
3839
|
+
attr_accessor security_group_id_list: ::Array[::String]
|
3840
|
+
attr_accessor subnet_id: ::String
|
3841
|
+
attr_accessor subnet_id_list: ::Array[::String]
|
3842
|
+
SENSITIVE: []
|
3843
|
+
end
|
3844
|
+
|
3845
|
+
class PhysicalEndpoint
|
3846
|
+
attr_accessor aws_location: Types::AwsLocation
|
3847
|
+
attr_accessor glue_connection: Types::GlueConnection
|
3848
|
+
attr_accessor glue_connection_name: ::String
|
3849
|
+
attr_accessor host: ::String
|
3850
|
+
attr_accessor port: ::Integer
|
3851
|
+
attr_accessor protocol: ("ATHENA" | "GLUE_INTERACTIVE_SESSION" | "HTTPS" | "JDBC" | "LIVY" | "ODBC" | "PRISM")
|
3852
|
+
attr_accessor stage: ::String
|
3853
|
+
SENSITIVE: []
|
3854
|
+
end
|
3855
|
+
|
3031
3856
|
class PolicyGrantDetail
|
3032
3857
|
attr_accessor add_to_project_member_pool: Types::AddToProjectMemberPoolPolicyGrantDetail
|
3033
3858
|
attr_accessor create_asset_type: Types::CreateAssetTypePolicyGrantDetail
|
3034
3859
|
attr_accessor create_domain_unit: Types::CreateDomainUnitPolicyGrantDetail
|
3035
3860
|
attr_accessor create_environment: Types::Unit
|
3861
|
+
attr_accessor create_environment_from_blueprint: Types::Unit
|
3036
3862
|
attr_accessor create_environment_profile: Types::CreateEnvironmentProfilePolicyGrantDetail
|
3037
3863
|
attr_accessor create_form_type: Types::CreateFormTypePolicyGrantDetail
|
3038
3864
|
attr_accessor create_glossary: Types::CreateGlossaryPolicyGrantDetail
|
3039
3865
|
attr_accessor create_project: Types::CreateProjectPolicyGrantDetail
|
3866
|
+
attr_accessor create_project_from_project_profile: Types::CreateProjectFromProjectProfilePolicyGrantDetail
|
3040
3867
|
attr_accessor delegate_create_environment_profile: Types::Unit
|
3041
3868
|
attr_accessor override_domain_unit_owners: Types::OverrideDomainUnitOwnersPolicyGrantDetail
|
3042
3869
|
attr_accessor override_project_owners: Types::OverrideProjectOwnersPolicyGrantDetail
|
@@ -3051,6 +3878,8 @@ module Aws::DataZone
|
|
3051
3878
|
end
|
3052
3879
|
class CreateEnvironment < PolicyGrantDetail
|
3053
3880
|
end
|
3881
|
+
class CreateEnvironmentFromBlueprint < PolicyGrantDetail
|
3882
|
+
end
|
3054
3883
|
class CreateEnvironmentProfile < PolicyGrantDetail
|
3055
3884
|
end
|
3056
3885
|
class CreateFormType < PolicyGrantDetail
|
@@ -3059,6 +3888,8 @@ module Aws::DataZone
|
|
3059
3888
|
end
|
3060
3889
|
class CreateProject < PolicyGrantDetail
|
3061
3890
|
end
|
3891
|
+
class CreateProjectFromProjectProfile < PolicyGrantDetail
|
3892
|
+
end
|
3062
3893
|
class DelegateCreateEnvironmentProfile < PolicyGrantDetail
|
3063
3894
|
end
|
3064
3895
|
class OverrideDomainUnitOwners < PolicyGrantDetail
|
@@ -3104,7 +3935,10 @@ module Aws::DataZone
|
|
3104
3935
|
SENSITIVE: [:event]
|
3105
3936
|
end
|
3106
3937
|
|
3107
|
-
class PostLineageEventOutput
|
3938
|
+
class PostLineageEventOutput
|
3939
|
+
attr_accessor domain_id: ::String
|
3940
|
+
attr_accessor id: ::String
|
3941
|
+
SENSITIVE: []
|
3108
3942
|
end
|
3109
3943
|
|
3110
3944
|
class PostTimeSeriesDataPointsInput
|
@@ -3159,6 +3993,19 @@ module Aws::DataZone
|
|
3159
3993
|
SENSITIVE: []
|
3160
3994
|
end
|
3161
3995
|
|
3996
|
+
class ProjectProfileSummary
|
3997
|
+
attr_accessor created_at: ::Time
|
3998
|
+
attr_accessor created_by: ::String
|
3999
|
+
attr_accessor description: ::String
|
4000
|
+
attr_accessor domain_id: ::String
|
4001
|
+
attr_accessor domain_unit_id: ::String
|
4002
|
+
attr_accessor id: ::String
|
4003
|
+
attr_accessor last_updated_at: ::Time
|
4004
|
+
attr_accessor name: ::String
|
4005
|
+
attr_accessor status: ("ENABLED" | "DISABLED")
|
4006
|
+
SENSITIVE: [:description, :name]
|
4007
|
+
end
|
4008
|
+
|
3162
4009
|
class ProjectSummary
|
3163
4010
|
attr_accessor created_at: ::Time
|
3164
4011
|
attr_accessor created_by: ::String
|
@@ -3173,6 +4020,12 @@ module Aws::DataZone
|
|
3173
4020
|
SENSITIVE: [:description, :name]
|
3174
4021
|
end
|
3175
4022
|
|
4023
|
+
class ProjectsForRule
|
4024
|
+
attr_accessor selection_mode: ("ALL" | "SPECIFIC")
|
4025
|
+
attr_accessor specific_projects: ::Array[::String]
|
4026
|
+
SENSITIVE: []
|
4027
|
+
end
|
4028
|
+
|
3176
4029
|
class ProvisioningConfiguration
|
3177
4030
|
attr_accessor lake_formation_configuration: Types::LakeFormationConfiguration
|
3178
4031
|
attr_accessor unknown: untyped
|
@@ -3199,6 +4052,7 @@ module Aws::DataZone
|
|
3199
4052
|
attr_accessor domain_identifier: ::String
|
3200
4053
|
attr_accessor enabled_regions: ::Array[::String]
|
3201
4054
|
attr_accessor environment_blueprint_identifier: ::String
|
4055
|
+
attr_accessor environment_role_permission_boundary: ::String
|
3202
4056
|
attr_accessor manage_access_role_arn: ::String
|
3203
4057
|
attr_accessor provisioning_configurations: ::Array[Types::ProvisioningConfiguration]
|
3204
4058
|
attr_accessor provisioning_role_arn: ::String
|
@@ -3211,6 +4065,7 @@ module Aws::DataZone
|
|
3211
4065
|
attr_accessor domain_id: ::String
|
3212
4066
|
attr_accessor enabled_regions: ::Array[::String]
|
3213
4067
|
attr_accessor environment_blueprint_id: ::String
|
4068
|
+
attr_accessor environment_role_permission_boundary: ::String
|
3214
4069
|
attr_accessor manage_access_role_arn: ::String
|
3215
4070
|
attr_accessor provisioning_configurations: ::Array[Types::ProvisioningConfiguration]
|
3216
4071
|
attr_accessor provisioning_role_arn: ::String
|
@@ -3234,6 +4089,66 @@ module Aws::DataZone
|
|
3234
4089
|
SENSITIVE: []
|
3235
4090
|
end
|
3236
4091
|
|
4092
|
+
class RedshiftCredentials
|
4093
|
+
attr_accessor secret_arn: ::String
|
4094
|
+
attr_accessor username_password: Types::UsernamePassword
|
4095
|
+
attr_accessor unknown: untyped
|
4096
|
+
SENSITIVE: [:username_password]
|
4097
|
+
|
4098
|
+
class SecretArn < RedshiftCredentials
|
4099
|
+
end
|
4100
|
+
class UsernamePassword < RedshiftCredentials
|
4101
|
+
end
|
4102
|
+
class Unknown < RedshiftCredentials
|
4103
|
+
end
|
4104
|
+
end
|
4105
|
+
|
4106
|
+
class RedshiftLineageSyncConfigurationInput
|
4107
|
+
attr_accessor enabled: bool
|
4108
|
+
attr_accessor schedule: Types::LineageSyncSchedule
|
4109
|
+
SENSITIVE: []
|
4110
|
+
end
|
4111
|
+
|
4112
|
+
class RedshiftLineageSyncConfigurationOutput
|
4113
|
+
attr_accessor enabled: bool
|
4114
|
+
attr_accessor lineage_job_id: ::String
|
4115
|
+
attr_accessor schedule: Types::LineageSyncSchedule
|
4116
|
+
SENSITIVE: []
|
4117
|
+
end
|
4118
|
+
|
4119
|
+
class RedshiftPropertiesInput
|
4120
|
+
attr_accessor credentials: Types::RedshiftCredentials
|
4121
|
+
attr_accessor database_name: ::String
|
4122
|
+
attr_accessor host: ::String
|
4123
|
+
attr_accessor lineage_sync: Types::RedshiftLineageSyncConfigurationInput
|
4124
|
+
attr_accessor port: ::Integer
|
4125
|
+
attr_accessor storage: Types::RedshiftStorageProperties
|
4126
|
+
SENSITIVE: [:credentials]
|
4127
|
+
end
|
4128
|
+
|
4129
|
+
class RedshiftPropertiesOutput
|
4130
|
+
attr_accessor credentials: Types::RedshiftCredentials
|
4131
|
+
attr_accessor database_name: ::String
|
4132
|
+
attr_accessor is_provisioned_secret: bool
|
4133
|
+
attr_accessor jdbc_iam_url: ::String
|
4134
|
+
attr_accessor jdbc_url: ::String
|
4135
|
+
attr_accessor lineage_sync: Types::RedshiftLineageSyncConfigurationOutput
|
4136
|
+
attr_accessor redshift_temp_dir: ::String
|
4137
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "DELETING" | "DELETE_FAILED" | "READY" | "UPDATING" | "UPDATE_FAILED" | "DELETED")
|
4138
|
+
attr_accessor storage: Types::RedshiftStorageProperties
|
4139
|
+
SENSITIVE: [:credentials]
|
4140
|
+
end
|
4141
|
+
|
4142
|
+
class RedshiftPropertiesPatch
|
4143
|
+
attr_accessor credentials: Types::RedshiftCredentials
|
4144
|
+
attr_accessor database_name: ::String
|
4145
|
+
attr_accessor host: ::String
|
4146
|
+
attr_accessor lineage_sync: Types::RedshiftLineageSyncConfigurationInput
|
4147
|
+
attr_accessor port: ::Integer
|
4148
|
+
attr_accessor storage: Types::RedshiftStorageProperties
|
4149
|
+
SENSITIVE: [:credentials]
|
4150
|
+
end
|
4151
|
+
|
3237
4152
|
class RedshiftRunConfigurationInput
|
3238
4153
|
attr_accessor data_access_role: ::String
|
3239
4154
|
attr_accessor redshift_credential_configuration: Types::RedshiftCredentialConfiguration
|
@@ -3276,6 +4191,34 @@ module Aws::DataZone
|
|
3276
4191
|
end
|
3277
4192
|
end
|
3278
4193
|
|
4194
|
+
class RedshiftStorageProperties
|
4195
|
+
attr_accessor cluster_name: ::String
|
4196
|
+
attr_accessor workgroup_name: ::String
|
4197
|
+
attr_accessor unknown: untyped
|
4198
|
+
SENSITIVE: []
|
4199
|
+
|
4200
|
+
class ClusterName < RedshiftStorageProperties
|
4201
|
+
end
|
4202
|
+
class WorkgroupName < RedshiftStorageProperties
|
4203
|
+
end
|
4204
|
+
class Unknown < RedshiftStorageProperties
|
4205
|
+
end
|
4206
|
+
end
|
4207
|
+
|
4208
|
+
class Region
|
4209
|
+
attr_accessor region_name: ::String
|
4210
|
+
attr_accessor region_name_path: ::String
|
4211
|
+
attr_accessor unknown: untyped
|
4212
|
+
SENSITIVE: []
|
4213
|
+
|
4214
|
+
class RegionName < Region
|
4215
|
+
end
|
4216
|
+
class RegionNamePath < Region
|
4217
|
+
end
|
4218
|
+
class Unknown < Region
|
4219
|
+
end
|
4220
|
+
end
|
4221
|
+
|
3279
4222
|
class RejectChoice
|
3280
4223
|
attr_accessor prediction_choices: ::Array[::Integer]
|
3281
4224
|
attr_accessor prediction_target: ::String
|
@@ -3317,7 +4260,9 @@ module Aws::DataZone
|
|
3317
4260
|
attr_accessor created_by: ::String
|
3318
4261
|
attr_accessor decision_comment: ::String
|
3319
4262
|
attr_accessor domain_id: ::String
|
4263
|
+
attr_accessor existing_subscription_id: ::String
|
3320
4264
|
attr_accessor id: ::String
|
4265
|
+
attr_accessor metadata_forms: ::Array[Types::FormOutput]
|
3321
4266
|
attr_accessor request_reason: ::String
|
3322
4267
|
attr_accessor reviewer_id: ::String
|
3323
4268
|
attr_accessor status: ("PENDING" | "ACCEPTED" | "REJECTED")
|
@@ -3352,7 +4297,7 @@ module Aws::DataZone
|
|
3352
4297
|
attr_accessor domain_identifier: ::String
|
3353
4298
|
attr_accessor entity_identifier: ::String
|
3354
4299
|
attr_accessor entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE")
|
3355
|
-
attr_accessor policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT")
|
4300
|
+
attr_accessor policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT" | "CREATE_ENVIRONMENT_FROM_BLUEPRINT" | "CREATE_PROJECT_FROM_PROJECT_PROFILE")
|
3356
4301
|
attr_accessor principal: Types::PolicyGrantPrincipal
|
3357
4302
|
SENSITIVE: []
|
3358
4303
|
end
|
@@ -3462,6 +4407,49 @@ module Aws::DataZone
|
|
3462
4407
|
end
|
3463
4408
|
end
|
3464
4409
|
|
4410
|
+
class RuleDetail
|
4411
|
+
attr_accessor metadata_form_enforcement_detail: Types::MetadataFormEnforcementDetail
|
4412
|
+
attr_accessor unknown: untyped
|
4413
|
+
SENSITIVE: []
|
4414
|
+
|
4415
|
+
class MetadataFormEnforcementDetail < RuleDetail
|
4416
|
+
end
|
4417
|
+
class Unknown < RuleDetail
|
4418
|
+
end
|
4419
|
+
end
|
4420
|
+
|
4421
|
+
class RuleScope
|
4422
|
+
attr_accessor asset_type: Types::AssetTypesForRule
|
4423
|
+
attr_accessor data_product: bool
|
4424
|
+
attr_accessor project: Types::ProjectsForRule
|
4425
|
+
SENSITIVE: []
|
4426
|
+
end
|
4427
|
+
|
4428
|
+
class RuleSummary
|
4429
|
+
attr_accessor action: ("CREATE_SUBSCRIPTION_REQUEST")
|
4430
|
+
attr_accessor identifier: ::String
|
4431
|
+
attr_accessor last_updated_by: ::String
|
4432
|
+
attr_accessor name: ::String
|
4433
|
+
attr_accessor revision: ::String
|
4434
|
+
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT")
|
4435
|
+
attr_accessor scope: Types::RuleScope
|
4436
|
+
attr_accessor target: Types::RuleTarget
|
4437
|
+
attr_accessor target_type: ("DOMAIN_UNIT")
|
4438
|
+
attr_accessor updated_at: ::Time
|
4439
|
+
SENSITIVE: [:name]
|
4440
|
+
end
|
4441
|
+
|
4442
|
+
class RuleTarget
|
4443
|
+
attr_accessor domain_unit_target: Types::DomainUnitTarget
|
4444
|
+
attr_accessor unknown: untyped
|
4445
|
+
SENSITIVE: []
|
4446
|
+
|
4447
|
+
class DomainUnitTarget < RuleTarget
|
4448
|
+
end
|
4449
|
+
class Unknown < RuleTarget
|
4450
|
+
end
|
4451
|
+
end
|
4452
|
+
|
3465
4453
|
class RunStatisticsForAssets
|
3466
4454
|
attr_accessor added: ::Integer
|
3467
4455
|
attr_accessor failed: ::Integer
|
@@ -3471,6 +4459,18 @@ module Aws::DataZone
|
|
3471
4459
|
SENSITIVE: []
|
3472
4460
|
end
|
3473
4461
|
|
4462
|
+
class SageMakerRunConfigurationInput
|
4463
|
+
attr_accessor tracking_assets: ::Hash[::String, ::Array[::String]]
|
4464
|
+
SENSITIVE: []
|
4465
|
+
end
|
4466
|
+
|
4467
|
+
class SageMakerRunConfigurationOutput
|
4468
|
+
attr_accessor account_id: ::String
|
4469
|
+
attr_accessor region: ::String
|
4470
|
+
attr_accessor tracking_assets: ::Hash[::String, ::Array[::String]]
|
4471
|
+
SENSITIVE: []
|
4472
|
+
end
|
4473
|
+
|
3474
4474
|
class ScheduleConfiguration
|
3475
4475
|
attr_accessor schedule: ::String
|
3476
4476
|
attr_accessor timezone: ("UTC" | "AFRICA_JOHANNESBURG" | "AMERICA_MONTREAL" | "AMERICA_SAO_PAULO" | "ASIA_BAHRAIN" | "ASIA_BANGKOK" | "ASIA_CALCUTTA" | "ASIA_DUBAI" | "ASIA_HONG_KONG" | "ASIA_JAKARTA" | "ASIA_KUALA_LUMPUR" | "ASIA_SEOUL" | "ASIA_SHANGHAI" | "ASIA_SINGAPORE" | "ASIA_TAIPEI" | "ASIA_TOKYO" | "AUSTRALIA_MELBOURNE" | "AUSTRALIA_SYDNEY" | "CANADA_CENTRAL" | "CET" | "CST6CDT" | "ETC_GMT" | "ETC_GMT0" | "ETC_GMT_ADD_0" | "ETC_GMT_ADD_1" | "ETC_GMT_ADD_10" | "ETC_GMT_ADD_11" | "ETC_GMT_ADD_12" | "ETC_GMT_ADD_2" | "ETC_GMT_ADD_3" | "ETC_GMT_ADD_4" | "ETC_GMT_ADD_5" | "ETC_GMT_ADD_6" | "ETC_GMT_ADD_7" | "ETC_GMT_ADD_8" | "ETC_GMT_ADD_9" | "ETC_GMT_NEG_0" | "ETC_GMT_NEG_1" | "ETC_GMT_NEG_10" | "ETC_GMT_NEG_11" | "ETC_GMT_NEG_12" | "ETC_GMT_NEG_13" | "ETC_GMT_NEG_14" | "ETC_GMT_NEG_2" | "ETC_GMT_NEG_3" | "ETC_GMT_NEG_4" | "ETC_GMT_NEG_5" | "ETC_GMT_NEG_6" | "ETC_GMT_NEG_7" | "ETC_GMT_NEG_8" | "ETC_GMT_NEG_9" | "EUROPE_DUBLIN" | "EUROPE_LONDON" | "EUROPE_PARIS" | "EUROPE_STOCKHOLM" | "EUROPE_ZURICH" | "ISRAEL" | "MEXICO_GENERAL" | "MST7MDT" | "PACIFIC_AUCKLAND" | "US_CENTRAL" | "US_EASTERN" | "US_MOUNTAIN" | "US_PACIFIC")
|
@@ -3662,6 +4662,72 @@ module Aws::DataZone
|
|
3662
4662
|
SENSITIVE: []
|
3663
4663
|
end
|
3664
4664
|
|
4665
|
+
class SparkEmrPropertiesInput
|
4666
|
+
attr_accessor compute_arn: ::String
|
4667
|
+
attr_accessor instance_profile_arn: ::String
|
4668
|
+
attr_accessor java_virtual_env: ::String
|
4669
|
+
attr_accessor log_uri: ::String
|
4670
|
+
attr_accessor python_virtual_env: ::String
|
4671
|
+
attr_accessor runtime_role: ::String
|
4672
|
+
attr_accessor trusted_certificates_s3_uri: ::String
|
4673
|
+
SENSITIVE: []
|
4674
|
+
end
|
4675
|
+
|
4676
|
+
class SparkEmrPropertiesOutput
|
4677
|
+
attr_accessor compute_arn: ::String
|
4678
|
+
attr_accessor credentials: Types::UsernamePassword
|
4679
|
+
attr_accessor credentials_expiration: ::Time
|
4680
|
+
attr_accessor governance_type: ("AWS_MANAGED" | "USER_MANAGED")
|
4681
|
+
attr_accessor instance_profile_arn: ::String
|
4682
|
+
attr_accessor java_virtual_env: ::String
|
4683
|
+
attr_accessor livy_endpoint: ::String
|
4684
|
+
attr_accessor log_uri: ::String
|
4685
|
+
attr_accessor python_virtual_env: ::String
|
4686
|
+
attr_accessor runtime_role: ::String
|
4687
|
+
attr_accessor trusted_certificates_s3_uri: ::String
|
4688
|
+
SENSITIVE: [:credentials]
|
4689
|
+
end
|
4690
|
+
|
4691
|
+
class SparkEmrPropertiesPatch
|
4692
|
+
attr_accessor compute_arn: ::String
|
4693
|
+
attr_accessor instance_profile_arn: ::String
|
4694
|
+
attr_accessor java_virtual_env: ::String
|
4695
|
+
attr_accessor log_uri: ::String
|
4696
|
+
attr_accessor python_virtual_env: ::String
|
4697
|
+
attr_accessor runtime_role: ::String
|
4698
|
+
attr_accessor trusted_certificates_s3_uri: ::String
|
4699
|
+
SENSITIVE: []
|
4700
|
+
end
|
4701
|
+
|
4702
|
+
class SparkGlueArgs
|
4703
|
+
attr_accessor connection: ::String
|
4704
|
+
SENSITIVE: []
|
4705
|
+
end
|
4706
|
+
|
4707
|
+
class SparkGluePropertiesInput
|
4708
|
+
attr_accessor additional_args: Types::SparkGlueArgs
|
4709
|
+
attr_accessor glue_connection_name: ::String
|
4710
|
+
attr_accessor glue_version: ::String
|
4711
|
+
attr_accessor idle_timeout: ::Integer
|
4712
|
+
attr_accessor java_virtual_env: ::String
|
4713
|
+
attr_accessor number_of_workers: ::Integer
|
4714
|
+
attr_accessor python_virtual_env: ::String
|
4715
|
+
attr_accessor worker_type: ::String
|
4716
|
+
SENSITIVE: []
|
4717
|
+
end
|
4718
|
+
|
4719
|
+
class SparkGluePropertiesOutput
|
4720
|
+
attr_accessor additional_args: Types::SparkGlueArgs
|
4721
|
+
attr_accessor glue_connection_name: ::String
|
4722
|
+
attr_accessor glue_version: ::String
|
4723
|
+
attr_accessor idle_timeout: ::Integer
|
4724
|
+
attr_accessor java_virtual_env: ::String
|
4725
|
+
attr_accessor number_of_workers: ::Integer
|
4726
|
+
attr_accessor python_virtual_env: ::String
|
4727
|
+
attr_accessor worker_type: ::String
|
4728
|
+
SENSITIVE: []
|
4729
|
+
end
|
4730
|
+
|
3665
4731
|
class SsoUserProfileDetails
|
3666
4732
|
attr_accessor first_name: ::String
|
3667
4733
|
attr_accessor last_name: ::String
|
@@ -3828,7 +4894,9 @@ module Aws::DataZone
|
|
3828
4894
|
attr_accessor created_by: ::String
|
3829
4895
|
attr_accessor decision_comment: ::String
|
3830
4896
|
attr_accessor domain_id: ::String
|
4897
|
+
attr_accessor existing_subscription_id: ::String
|
3831
4898
|
attr_accessor id: ::String
|
4899
|
+
attr_accessor metadata_forms_summary: ::Array[Types::MetadataFormSummary]
|
3832
4900
|
attr_accessor request_reason: ::String
|
3833
4901
|
attr_accessor reviewer_id: ::String
|
3834
4902
|
attr_accessor status: ("PENDING" | "ACCEPTED" | "REJECTED")
|
@@ -3977,6 +5045,29 @@ module Aws::DataZone
|
|
3977
5045
|
SENSITIVE: [:description, :name]
|
3978
5046
|
end
|
3979
5047
|
|
5048
|
+
class UpdateConnectionInput
|
5049
|
+
attr_accessor aws_location: Types::AwsLocation
|
5050
|
+
attr_accessor description: ::String
|
5051
|
+
attr_accessor domain_identifier: ::String
|
5052
|
+
attr_accessor identifier: ::String
|
5053
|
+
attr_accessor props: Types::ConnectionPropertiesPatch
|
5054
|
+
SENSITIVE: [:description]
|
5055
|
+
end
|
5056
|
+
|
5057
|
+
class UpdateConnectionOutput
|
5058
|
+
attr_accessor connection_id: ::String
|
5059
|
+
attr_accessor description: ::String
|
5060
|
+
attr_accessor domain_id: ::String
|
5061
|
+
attr_accessor domain_unit_id: ::String
|
5062
|
+
attr_accessor environment_id: ::String
|
5063
|
+
attr_accessor name: ::String
|
5064
|
+
attr_accessor physical_endpoints: ::Array[Types::PhysicalEndpoint]
|
5065
|
+
attr_accessor project_id: ::String
|
5066
|
+
attr_accessor props: Types::ConnectionPropertiesOutput
|
5067
|
+
attr_accessor type: ("ATHENA" | "BIGQUERY" | "DATABRICKS" | "DOCUMENTDB" | "DYNAMODB" | "HYPERPOD" | "IAM" | "MYSQL" | "OPENSEARCH" | "ORACLE" | "POSTGRESQL" | "REDSHIFT" | "SAPHANA" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "VERTICA" | "WORKFLOWS_MWAA")
|
5068
|
+
SENSITIVE: [:description]
|
5069
|
+
end
|
5070
|
+
|
3980
5071
|
class UpdateDataSourceInput
|
3981
5072
|
attr_accessor asset_forms_input: ::Array[Types::FormInput]
|
3982
5073
|
attr_accessor configuration: Types::DataSourceConfigurationInput
|
@@ -3995,6 +5086,7 @@ module Aws::DataZone
|
|
3995
5086
|
class UpdateDataSourceOutput
|
3996
5087
|
attr_accessor asset_forms_output: ::Array[Types::FormOutput]
|
3997
5088
|
attr_accessor configuration: Types::DataSourceConfigurationOutput
|
5089
|
+
attr_accessor connection_id: ::String
|
3998
5090
|
attr_accessor created_at: ::Time
|
3999
5091
|
attr_accessor description: ::String
|
4000
5092
|
attr_accessor domain_id: ::String
|
@@ -4024,6 +5116,7 @@ module Aws::DataZone
|
|
4024
5116
|
attr_accessor domain_execution_role: ::String
|
4025
5117
|
attr_accessor identifier: ::String
|
4026
5118
|
attr_accessor name: ::String
|
5119
|
+
attr_accessor service_role: ::String
|
4027
5120
|
attr_accessor single_sign_on: Types::SingleSignOn
|
4028
5121
|
SENSITIVE: []
|
4029
5122
|
end
|
@@ -4035,6 +5128,7 @@ module Aws::DataZone
|
|
4035
5128
|
attr_accessor last_updated_at: ::Time
|
4036
5129
|
attr_accessor name: ::String
|
4037
5130
|
attr_accessor root_domain_unit_id: ::String
|
5131
|
+
attr_accessor service_role: ::String
|
4038
5132
|
attr_accessor single_sign_on: Types::SingleSignOn
|
4039
5133
|
SENSITIVE: []
|
4040
5134
|
end
|
@@ -4204,6 +5298,7 @@ module Aws::DataZone
|
|
4204
5298
|
class UpdateProjectInput
|
4205
5299
|
attr_accessor description: ::String
|
4206
5300
|
attr_accessor domain_identifier: ::String
|
5301
|
+
attr_accessor environment_deployment_details: Types::EnvironmentDeploymentDetails
|
4207
5302
|
attr_accessor glossary_terms: ::Array[::String]
|
4208
5303
|
attr_accessor identifier: ::String
|
4209
5304
|
attr_accessor name: ::String
|
@@ -4216,12 +5311,68 @@ module Aws::DataZone
|
|
4216
5311
|
attr_accessor description: ::String
|
4217
5312
|
attr_accessor domain_id: ::String
|
4218
5313
|
attr_accessor domain_unit_id: ::String
|
5314
|
+
attr_accessor environment_deployment_details: Types::EnvironmentDeploymentDetails
|
4219
5315
|
attr_accessor failure_reasons: ::Array[Types::ProjectDeletionError]
|
4220
5316
|
attr_accessor glossary_terms: ::Array[::String]
|
4221
5317
|
attr_accessor id: ::String
|
4222
5318
|
attr_accessor last_updated_at: ::Time
|
4223
5319
|
attr_accessor name: ::String
|
5320
|
+
attr_accessor project_profile_id: ::String
|
4224
5321
|
attr_accessor project_status: ("ACTIVE" | "DELETING" | "DELETE_FAILED")
|
5322
|
+
attr_accessor user_parameters: ::Array[Types::EnvironmentConfigurationUserParameter]
|
5323
|
+
SENSITIVE: [:description, :name]
|
5324
|
+
end
|
5325
|
+
|
5326
|
+
class UpdateProjectProfileInput
|
5327
|
+
attr_accessor description: ::String
|
5328
|
+
attr_accessor domain_identifier: ::String
|
5329
|
+
attr_accessor domain_unit_identifier: ::String
|
5330
|
+
attr_accessor environment_configurations: ::Array[Types::EnvironmentConfiguration]
|
5331
|
+
attr_accessor identifier: ::String
|
5332
|
+
attr_accessor name: ::String
|
5333
|
+
attr_accessor status: ("ENABLED" | "DISABLED")
|
5334
|
+
SENSITIVE: [:description, :name]
|
5335
|
+
end
|
5336
|
+
|
5337
|
+
class UpdateProjectProfileOutput
|
5338
|
+
attr_accessor created_at: ::Time
|
5339
|
+
attr_accessor created_by: ::String
|
5340
|
+
attr_accessor description: ::String
|
5341
|
+
attr_accessor domain_id: ::String
|
5342
|
+
attr_accessor domain_unit_id: ::String
|
5343
|
+
attr_accessor environment_configurations: ::Array[Types::EnvironmentConfiguration]
|
5344
|
+
attr_accessor id: ::String
|
5345
|
+
attr_accessor last_updated_at: ::Time
|
5346
|
+
attr_accessor name: ::String
|
5347
|
+
attr_accessor status: ("ENABLED" | "DISABLED")
|
5348
|
+
SENSITIVE: [:description, :name]
|
5349
|
+
end
|
5350
|
+
|
5351
|
+
class UpdateRuleInput
|
5352
|
+
attr_accessor description: ::String
|
5353
|
+
attr_accessor detail: Types::RuleDetail
|
5354
|
+
attr_accessor domain_identifier: ::String
|
5355
|
+
attr_accessor identifier: ::String
|
5356
|
+
attr_accessor include_child_domain_units: bool
|
5357
|
+
attr_accessor name: ::String
|
5358
|
+
attr_accessor scope: Types::RuleScope
|
5359
|
+
SENSITIVE: [:description, :name]
|
5360
|
+
end
|
5361
|
+
|
5362
|
+
class UpdateRuleOutput
|
5363
|
+
attr_accessor action: ("CREATE_SUBSCRIPTION_REQUEST")
|
5364
|
+
attr_accessor created_at: ::Time
|
5365
|
+
attr_accessor created_by: ::String
|
5366
|
+
attr_accessor description: ::String
|
5367
|
+
attr_accessor detail: Types::RuleDetail
|
5368
|
+
attr_accessor identifier: ::String
|
5369
|
+
attr_accessor last_updated_by: ::String
|
5370
|
+
attr_accessor name: ::String
|
5371
|
+
attr_accessor revision: ::String
|
5372
|
+
attr_accessor rule_type: ("METADATA_FORM_ENFORCEMENT")
|
5373
|
+
attr_accessor scope: Types::RuleScope
|
5374
|
+
attr_accessor target: Types::RuleTarget
|
5375
|
+
attr_accessor updated_at: ::Time
|
4225
5376
|
SENSITIVE: [:description, :name]
|
4226
5377
|
end
|
4227
5378
|
|
@@ -4262,7 +5413,9 @@ module Aws::DataZone
|
|
4262
5413
|
attr_accessor created_by: ::String
|
4263
5414
|
attr_accessor decision_comment: ::String
|
4264
5415
|
attr_accessor domain_id: ::String
|
5416
|
+
attr_accessor existing_subscription_id: ::String
|
4265
5417
|
attr_accessor id: ::String
|
5418
|
+
attr_accessor metadata_forms: ::Array[Types::FormOutput]
|
4266
5419
|
attr_accessor request_reason: ::String
|
4267
5420
|
attr_accessor reviewer_id: ::String
|
4268
5421
|
attr_accessor status: ("PENDING" | "ACCEPTED" | "REJECTED")
|
@@ -4364,6 +5517,12 @@ module Aws::DataZone
|
|
4364
5517
|
SENSITIVE: []
|
4365
5518
|
end
|
4366
5519
|
|
5520
|
+
class UsernamePassword
|
5521
|
+
attr_accessor password: ::String
|
5522
|
+
attr_accessor username: ::String
|
5523
|
+
SENSITIVE: [:password]
|
5524
|
+
end
|
5525
|
+
|
4367
5526
|
class ValidationException
|
4368
5527
|
attr_accessor message: ::String
|
4369
5528
|
SENSITIVE: []
|