aws-sdk-datazone 1.28.0 → 1.29.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +1743 -23
- data/lib/aws-sdk-datazone/client_api.rb +1242 -19
- data/lib/aws-sdk-datazone/types.rb +3652 -272
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +574 -10
- data/sig/types.rbs +967 -10
- metadata +2 -2
@@ -608,7 +608,7 @@ module Aws::DataZone
|
|
608
608
|
:owning_project_id,
|
609
609
|
:type_identifier,
|
610
610
|
:type_revision)
|
611
|
-
SENSITIVE = [:description, :
|
611
|
+
SENSITIVE = [:description, :name]
|
612
612
|
include Aws::Structure
|
613
613
|
end
|
614
614
|
|
@@ -1012,6 +1012,178 @@ module Aws::DataZone
|
|
1012
1012
|
#
|
1013
1013
|
class AssociateEnvironmentRoleOutput < Aws::EmptyStructure; end
|
1014
1014
|
|
1015
|
+
# The Amazon Athena properties of a connection.
|
1016
|
+
#
|
1017
|
+
# @!attribute [rw] workgroup_name
|
1018
|
+
# The Amazon Athena workgroup name of a connection.
|
1019
|
+
# @return [String]
|
1020
|
+
#
|
1021
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AthenaPropertiesInput AWS API Documentation
|
1022
|
+
#
|
1023
|
+
class AthenaPropertiesInput < Struct.new(
|
1024
|
+
:workgroup_name)
|
1025
|
+
SENSITIVE = []
|
1026
|
+
include Aws::Structure
|
1027
|
+
end
|
1028
|
+
|
1029
|
+
# The Amazon Athena properties of a connection.
|
1030
|
+
#
|
1031
|
+
# @!attribute [rw] workgroup_name
|
1032
|
+
# The Amazon Athena workgroup name of a connection.
|
1033
|
+
# @return [String]
|
1034
|
+
#
|
1035
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AthenaPropertiesOutput AWS API Documentation
|
1036
|
+
#
|
1037
|
+
class AthenaPropertiesOutput < Struct.new(
|
1038
|
+
:workgroup_name)
|
1039
|
+
SENSITIVE = []
|
1040
|
+
include Aws::Structure
|
1041
|
+
end
|
1042
|
+
|
1043
|
+
# The Amazon Athena properties patch of a connection.
|
1044
|
+
#
|
1045
|
+
# @!attribute [rw] workgroup_name
|
1046
|
+
# The Amazon Athena workgroup name of a connection.
|
1047
|
+
# @return [String]
|
1048
|
+
#
|
1049
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AthenaPropertiesPatch AWS API Documentation
|
1050
|
+
#
|
1051
|
+
class AthenaPropertiesPatch < Struct.new(
|
1052
|
+
:workgroup_name)
|
1053
|
+
SENSITIVE = []
|
1054
|
+
include Aws::Structure
|
1055
|
+
end
|
1056
|
+
|
1057
|
+
# The authentication configuration of a connection.
|
1058
|
+
#
|
1059
|
+
# @!attribute [rw] authentication_type
|
1060
|
+
# The authentication type of a connection.
|
1061
|
+
# @return [String]
|
1062
|
+
#
|
1063
|
+
# @!attribute [rw] o_auth_2_properties
|
1064
|
+
# The oAuth2 properties of a connection.
|
1065
|
+
# @return [Types::OAuth2Properties]
|
1066
|
+
#
|
1067
|
+
# @!attribute [rw] secret_arn
|
1068
|
+
# The secret ARN of a connection.
|
1069
|
+
# @return [String]
|
1070
|
+
#
|
1071
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AuthenticationConfiguration AWS API Documentation
|
1072
|
+
#
|
1073
|
+
class AuthenticationConfiguration < Struct.new(
|
1074
|
+
:authentication_type,
|
1075
|
+
:o_auth_2_properties,
|
1076
|
+
:secret_arn)
|
1077
|
+
SENSITIVE = []
|
1078
|
+
include Aws::Structure
|
1079
|
+
end
|
1080
|
+
|
1081
|
+
# The authentication configuration of a connection.
|
1082
|
+
#
|
1083
|
+
# @!attribute [rw] authentication_type
|
1084
|
+
# The authentication type of a connection.
|
1085
|
+
# @return [String]
|
1086
|
+
#
|
1087
|
+
# @!attribute [rw] basic_authentication_credentials
|
1088
|
+
# The basic authentication credentials of a connection.
|
1089
|
+
# @return [Types::BasicAuthenticationCredentials]
|
1090
|
+
#
|
1091
|
+
# @!attribute [rw] custom_authentication_credentials
|
1092
|
+
# The custom authentication credentials of a connection.
|
1093
|
+
# @return [Hash<String,String>]
|
1094
|
+
#
|
1095
|
+
# @!attribute [rw] kms_key_arn
|
1096
|
+
# The KMS key ARN of a connection.
|
1097
|
+
# @return [String]
|
1098
|
+
#
|
1099
|
+
# @!attribute [rw] o_auth_2_properties
|
1100
|
+
# The oAuth2 properties of a connection.
|
1101
|
+
# @return [Types::OAuth2Properties]
|
1102
|
+
#
|
1103
|
+
# @!attribute [rw] secret_arn
|
1104
|
+
# The secret ARN of a connection.
|
1105
|
+
# @return [String]
|
1106
|
+
#
|
1107
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AuthenticationConfigurationInput AWS API Documentation
|
1108
|
+
#
|
1109
|
+
class AuthenticationConfigurationInput < Struct.new(
|
1110
|
+
:authentication_type,
|
1111
|
+
:basic_authentication_credentials,
|
1112
|
+
:custom_authentication_credentials,
|
1113
|
+
:kms_key_arn,
|
1114
|
+
:o_auth_2_properties,
|
1115
|
+
:secret_arn)
|
1116
|
+
SENSITIVE = [:basic_authentication_credentials, :custom_authentication_credentials]
|
1117
|
+
include Aws::Structure
|
1118
|
+
end
|
1119
|
+
|
1120
|
+
# The authentication configuration patch of a connection.
|
1121
|
+
#
|
1122
|
+
# @!attribute [rw] basic_authentication_credentials
|
1123
|
+
# The basic authentication credentials of a connection.
|
1124
|
+
# @return [Types::BasicAuthenticationCredentials]
|
1125
|
+
#
|
1126
|
+
# @!attribute [rw] secret_arn
|
1127
|
+
# The secret ARN of a connection.
|
1128
|
+
# @return [String]
|
1129
|
+
#
|
1130
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AuthenticationConfigurationPatch AWS API Documentation
|
1131
|
+
#
|
1132
|
+
class AuthenticationConfigurationPatch < Struct.new(
|
1133
|
+
:basic_authentication_credentials,
|
1134
|
+
:secret_arn)
|
1135
|
+
SENSITIVE = [:basic_authentication_credentials]
|
1136
|
+
include Aws::Structure
|
1137
|
+
end
|
1138
|
+
|
1139
|
+
# The authorization code properties of a connection.
|
1140
|
+
#
|
1141
|
+
# @!attribute [rw] authorization_code
|
1142
|
+
# The authorization code of a connection.
|
1143
|
+
# @return [String]
|
1144
|
+
#
|
1145
|
+
# @!attribute [rw] redirect_uri
|
1146
|
+
# The redirect URI of a connection.
|
1147
|
+
# @return [String]
|
1148
|
+
#
|
1149
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AuthorizationCodeProperties AWS API Documentation
|
1150
|
+
#
|
1151
|
+
class AuthorizationCodeProperties < Struct.new(
|
1152
|
+
:authorization_code,
|
1153
|
+
:redirect_uri)
|
1154
|
+
SENSITIVE = []
|
1155
|
+
include Aws::Structure
|
1156
|
+
end
|
1157
|
+
|
1158
|
+
# The account ID of a project.
|
1159
|
+
#
|
1160
|
+
# @note AwsAccount is a union - when making an API calls you must set exactly one of the members.
|
1161
|
+
#
|
1162
|
+
# @note AwsAccount is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AwsAccount corresponding to the set member.
|
1163
|
+
#
|
1164
|
+
# @!attribute [rw] aws_account_id
|
1165
|
+
# The account ID of a project.
|
1166
|
+
# @return [String]
|
1167
|
+
#
|
1168
|
+
# @!attribute [rw] aws_account_id_path
|
1169
|
+
# The account ID path of a project.
|
1170
|
+
# @return [String]
|
1171
|
+
#
|
1172
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AwsAccount AWS API Documentation
|
1173
|
+
#
|
1174
|
+
class AwsAccount < Struct.new(
|
1175
|
+
:aws_account_id,
|
1176
|
+
:aws_account_id_path,
|
1177
|
+
:unknown)
|
1178
|
+
SENSITIVE = []
|
1179
|
+
include Aws::Structure
|
1180
|
+
include Aws::Structure::Union
|
1181
|
+
|
1182
|
+
class AwsAccountId < AwsAccount; end
|
1183
|
+
class AwsAccountIdPath < AwsAccount; end
|
1184
|
+
class Unknown < AwsAccount; end
|
1185
|
+
end
|
1186
|
+
|
1015
1187
|
# The parameters of the console link specified as part of the
|
1016
1188
|
# environment action.
|
1017
1189
|
#
|
@@ -1028,6 +1200,54 @@ module Aws::DataZone
|
|
1028
1200
|
include Aws::Structure
|
1029
1201
|
end
|
1030
1202
|
|
1203
|
+
# The location of a project.
|
1204
|
+
#
|
1205
|
+
# @!attribute [rw] access_role
|
1206
|
+
# The access role of a connection.
|
1207
|
+
# @return [String]
|
1208
|
+
#
|
1209
|
+
# @!attribute [rw] aws_account_id
|
1210
|
+
# The account ID of a connection.
|
1211
|
+
# @return [String]
|
1212
|
+
#
|
1213
|
+
# @!attribute [rw] aws_region
|
1214
|
+
# The Region of a connection.
|
1215
|
+
# @return [String]
|
1216
|
+
#
|
1217
|
+
# @!attribute [rw] iam_connection_id
|
1218
|
+
# The IAM connection ID of a connection.
|
1219
|
+
# @return [String]
|
1220
|
+
#
|
1221
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AwsLocation AWS API Documentation
|
1222
|
+
#
|
1223
|
+
class AwsLocation < Struct.new(
|
1224
|
+
:access_role,
|
1225
|
+
:aws_account_id,
|
1226
|
+
:aws_region,
|
1227
|
+
:iam_connection_id)
|
1228
|
+
SENSITIVE = []
|
1229
|
+
include Aws::Structure
|
1230
|
+
end
|
1231
|
+
|
1232
|
+
# The basic authentication credentials of a connection.
|
1233
|
+
#
|
1234
|
+
# @!attribute [rw] password
|
1235
|
+
# The password for a connection.
|
1236
|
+
# @return [String]
|
1237
|
+
#
|
1238
|
+
# @!attribute [rw] user_name
|
1239
|
+
# The user name for the connecion.
|
1240
|
+
# @return [String]
|
1241
|
+
#
|
1242
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/BasicAuthenticationCredentials AWS API Documentation
|
1243
|
+
#
|
1244
|
+
class BasicAuthenticationCredentials < Struct.new(
|
1245
|
+
:password,
|
1246
|
+
:user_name)
|
1247
|
+
SENSITIVE = []
|
1248
|
+
include Aws::Structure
|
1249
|
+
end
|
1250
|
+
|
1031
1251
|
# The configuration of the business name generation.
|
1032
1252
|
#
|
1033
1253
|
# @!attribute [rw] enabled
|
@@ -1237,6 +1457,249 @@ module Aws::DataZone
|
|
1237
1457
|
include Aws::Structure
|
1238
1458
|
end
|
1239
1459
|
|
1460
|
+
# The credentials of a connection.
|
1461
|
+
#
|
1462
|
+
# @!attribute [rw] access_key_id
|
1463
|
+
# The access key ID of a connection.
|
1464
|
+
# @return [String]
|
1465
|
+
#
|
1466
|
+
# @!attribute [rw] expiration
|
1467
|
+
# The expiration of the connection credentials.
|
1468
|
+
# @return [Time]
|
1469
|
+
#
|
1470
|
+
# @!attribute [rw] secret_access_key
|
1471
|
+
# The secret access key of a connection.
|
1472
|
+
# @return [String]
|
1473
|
+
#
|
1474
|
+
# @!attribute [rw] session_token
|
1475
|
+
# The session token of a connection credentials.
|
1476
|
+
# @return [String]
|
1477
|
+
#
|
1478
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectionCredentials AWS API Documentation
|
1479
|
+
#
|
1480
|
+
class ConnectionCredentials < Struct.new(
|
1481
|
+
:access_key_id,
|
1482
|
+
:expiration,
|
1483
|
+
:secret_access_key,
|
1484
|
+
:session_token)
|
1485
|
+
SENSITIVE = []
|
1486
|
+
include Aws::Structure
|
1487
|
+
end
|
1488
|
+
|
1489
|
+
# The properties of a connection.
|
1490
|
+
#
|
1491
|
+
# @note ConnectionPropertiesInput is a union - when making an API calls you must set exactly one of the members.
|
1492
|
+
#
|
1493
|
+
# @!attribute [rw] athena_properties
|
1494
|
+
# The Amazon Athena properties of a connection.
|
1495
|
+
# @return [Types::AthenaPropertiesInput]
|
1496
|
+
#
|
1497
|
+
# @!attribute [rw] glue_properties
|
1498
|
+
# The Amazon Web Services Glue properties of a connection.
|
1499
|
+
# @return [Types::GluePropertiesInput]
|
1500
|
+
#
|
1501
|
+
# @!attribute [rw] hyper_pod_properties
|
1502
|
+
# The hyper pod properties of a connection.
|
1503
|
+
# @return [Types::HyperPodPropertiesInput]
|
1504
|
+
#
|
1505
|
+
# @!attribute [rw] iam_properties
|
1506
|
+
# The IAM properties of a connection.
|
1507
|
+
# @return [Types::IamPropertiesInput]
|
1508
|
+
#
|
1509
|
+
# @!attribute [rw] redshift_properties
|
1510
|
+
# The Amazon Redshift properties of a connection.
|
1511
|
+
# @return [Types::RedshiftPropertiesInput]
|
1512
|
+
#
|
1513
|
+
# @!attribute [rw] spark_emr_properties
|
1514
|
+
# The Spark EMR properties of a connection.
|
1515
|
+
# @return [Types::SparkEmrPropertiesInput]
|
1516
|
+
#
|
1517
|
+
# @!attribute [rw] spark_glue_properties
|
1518
|
+
# The Spark Amazon Web Services Glue properties of a connection.
|
1519
|
+
# @return [Types::SparkGluePropertiesInput]
|
1520
|
+
#
|
1521
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectionPropertiesInput AWS API Documentation
|
1522
|
+
#
|
1523
|
+
class ConnectionPropertiesInput < Struct.new(
|
1524
|
+
:athena_properties,
|
1525
|
+
:glue_properties,
|
1526
|
+
:hyper_pod_properties,
|
1527
|
+
:iam_properties,
|
1528
|
+
:redshift_properties,
|
1529
|
+
:spark_emr_properties,
|
1530
|
+
:spark_glue_properties,
|
1531
|
+
:unknown)
|
1532
|
+
SENSITIVE = []
|
1533
|
+
include Aws::Structure
|
1534
|
+
include Aws::Structure::Union
|
1535
|
+
|
1536
|
+
class AthenaProperties < ConnectionPropertiesInput; end
|
1537
|
+
class GlueProperties < ConnectionPropertiesInput; end
|
1538
|
+
class HyperPodProperties < ConnectionPropertiesInput; end
|
1539
|
+
class IamProperties < ConnectionPropertiesInput; end
|
1540
|
+
class RedshiftProperties < ConnectionPropertiesInput; end
|
1541
|
+
class SparkEmrProperties < ConnectionPropertiesInput; end
|
1542
|
+
class SparkGlueProperties < ConnectionPropertiesInput; end
|
1543
|
+
class Unknown < ConnectionPropertiesInput; end
|
1544
|
+
end
|
1545
|
+
|
1546
|
+
# The properties of a connection.
|
1547
|
+
#
|
1548
|
+
# @note ConnectionPropertiesOutput is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ConnectionPropertiesOutput corresponding to the set member.
|
1549
|
+
#
|
1550
|
+
# @!attribute [rw] athena_properties
|
1551
|
+
# The Amazon Athena properties of a connection.
|
1552
|
+
# @return [Types::AthenaPropertiesOutput]
|
1553
|
+
#
|
1554
|
+
# @!attribute [rw] glue_properties
|
1555
|
+
# The Amazon Web Services Glue properties of a connection.
|
1556
|
+
# @return [Types::GluePropertiesOutput]
|
1557
|
+
#
|
1558
|
+
# @!attribute [rw] hyper_pod_properties
|
1559
|
+
# The hyper pod properties of a connection.
|
1560
|
+
# @return [Types::HyperPodPropertiesOutput]
|
1561
|
+
#
|
1562
|
+
# @!attribute [rw] iam_properties
|
1563
|
+
# The IAM properties of a connection.
|
1564
|
+
# @return [Types::IamPropertiesOutput]
|
1565
|
+
#
|
1566
|
+
# @!attribute [rw] redshift_properties
|
1567
|
+
# The Amazon Redshift properties of a connection.
|
1568
|
+
# @return [Types::RedshiftPropertiesOutput]
|
1569
|
+
#
|
1570
|
+
# @!attribute [rw] spark_emr_properties
|
1571
|
+
# The Spark EMR properties of a connection.
|
1572
|
+
# @return [Types::SparkEmrPropertiesOutput]
|
1573
|
+
#
|
1574
|
+
# @!attribute [rw] spark_glue_properties
|
1575
|
+
# The Spark Amazon Web Services Glue properties of a connection.
|
1576
|
+
# @return [Types::SparkGluePropertiesOutput]
|
1577
|
+
#
|
1578
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectionPropertiesOutput AWS API Documentation
|
1579
|
+
#
|
1580
|
+
class ConnectionPropertiesOutput < Struct.new(
|
1581
|
+
:athena_properties,
|
1582
|
+
:glue_properties,
|
1583
|
+
:hyper_pod_properties,
|
1584
|
+
:iam_properties,
|
1585
|
+
:redshift_properties,
|
1586
|
+
:spark_emr_properties,
|
1587
|
+
:spark_glue_properties,
|
1588
|
+
:unknown)
|
1589
|
+
SENSITIVE = []
|
1590
|
+
include Aws::Structure
|
1591
|
+
include Aws::Structure::Union
|
1592
|
+
|
1593
|
+
class AthenaProperties < ConnectionPropertiesOutput; end
|
1594
|
+
class GlueProperties < ConnectionPropertiesOutput; end
|
1595
|
+
class HyperPodProperties < ConnectionPropertiesOutput; end
|
1596
|
+
class IamProperties < ConnectionPropertiesOutput; end
|
1597
|
+
class RedshiftProperties < ConnectionPropertiesOutput; end
|
1598
|
+
class SparkEmrProperties < ConnectionPropertiesOutput; end
|
1599
|
+
class SparkGlueProperties < ConnectionPropertiesOutput; end
|
1600
|
+
class Unknown < ConnectionPropertiesOutput; end
|
1601
|
+
end
|
1602
|
+
|
1603
|
+
# The connection properties patch.
|
1604
|
+
#
|
1605
|
+
# @note ConnectionPropertiesPatch is a union - when making an API calls you must set exactly one of the members.
|
1606
|
+
#
|
1607
|
+
# @!attribute [rw] athena_properties
|
1608
|
+
# The Amazon Athena properties of a connection properties patch.
|
1609
|
+
# @return [Types::AthenaPropertiesPatch]
|
1610
|
+
#
|
1611
|
+
# @!attribute [rw] glue_properties
|
1612
|
+
# The Amazon Web Services Glue properties of a connection properties
|
1613
|
+
# patch.
|
1614
|
+
# @return [Types::GluePropertiesPatch]
|
1615
|
+
#
|
1616
|
+
# @!attribute [rw] iam_properties
|
1617
|
+
# The IAM properties of a connection properties patch.
|
1618
|
+
# @return [Types::IamPropertiesPatch]
|
1619
|
+
#
|
1620
|
+
# @!attribute [rw] redshift_properties
|
1621
|
+
# The Amazon Redshift properties of a connection properties patch.
|
1622
|
+
# @return [Types::RedshiftPropertiesPatch]
|
1623
|
+
#
|
1624
|
+
# @!attribute [rw] spark_emr_properties
|
1625
|
+
# The Spark EMR properties of a connection properties patch.
|
1626
|
+
# @return [Types::SparkEmrPropertiesPatch]
|
1627
|
+
#
|
1628
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectionPropertiesPatch AWS API Documentation
|
1629
|
+
#
|
1630
|
+
class ConnectionPropertiesPatch < Struct.new(
|
1631
|
+
:athena_properties,
|
1632
|
+
:glue_properties,
|
1633
|
+
:iam_properties,
|
1634
|
+
:redshift_properties,
|
1635
|
+
:spark_emr_properties,
|
1636
|
+
:unknown)
|
1637
|
+
SENSITIVE = []
|
1638
|
+
include Aws::Structure
|
1639
|
+
include Aws::Structure::Union
|
1640
|
+
|
1641
|
+
class AthenaProperties < ConnectionPropertiesPatch; end
|
1642
|
+
class GlueProperties < ConnectionPropertiesPatch; end
|
1643
|
+
class IamProperties < ConnectionPropertiesPatch; end
|
1644
|
+
class RedshiftProperties < ConnectionPropertiesPatch; end
|
1645
|
+
class SparkEmrProperties < ConnectionPropertiesPatch; end
|
1646
|
+
class Unknown < ConnectionPropertiesPatch; end
|
1647
|
+
end
|
1648
|
+
|
1649
|
+
# The summary of a connection.
|
1650
|
+
#
|
1651
|
+
# @!attribute [rw] connection_id
|
1652
|
+
# The ID of a connection.
|
1653
|
+
# @return [String]
|
1654
|
+
#
|
1655
|
+
# @!attribute [rw] domain_id
|
1656
|
+
# The domain ID of a connection.
|
1657
|
+
# @return [String]
|
1658
|
+
#
|
1659
|
+
# @!attribute [rw] domain_unit_id
|
1660
|
+
# The domain unit ID of a connection.
|
1661
|
+
# @return [String]
|
1662
|
+
#
|
1663
|
+
# @!attribute [rw] environment_id
|
1664
|
+
# The environment ID of a connection.
|
1665
|
+
# @return [String]
|
1666
|
+
#
|
1667
|
+
# @!attribute [rw] name
|
1668
|
+
# The connection name.
|
1669
|
+
# @return [String]
|
1670
|
+
#
|
1671
|
+
# @!attribute [rw] physical_endpoints
|
1672
|
+
# The connection physical endpoints.
|
1673
|
+
# @return [Array<Types::PhysicalEndpoint>]
|
1674
|
+
#
|
1675
|
+
# @!attribute [rw] project_id
|
1676
|
+
# The connection project ID.
|
1677
|
+
# @return [String]
|
1678
|
+
#
|
1679
|
+
# @!attribute [rw] props
|
1680
|
+
# The connection props.
|
1681
|
+
# @return [Types::ConnectionPropertiesOutput]
|
1682
|
+
#
|
1683
|
+
# @!attribute [rw] type
|
1684
|
+
# The connection type.
|
1685
|
+
# @return [String]
|
1686
|
+
#
|
1687
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectionSummary AWS API Documentation
|
1688
|
+
#
|
1689
|
+
class ConnectionSummary < Struct.new(
|
1690
|
+
:connection_id,
|
1691
|
+
:domain_id,
|
1692
|
+
:domain_unit_id,
|
1693
|
+
:environment_id,
|
1694
|
+
:name,
|
1695
|
+
:physical_endpoints,
|
1696
|
+
:project_id,
|
1697
|
+
:props,
|
1698
|
+
:type)
|
1699
|
+
SENSITIVE = []
|
1700
|
+
include Aws::Structure
|
1701
|
+
end
|
1702
|
+
|
1240
1703
|
# @!attribute [rw] asset_identifier
|
1241
1704
|
# The ID of the data asset.
|
1242
1705
|
# @return [String]
|
@@ -1404,7 +1867,7 @@ module Aws::DataZone
|
|
1404
1867
|
:prediction_configuration,
|
1405
1868
|
:type_identifier,
|
1406
1869
|
:type_revision)
|
1407
|
-
SENSITIVE = [:description, :
|
1870
|
+
SENSITIVE = [:description, :forms_input, :name]
|
1408
1871
|
include Aws::Structure
|
1409
1872
|
end
|
1410
1873
|
|
@@ -1508,7 +1971,7 @@ module Aws::DataZone
|
|
1508
1971
|
:revision,
|
1509
1972
|
:type_identifier,
|
1510
1973
|
:type_revision)
|
1511
|
-
SENSITIVE = [:description, :
|
1974
|
+
SENSITIVE = [:description, :name]
|
1512
1975
|
include Aws::Structure
|
1513
1976
|
end
|
1514
1977
|
|
@@ -1676,7 +2139,7 @@ module Aws::DataZone
|
|
1676
2139
|
:revision,
|
1677
2140
|
:type_identifier,
|
1678
2141
|
:type_revision)
|
1679
|
-
SENSITIVE = [:description, :
|
2142
|
+
SENSITIVE = [:description, :name]
|
1680
2143
|
include Aws::Structure
|
1681
2144
|
end
|
1682
2145
|
|
@@ -1799,6 +2262,10 @@ module Aws::DataZone
|
|
1799
2262
|
include Aws::Structure
|
1800
2263
|
end
|
1801
2264
|
|
2265
|
+
# @!attribute [rw] aws_location
|
2266
|
+
# The location where the connection is created.
|
2267
|
+
# @return [Types::AwsLocation]
|
2268
|
+
#
|
1802
2269
|
# @!attribute [rw] client_token
|
1803
2270
|
# A unique, case-sensitive identifier that is provided to ensure the
|
1804
2271
|
# idempotency of the request.
|
@@ -1808,49 +2275,148 @@ module Aws::DataZone
|
|
1808
2275
|
# @return [String]
|
1809
2276
|
#
|
1810
2277
|
# @!attribute [rw] description
|
1811
|
-
#
|
2278
|
+
# A connection description.
|
1812
2279
|
# @return [String]
|
1813
2280
|
#
|
1814
2281
|
# @!attribute [rw] domain_identifier
|
1815
|
-
# The ID of the domain where the
|
2282
|
+
# The ID of the domain where the connection is created.
|
1816
2283
|
# @return [String]
|
1817
2284
|
#
|
1818
|
-
# @!attribute [rw]
|
1819
|
-
# The
|
1820
|
-
# @return [
|
1821
|
-
#
|
1822
|
-
# @!attribute [rw] glossary_terms
|
1823
|
-
# The glossary terms of the data product.
|
1824
|
-
# @return [Array<String>]
|
1825
|
-
#
|
1826
|
-
# @!attribute [rw] items
|
1827
|
-
# The data assets of the data product.
|
1828
|
-
# @return [Array<Types::DataProductItem>]
|
2285
|
+
# @!attribute [rw] environment_identifier
|
2286
|
+
# The ID of the environment where the connection is created.
|
2287
|
+
# @return [String]
|
1829
2288
|
#
|
1830
2289
|
# @!attribute [rw] name
|
1831
|
-
# The name
|
2290
|
+
# The connection name.
|
1832
2291
|
# @return [String]
|
1833
2292
|
#
|
1834
|
-
# @!attribute [rw]
|
1835
|
-
# The
|
1836
|
-
# @return [
|
2293
|
+
# @!attribute [rw] props
|
2294
|
+
# The connection props.
|
2295
|
+
# @return [Types::ConnectionPropertiesInput]
|
1837
2296
|
#
|
1838
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/
|
2297
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateConnectionInput AWS API Documentation
|
1839
2298
|
#
|
1840
|
-
class
|
2299
|
+
class CreateConnectionInput < Struct.new(
|
2300
|
+
:aws_location,
|
1841
2301
|
:client_token,
|
1842
2302
|
:description,
|
1843
2303
|
:domain_identifier,
|
1844
|
-
:
|
1845
|
-
:glossary_terms,
|
1846
|
-
:items,
|
2304
|
+
:environment_identifier,
|
1847
2305
|
:name,
|
1848
|
-
:
|
1849
|
-
SENSITIVE = [:description
|
2306
|
+
:props)
|
2307
|
+
SENSITIVE = [:description]
|
1850
2308
|
include Aws::Structure
|
1851
2309
|
end
|
1852
2310
|
|
1853
|
-
# @!attribute [rw]
|
2311
|
+
# @!attribute [rw] connection_id
|
2312
|
+
# The ID of the connection.
|
2313
|
+
# @return [String]
|
2314
|
+
#
|
2315
|
+
# @!attribute [rw] description
|
2316
|
+
# The connection description.
|
2317
|
+
# @return [String]
|
2318
|
+
#
|
2319
|
+
# @!attribute [rw] domain_id
|
2320
|
+
# The ID of the domain where the connection is created.
|
2321
|
+
# @return [String]
|
2322
|
+
#
|
2323
|
+
# @!attribute [rw] domain_unit_id
|
2324
|
+
# The ID of the domain unit where the connection is created.
|
2325
|
+
# @return [String]
|
2326
|
+
#
|
2327
|
+
# @!attribute [rw] environment_id
|
2328
|
+
# The ID of the environment where the connection is created.
|
2329
|
+
# @return [String]
|
2330
|
+
#
|
2331
|
+
# @!attribute [rw] name
|
2332
|
+
# The connection name.
|
2333
|
+
# @return [String]
|
2334
|
+
#
|
2335
|
+
# @!attribute [rw] physical_endpoints
|
2336
|
+
# The physical endpoints of the connection.
|
2337
|
+
# @return [Array<Types::PhysicalEndpoint>]
|
2338
|
+
#
|
2339
|
+
# @!attribute [rw] project_id
|
2340
|
+
# The ID of the project where the connection is created.
|
2341
|
+
# @return [String]
|
2342
|
+
#
|
2343
|
+
# @!attribute [rw] props
|
2344
|
+
# The connection props.
|
2345
|
+
# @return [Types::ConnectionPropertiesOutput]
|
2346
|
+
#
|
2347
|
+
# @!attribute [rw] type
|
2348
|
+
# The connection type.
|
2349
|
+
# @return [String]
|
2350
|
+
#
|
2351
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateConnectionOutput AWS API Documentation
|
2352
|
+
#
|
2353
|
+
class CreateConnectionOutput < Struct.new(
|
2354
|
+
:connection_id,
|
2355
|
+
:description,
|
2356
|
+
:domain_id,
|
2357
|
+
:domain_unit_id,
|
2358
|
+
:environment_id,
|
2359
|
+
:name,
|
2360
|
+
:physical_endpoints,
|
2361
|
+
:project_id,
|
2362
|
+
:props,
|
2363
|
+
:type)
|
2364
|
+
SENSITIVE = [:description]
|
2365
|
+
include Aws::Structure
|
2366
|
+
end
|
2367
|
+
|
2368
|
+
# @!attribute [rw] client_token
|
2369
|
+
# A unique, case-sensitive identifier that is provided to ensure the
|
2370
|
+
# idempotency of the request.
|
2371
|
+
#
|
2372
|
+
# **A suitable default value is auto-generated.** You should normally
|
2373
|
+
# not need to pass this option.
|
2374
|
+
# @return [String]
|
2375
|
+
#
|
2376
|
+
# @!attribute [rw] description
|
2377
|
+
# The description of the data product.
|
2378
|
+
# @return [String]
|
2379
|
+
#
|
2380
|
+
# @!attribute [rw] domain_identifier
|
2381
|
+
# The ID of the domain where the data product is created.
|
2382
|
+
# @return [String]
|
2383
|
+
#
|
2384
|
+
# @!attribute [rw] forms_input
|
2385
|
+
# The metadata forms of the data product.
|
2386
|
+
# @return [Array<Types::FormInput>]
|
2387
|
+
#
|
2388
|
+
# @!attribute [rw] glossary_terms
|
2389
|
+
# The glossary terms of the data product.
|
2390
|
+
# @return [Array<String>]
|
2391
|
+
#
|
2392
|
+
# @!attribute [rw] items
|
2393
|
+
# The data assets of the data product.
|
2394
|
+
# @return [Array<Types::DataProductItem>]
|
2395
|
+
#
|
2396
|
+
# @!attribute [rw] name
|
2397
|
+
# The name of the data product.
|
2398
|
+
# @return [String]
|
2399
|
+
#
|
2400
|
+
# @!attribute [rw] owning_project_identifier
|
2401
|
+
# The ID of the owning project of the data product.
|
2402
|
+
# @return [String]
|
2403
|
+
#
|
2404
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateDataProductInput AWS API Documentation
|
2405
|
+
#
|
2406
|
+
class CreateDataProductInput < Struct.new(
|
2407
|
+
:client_token,
|
2408
|
+
:description,
|
2409
|
+
:domain_identifier,
|
2410
|
+
:forms_input,
|
2411
|
+
:glossary_terms,
|
2412
|
+
:items,
|
2413
|
+
:name,
|
2414
|
+
:owning_project_identifier)
|
2415
|
+
SENSITIVE = [:description, :forms_input, :name]
|
2416
|
+
include Aws::Structure
|
2417
|
+
end
|
2418
|
+
|
2419
|
+
# @!attribute [rw] created_at
|
1854
2420
|
# The timestamp at which the data product was created.
|
1855
2421
|
# @return [Time]
|
1856
2422
|
#
|
@@ -2075,6 +2641,10 @@ module Aws::DataZone
|
|
2075
2641
|
# either `glueRunConfiguration` or `redshiftRunConfiguration`.
|
2076
2642
|
# @return [Types::DataSourceConfigurationInput]
|
2077
2643
|
#
|
2644
|
+
# @!attribute [rw] connection_identifier
|
2645
|
+
# The ID of the connection.
|
2646
|
+
# @return [String]
|
2647
|
+
#
|
2078
2648
|
# @!attribute [rw] description
|
2079
2649
|
# The description of the data source.
|
2080
2650
|
# @return [String]
|
@@ -2126,6 +2696,7 @@ module Aws::DataZone
|
|
2126
2696
|
:asset_forms_input,
|
2127
2697
|
:client_token,
|
2128
2698
|
:configuration,
|
2699
|
+
:connection_identifier,
|
2129
2700
|
:description,
|
2130
2701
|
:domain_identifier,
|
2131
2702
|
:enable_setting,
|
@@ -2150,6 +2721,10 @@ module Aws::DataZone
|
|
2150
2721
|
# either `glueRunConfiguration` or `redshiftRunConfiguration`.
|
2151
2722
|
# @return [Types::DataSourceConfigurationOutput]
|
2152
2723
|
#
|
2724
|
+
# @!attribute [rw] connection_id
|
2725
|
+
# The ID of the connection.
|
2726
|
+
# @return [String]
|
2727
|
+
#
|
2153
2728
|
# @!attribute [rw] created_at
|
2154
2729
|
# The timestamp of when the data source was created.
|
2155
2730
|
# @return [Time]
|
@@ -2234,6 +2809,7 @@ module Aws::DataZone
|
|
2234
2809
|
class CreateDataSourceOutput < Struct.new(
|
2235
2810
|
:asset_forms_output,
|
2236
2811
|
:configuration,
|
2812
|
+
:connection_id,
|
2237
2813
|
:created_at,
|
2238
2814
|
:description,
|
2239
2815
|
:domain_id,
|
@@ -2274,6 +2850,10 @@ module Aws::DataZone
|
|
2274
2850
|
# Amazon Web Services account that houses the Amazon DataZone domain.
|
2275
2851
|
# @return [String]
|
2276
2852
|
#
|
2853
|
+
# @!attribute [rw] domain_version
|
2854
|
+
# The version of the domain that is created.
|
2855
|
+
# @return [String]
|
2856
|
+
#
|
2277
2857
|
# @!attribute [rw] kms_key_identifier
|
2278
2858
|
# The identifier of the Amazon Web Services Key Management Service
|
2279
2859
|
# (KMS) key that is used to encrypt the Amazon DataZone domain,
|
@@ -2284,6 +2864,10 @@ module Aws::DataZone
|
|
2284
2864
|
# The name of the Amazon DataZone domain.
|
2285
2865
|
# @return [String]
|
2286
2866
|
#
|
2867
|
+
# @!attribute [rw] service_role
|
2868
|
+
# The service role of the domain that is created.
|
2869
|
+
# @return [String]
|
2870
|
+
#
|
2287
2871
|
# @!attribute [rw] single_sign_on
|
2288
2872
|
# The single-sign on configuration of the Amazon DataZone domain.
|
2289
2873
|
# @return [Types::SingleSignOn]
|
@@ -2298,8 +2882,10 @@ module Aws::DataZone
|
|
2298
2882
|
:client_token,
|
2299
2883
|
:description,
|
2300
2884
|
:domain_execution_role,
|
2885
|
+
:domain_version,
|
2301
2886
|
:kms_key_identifier,
|
2302
2887
|
:name,
|
2888
|
+
:service_role,
|
2303
2889
|
:single_sign_on,
|
2304
2890
|
:tags)
|
2305
2891
|
SENSITIVE = []
|
@@ -2320,6 +2906,10 @@ module Aws::DataZone
|
|
2320
2906
|
# Amazon Web Services account that houses the Amazon DataZone domain.
|
2321
2907
|
# @return [String]
|
2322
2908
|
#
|
2909
|
+
# @!attribute [rw] domain_version
|
2910
|
+
# The version of the domain that is created.
|
2911
|
+
# @return [String]
|
2912
|
+
#
|
2323
2913
|
# @!attribute [rw] id
|
2324
2914
|
# The identifier of the Amazon DataZone domain.
|
2325
2915
|
# @return [String]
|
@@ -2342,6 +2932,10 @@ module Aws::DataZone
|
|
2342
2932
|
# The ID of the root domain unit.
|
2343
2933
|
# @return [String]
|
2344
2934
|
#
|
2935
|
+
# @!attribute [rw] service_role
|
2936
|
+
# Te service role of the domain that is created.
|
2937
|
+
# @return [String]
|
2938
|
+
#
|
2345
2939
|
# @!attribute [rw] single_sign_on
|
2346
2940
|
# The single-sign on configuration of the Amazon DataZone domain.
|
2347
2941
|
# @return [Types::SingleSignOn]
|
@@ -2360,11 +2954,13 @@ module Aws::DataZone
|
|
2360
2954
|
:arn,
|
2361
2955
|
:description,
|
2362
2956
|
:domain_execution_role,
|
2957
|
+
:domain_version,
|
2363
2958
|
:id,
|
2364
2959
|
:kms_key_identifier,
|
2365
2960
|
:name,
|
2366
2961
|
:portal_url,
|
2367
2962
|
:root_domain_unit_id,
|
2963
|
+
:service_role,
|
2368
2964
|
:single_sign_on,
|
2369
2965
|
:status,
|
2370
2966
|
:tags)
|
@@ -2546,6 +3142,10 @@ module Aws::DataZone
|
|
2546
3142
|
include Aws::Structure
|
2547
3143
|
end
|
2548
3144
|
|
3145
|
+
# @!attribute [rw] deployment_order
|
3146
|
+
# The deployment order of the environment.
|
3147
|
+
# @return [Integer]
|
3148
|
+
#
|
2549
3149
|
# @!attribute [rw] description
|
2550
3150
|
# The description of the Amazon DataZone environment.
|
2551
3151
|
# @return [String]
|
@@ -2567,6 +3167,10 @@ module Aws::DataZone
|
|
2567
3167
|
# The ID of the blueprint with which the environment is being created.
|
2568
3168
|
# @return [String]
|
2569
3169
|
#
|
3170
|
+
# @!attribute [rw] environment_configuration_id
|
3171
|
+
# The configuration ID of the environment.
|
3172
|
+
# @return [String]
|
3173
|
+
#
|
2570
3174
|
# @!attribute [rw] environment_profile_identifier
|
2571
3175
|
# The identifier of the environment profile that is used to create
|
2572
3176
|
# this Amazon DataZone environment.
|
@@ -2593,11 +3197,13 @@ module Aws::DataZone
|
|
2593
3197
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateEnvironmentInput AWS API Documentation
|
2594
3198
|
#
|
2595
3199
|
class CreateEnvironmentInput < Struct.new(
|
3200
|
+
:deployment_order,
|
2596
3201
|
:description,
|
2597
3202
|
:domain_identifier,
|
2598
3203
|
:environment_account_identifier,
|
2599
3204
|
:environment_account_region,
|
2600
3205
|
:environment_blueprint_identifier,
|
3206
|
+
:environment_configuration_id,
|
2601
3207
|
:environment_profile_identifier,
|
2602
3208
|
:glossary_terms,
|
2603
3209
|
:name,
|
@@ -3276,6 +3882,28 @@ module Aws::DataZone
|
|
3276
3882
|
include Aws::Structure
|
3277
3883
|
end
|
3278
3884
|
|
3885
|
+
# Specifies whether to create a project from project profile policy
|
3886
|
+
# grant details.
|
3887
|
+
#
|
3888
|
+
# @!attribute [rw] include_child_domain_units
|
3889
|
+
# Specifies whether to include child domain units when creating a
|
3890
|
+
# project from project profile policy grant details
|
3891
|
+
# @return [Boolean]
|
3892
|
+
#
|
3893
|
+
# @!attribute [rw] project_profiles
|
3894
|
+
# Specifies project profiles when creating a project from project
|
3895
|
+
# profile policy grant details
|
3896
|
+
# @return [Array<String>]
|
3897
|
+
#
|
3898
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateProjectFromProjectProfilePolicyGrantDetail AWS API Documentation
|
3899
|
+
#
|
3900
|
+
class CreateProjectFromProjectProfilePolicyGrantDetail < Struct.new(
|
3901
|
+
:include_child_domain_units,
|
3902
|
+
:project_profiles)
|
3903
|
+
SENSITIVE = []
|
3904
|
+
include Aws::Structure
|
3905
|
+
end
|
3906
|
+
|
3279
3907
|
# @!attribute [rw] description
|
3280
3908
|
# The description of the Amazon DataZone project.
|
3281
3909
|
# @return [String]
|
@@ -3299,6 +3927,14 @@ module Aws::DataZone
|
|
3299
3927
|
# The name of the Amazon DataZone project.
|
3300
3928
|
# @return [String]
|
3301
3929
|
#
|
3930
|
+
# @!attribute [rw] project_profile_id
|
3931
|
+
# The ID of the project profile.
|
3932
|
+
# @return [String]
|
3933
|
+
#
|
3934
|
+
# @!attribute [rw] user_parameters
|
3935
|
+
# The user parameters of the project.
|
3936
|
+
# @return [Array<Types::EnvironmentConfigurationUserParameter>]
|
3937
|
+
#
|
3302
3938
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateProjectInput AWS API Documentation
|
3303
3939
|
#
|
3304
3940
|
class CreateProjectInput < Struct.new(
|
@@ -3306,7 +3942,9 @@ module Aws::DataZone
|
|
3306
3942
|
:domain_identifier,
|
3307
3943
|
:domain_unit_id,
|
3308
3944
|
:glossary_terms,
|
3309
|
-
:name
|
3945
|
+
:name,
|
3946
|
+
:project_profile_id,
|
3947
|
+
:user_parameters)
|
3310
3948
|
SENSITIVE = [:description, :name]
|
3311
3949
|
include Aws::Structure
|
3312
3950
|
end
|
@@ -3364,6 +4002,10 @@ module Aws::DataZone
|
|
3364
4002
|
# The ID of the domain unit.
|
3365
4003
|
# @return [String]
|
3366
4004
|
#
|
4005
|
+
# @!attribute [rw] environment_deployment_details
|
4006
|
+
# The environment deployment details.
|
4007
|
+
# @return [Types::EnvironmentDeploymentDetails]
|
4008
|
+
#
|
3367
4009
|
# @!attribute [rw] failure_reasons
|
3368
4010
|
# Specifies the error message that is returned if the operation cannot
|
3369
4011
|
# be successfully completed.
|
@@ -3385,10 +4027,18 @@ module Aws::DataZone
|
|
3385
4027
|
# The name of the project.
|
3386
4028
|
# @return [String]
|
3387
4029
|
#
|
4030
|
+
# @!attribute [rw] project_profile_id
|
4031
|
+
# The project profile ID.
|
4032
|
+
# @return [String]
|
4033
|
+
#
|
3388
4034
|
# @!attribute [rw] project_status
|
3389
4035
|
# The status of the Amazon DataZone project that was created.
|
3390
4036
|
# @return [String]
|
3391
4037
|
#
|
4038
|
+
# @!attribute [rw] user_parameters
|
4039
|
+
# The user parameters of the project.
|
4040
|
+
# @return [Array<Types::EnvironmentConfigurationUserParameter>]
|
4041
|
+
#
|
3392
4042
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateProjectOutput AWS API Documentation
|
3393
4043
|
#
|
3394
4044
|
class CreateProjectOutput < Struct.new(
|
@@ -3397,12 +4047,15 @@ module Aws::DataZone
|
|
3397
4047
|
:description,
|
3398
4048
|
:domain_id,
|
3399
4049
|
:domain_unit_id,
|
4050
|
+
:environment_deployment_details,
|
3400
4051
|
:failure_reasons,
|
3401
4052
|
:glossary_terms,
|
3402
4053
|
:id,
|
3403
4054
|
:last_updated_at,
|
3404
4055
|
:name,
|
3405
|
-
:
|
4056
|
+
:project_profile_id,
|
4057
|
+
:project_status,
|
4058
|
+
:user_parameters)
|
3406
4059
|
SENSITIVE = [:description, :name]
|
3407
4060
|
include Aws::Structure
|
3408
4061
|
end
|
@@ -3421,6 +4074,100 @@ module Aws::DataZone
|
|
3421
4074
|
include Aws::Structure
|
3422
4075
|
end
|
3423
4076
|
|
4077
|
+
# @!attribute [rw] description
|
4078
|
+
# A description of a project profile.
|
4079
|
+
# @return [String]
|
4080
|
+
#
|
4081
|
+
# @!attribute [rw] domain_identifier
|
4082
|
+
# A domain ID of the project profile.
|
4083
|
+
# @return [String]
|
4084
|
+
#
|
4085
|
+
# @!attribute [rw] domain_unit_identifier
|
4086
|
+
# A domain unit ID of the project profile.
|
4087
|
+
# @return [String]
|
4088
|
+
#
|
4089
|
+
# @!attribute [rw] environment_configurations
|
4090
|
+
# Environment configurations of the project profile.
|
4091
|
+
# @return [Array<Types::EnvironmentConfiguration>]
|
4092
|
+
#
|
4093
|
+
# @!attribute [rw] name
|
4094
|
+
# Project profile name.
|
4095
|
+
# @return [String]
|
4096
|
+
#
|
4097
|
+
# @!attribute [rw] status
|
4098
|
+
# Project profile status.
|
4099
|
+
# @return [String]
|
4100
|
+
#
|
4101
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateProjectProfileInput AWS API Documentation
|
4102
|
+
#
|
4103
|
+
class CreateProjectProfileInput < Struct.new(
|
4104
|
+
:description,
|
4105
|
+
:domain_identifier,
|
4106
|
+
:domain_unit_identifier,
|
4107
|
+
:environment_configurations,
|
4108
|
+
:name,
|
4109
|
+
:status)
|
4110
|
+
SENSITIVE = [:description, :name]
|
4111
|
+
include Aws::Structure
|
4112
|
+
end
|
4113
|
+
|
4114
|
+
# @!attribute [rw] created_at
|
4115
|
+
# A timestamp at which a project profile is created.
|
4116
|
+
# @return [Time]
|
4117
|
+
#
|
4118
|
+
# @!attribute [rw] created_by
|
4119
|
+
# A user who created a project profile.
|
4120
|
+
# @return [String]
|
4121
|
+
#
|
4122
|
+
# @!attribute [rw] description
|
4123
|
+
# A project profile description.
|
4124
|
+
# @return [String]
|
4125
|
+
#
|
4126
|
+
# @!attribute [rw] domain_id
|
4127
|
+
# The ID of the domain where a project profile is created.
|
4128
|
+
# @return [String]
|
4129
|
+
#
|
4130
|
+
# @!attribute [rw] domain_unit_id
|
4131
|
+
# The ID of the domain unit where a project profile is created.
|
4132
|
+
# @return [String]
|
4133
|
+
#
|
4134
|
+
# @!attribute [rw] environment_configurations
|
4135
|
+
# Environment configurations of a project profile.
|
4136
|
+
# @return [Array<Types::EnvironmentConfiguration>]
|
4137
|
+
#
|
4138
|
+
# @!attribute [rw] id
|
4139
|
+
# Project profile ID.
|
4140
|
+
# @return [String]
|
4141
|
+
#
|
4142
|
+
# @!attribute [rw] last_updated_at
|
4143
|
+
# A timestamp when a project profile was last updated.
|
4144
|
+
# @return [Time]
|
4145
|
+
#
|
4146
|
+
# @!attribute [rw] name
|
4147
|
+
# Project profile name.
|
4148
|
+
# @return [String]
|
4149
|
+
#
|
4150
|
+
# @!attribute [rw] status
|
4151
|
+
# Project profile status.
|
4152
|
+
# @return [String]
|
4153
|
+
#
|
4154
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateProjectProfileOutput AWS API Documentation
|
4155
|
+
#
|
4156
|
+
class CreateProjectProfileOutput < Struct.new(
|
4157
|
+
:created_at,
|
4158
|
+
:created_by,
|
4159
|
+
:description,
|
4160
|
+
:domain_id,
|
4161
|
+
:domain_unit_id,
|
4162
|
+
:environment_configurations,
|
4163
|
+
:id,
|
4164
|
+
:last_updated_at,
|
4165
|
+
:name,
|
4166
|
+
:status)
|
4167
|
+
SENSITIVE = [:description, :name]
|
4168
|
+
include Aws::Structure
|
4169
|
+
end
|
4170
|
+
|
3424
4171
|
# @!attribute [rw] action
|
3425
4172
|
# The action of the rule.
|
3426
4173
|
# @return [String]
|
@@ -4285,11 +5032,16 @@ module Aws::DataZone
|
|
4285
5032
|
# The configuration of the Amazon Redshift data source.
|
4286
5033
|
# @return [Types::RedshiftRunConfigurationInput]
|
4287
5034
|
#
|
5035
|
+
# @!attribute [rw] sage_maker_run_configuration
|
5036
|
+
# The Amazon SageMaker run configuration.
|
5037
|
+
# @return [Types::SageMakerRunConfigurationInput]
|
5038
|
+
#
|
4288
5039
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DataSourceConfigurationInput AWS API Documentation
|
4289
5040
|
#
|
4290
5041
|
class DataSourceConfigurationInput < Struct.new(
|
4291
5042
|
:glue_run_configuration,
|
4292
5043
|
:redshift_run_configuration,
|
5044
|
+
:sage_maker_run_configuration,
|
4293
5045
|
:unknown)
|
4294
5046
|
SENSITIVE = []
|
4295
5047
|
include Aws::Structure
|
@@ -4297,6 +5049,7 @@ module Aws::DataZone
|
|
4297
5049
|
|
4298
5050
|
class GlueRunConfiguration < DataSourceConfigurationInput; end
|
4299
5051
|
class RedshiftRunConfiguration < DataSourceConfigurationInput; end
|
5052
|
+
class SageMakerRunConfiguration < DataSourceConfigurationInput; end
|
4300
5053
|
class Unknown < DataSourceConfigurationInput; end
|
4301
5054
|
end
|
4302
5055
|
|
@@ -4312,11 +5065,16 @@ module Aws::DataZone
|
|
4312
5065
|
# The configuration of the Amazon Redshift data source.
|
4313
5066
|
# @return [Types::RedshiftRunConfigurationOutput]
|
4314
5067
|
#
|
5068
|
+
# @!attribute [rw] sage_maker_run_configuration
|
5069
|
+
# The Amazon SageMaker run configuration.
|
5070
|
+
# @return [Types::SageMakerRunConfigurationOutput]
|
5071
|
+
#
|
4315
5072
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DataSourceConfigurationOutput AWS API Documentation
|
4316
5073
|
#
|
4317
5074
|
class DataSourceConfigurationOutput < Struct.new(
|
4318
5075
|
:glue_run_configuration,
|
4319
5076
|
:redshift_run_configuration,
|
5077
|
+
:sage_maker_run_configuration,
|
4320
5078
|
:unknown)
|
4321
5079
|
SENSITIVE = []
|
4322
5080
|
include Aws::Structure
|
@@ -4324,6 +5082,7 @@ module Aws::DataZone
|
|
4324
5082
|
|
4325
5083
|
class GlueRunConfiguration < DataSourceConfigurationOutput; end
|
4326
5084
|
class RedshiftRunConfiguration < DataSourceConfigurationOutput; end
|
5085
|
+
class SageMakerRunConfiguration < DataSourceConfigurationOutput; end
|
4327
5086
|
class Unknown < DataSourceConfigurationOutput; end
|
4328
5087
|
end
|
4329
5088
|
|
@@ -4377,6 +5136,10 @@ module Aws::DataZone
|
|
4377
5136
|
# cannot be successfully completed.
|
4378
5137
|
# @return [Types::DataSourceErrorMessage]
|
4379
5138
|
#
|
5139
|
+
# @!attribute [rw] lineage_summary
|
5140
|
+
# The data lineage summary.
|
5141
|
+
# @return [Types::LineageInfo]
|
5142
|
+
#
|
4380
5143
|
# @!attribute [rw] project_id
|
4381
5144
|
# The project ID included in the data source run activity.
|
4382
5145
|
# @return [String]
|
@@ -4402,6 +5165,7 @@ module Aws::DataZone
|
|
4402
5165
|
:data_source_run_id,
|
4403
5166
|
:database,
|
4404
5167
|
:error_message,
|
5168
|
+
:lineage_summary,
|
4405
5169
|
:project_id,
|
4406
5170
|
:technical_description,
|
4407
5171
|
:technical_name,
|
@@ -4410,6 +5174,21 @@ module Aws::DataZone
|
|
4410
5174
|
include Aws::Structure
|
4411
5175
|
end
|
4412
5176
|
|
5177
|
+
# The run lineage summary of a data source.
|
5178
|
+
#
|
5179
|
+
# @!attribute [rw] import_status
|
5180
|
+
# The import status that's part of the run lineage summary of a data
|
5181
|
+
# source.
|
5182
|
+
# @return [String]
|
5183
|
+
#
|
5184
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DataSourceRunLineageSummary AWS API Documentation
|
5185
|
+
#
|
5186
|
+
class DataSourceRunLineageSummary < Struct.new(
|
5187
|
+
:import_status)
|
5188
|
+
SENSITIVE = []
|
5189
|
+
include Aws::Structure
|
5190
|
+
end
|
5191
|
+
|
4413
5192
|
# The details of a data source run.
|
4414
5193
|
#
|
4415
5194
|
# @!attribute [rw] created_at
|
@@ -4429,6 +5208,10 @@ module Aws::DataZone
|
|
4429
5208
|
# The identifier of the data source run.
|
4430
5209
|
# @return [String]
|
4431
5210
|
#
|
5211
|
+
# @!attribute [rw] lineage_summary
|
5212
|
+
# The run lineage summary of a data source.
|
5213
|
+
# @return [Types::DataSourceRunLineageSummary]
|
5214
|
+
#
|
4432
5215
|
# @!attribute [rw] project_id
|
4433
5216
|
# The project ID of the data source run.
|
4434
5217
|
# @return [String]
|
@@ -4464,6 +5247,7 @@ module Aws::DataZone
|
|
4464
5247
|
:data_source_id,
|
4465
5248
|
:error_message,
|
4466
5249
|
:id,
|
5250
|
+
:lineage_summary,
|
4467
5251
|
:project_id,
|
4468
5252
|
:run_statistics_for_assets,
|
4469
5253
|
:started_at,
|
@@ -4477,6 +5261,10 @@ module Aws::DataZone
|
|
4477
5261
|
|
4478
5262
|
# The details of the data source.
|
4479
5263
|
#
|
5264
|
+
# @!attribute [rw] connection_id
|
5265
|
+
# The connection ID that's part of the data source summary.
|
5266
|
+
# @return [String]
|
5267
|
+
#
|
4480
5268
|
# @!attribute [rw] created_at
|
4481
5269
|
# The timestamp of when the data source was created.
|
4482
5270
|
# @return [Time]
|
@@ -4485,6 +5273,10 @@ module Aws::DataZone
|
|
4485
5273
|
# The ID of the data source.
|
4486
5274
|
# @return [String]
|
4487
5275
|
#
|
5276
|
+
# @!attribute [rw] description
|
5277
|
+
# The data source description.
|
5278
|
+
# @return [String]
|
5279
|
+
#
|
4488
5280
|
# @!attribute [rw] domain_id
|
4489
5281
|
# The ID of the Amazon DataZone domain in which the data source
|
4490
5282
|
# exists.
|
@@ -4538,8 +5330,10 @@ module Aws::DataZone
|
|
4538
5330
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DataSourceSummary AWS API Documentation
|
4539
5331
|
#
|
4540
5332
|
class DataSourceSummary < Struct.new(
|
5333
|
+
:connection_id,
|
4541
5334
|
:created_at,
|
4542
5335
|
:data_source_id,
|
5336
|
+
:description,
|
4543
5337
|
:domain_id,
|
4544
5338
|
:enable_setting,
|
4545
5339
|
:environment_id,
|
@@ -4552,7 +5346,7 @@ module Aws::DataZone
|
|
4552
5346
|
:status,
|
4553
5347
|
:type,
|
4554
5348
|
:updated_at)
|
4555
|
-
SENSITIVE = [:name, :schedule]
|
5349
|
+
SENSITIVE = [:description, :name, :schedule]
|
4556
5350
|
include Aws::Structure
|
4557
5351
|
end
|
4558
5352
|
|
@@ -4621,6 +5415,35 @@ module Aws::DataZone
|
|
4621
5415
|
#
|
4622
5416
|
class DeleteAssetTypeOutput < Aws::EmptyStructure; end
|
4623
5417
|
|
5418
|
+
# @!attribute [rw] domain_identifier
|
5419
|
+
# The ID of the domain where the connection is deleted.
|
5420
|
+
# @return [String]
|
5421
|
+
#
|
5422
|
+
# @!attribute [rw] identifier
|
5423
|
+
# The ID of the connection that is deleted.
|
5424
|
+
# @return [String]
|
5425
|
+
#
|
5426
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteConnectionInput AWS API Documentation
|
5427
|
+
#
|
5428
|
+
class DeleteConnectionInput < Struct.new(
|
5429
|
+
:domain_identifier,
|
5430
|
+
:identifier)
|
5431
|
+
SENSITIVE = []
|
5432
|
+
include Aws::Structure
|
5433
|
+
end
|
5434
|
+
|
5435
|
+
# @!attribute [rw] status
|
5436
|
+
# The status of the action.
|
5437
|
+
# @return [String]
|
5438
|
+
#
|
5439
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteConnectionOutput AWS API Documentation
|
5440
|
+
#
|
5441
|
+
class DeleteConnectionOutput < Struct.new(
|
5442
|
+
:status)
|
5443
|
+
SENSITIVE = []
|
5444
|
+
include Aws::Structure
|
5445
|
+
end
|
5446
|
+
|
4624
5447
|
# @!attribute [rw] domain_identifier
|
4625
5448
|
# The ID of the Amazon DataZone domain in which the data product is
|
4626
5449
|
# deleted.
|
@@ -4684,6 +5507,10 @@ module Aws::DataZone
|
|
4684
5507
|
# The configuration of the data source that is deleted.
|
4685
5508
|
# @return [Types::DataSourceConfigurationOutput]
|
4686
5509
|
#
|
5510
|
+
# @!attribute [rw] connection_id
|
5511
|
+
# The ID of the connection that is deleted.
|
5512
|
+
# @return [String]
|
5513
|
+
#
|
4687
5514
|
# @!attribute [rw] created_at
|
4688
5515
|
# The timestamp of when this data source was created.
|
4689
5516
|
# @return [Time]
|
@@ -4772,6 +5599,7 @@ module Aws::DataZone
|
|
4772
5599
|
class DeleteDataSourceOutput < Struct.new(
|
4773
5600
|
:asset_forms_output,
|
4774
5601
|
:configuration,
|
5602
|
+
:connection_id,
|
4775
5603
|
:created_at,
|
4776
5604
|
:description,
|
4777
5605
|
:domain_id,
|
@@ -5081,38 +5909,59 @@ module Aws::DataZone
|
|
5081
5909
|
class DeleteProjectOutput < Aws::EmptyStructure; end
|
5082
5910
|
|
5083
5911
|
# @!attribute [rw] domain_identifier
|
5084
|
-
# The ID of the domain
|
5912
|
+
# The ID of the domain where a project profile is deleted.
|
5085
5913
|
# @return [String]
|
5086
5914
|
#
|
5087
5915
|
# @!attribute [rw] identifier
|
5088
|
-
# The ID of the
|
5916
|
+
# The ID of the project profile that is deleted.
|
5089
5917
|
# @return [String]
|
5090
5918
|
#
|
5091
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/
|
5919
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteProjectProfileInput AWS API Documentation
|
5092
5920
|
#
|
5093
|
-
class
|
5921
|
+
class DeleteProjectProfileInput < Struct.new(
|
5094
5922
|
:domain_identifier,
|
5095
5923
|
:identifier)
|
5096
5924
|
SENSITIVE = []
|
5097
5925
|
include Aws::Structure
|
5098
5926
|
end
|
5099
5927
|
|
5100
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/
|
5928
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteProjectProfileOutput AWS API Documentation
|
5101
5929
|
#
|
5102
|
-
class
|
5930
|
+
class DeleteProjectProfileOutput < Aws::EmptyStructure; end
|
5103
5931
|
|
5104
5932
|
# @!attribute [rw] domain_identifier
|
5105
|
-
# The ID of the
|
5106
|
-
# deleted.
|
5933
|
+
# The ID of the domain that where the rule is to be deleted.
|
5107
5934
|
# @return [String]
|
5108
5935
|
#
|
5109
5936
|
# @!attribute [rw] identifier
|
5110
|
-
# The ID of the
|
5937
|
+
# The ID of the rule that is to be deleted.
|
5111
5938
|
# @return [String]
|
5112
5939
|
#
|
5113
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/
|
5940
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteRuleInput AWS API Documentation
|
5114
5941
|
#
|
5115
|
-
class
|
5942
|
+
class DeleteRuleInput < Struct.new(
|
5943
|
+
:domain_identifier,
|
5944
|
+
:identifier)
|
5945
|
+
SENSITIVE = []
|
5946
|
+
include Aws::Structure
|
5947
|
+
end
|
5948
|
+
|
5949
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteRuleOutput AWS API Documentation
|
5950
|
+
#
|
5951
|
+
class DeleteRuleOutput < Aws::EmptyStructure; end
|
5952
|
+
|
5953
|
+
# @!attribute [rw] domain_identifier
|
5954
|
+
# The ID of the Amazon DataZone domain where the subscription grant is
|
5955
|
+
# deleted.
|
5956
|
+
# @return [String]
|
5957
|
+
#
|
5958
|
+
# @!attribute [rw] identifier
|
5959
|
+
# The ID of the subscription grant that is deleted.
|
5960
|
+
# @return [String]
|
5961
|
+
#
|
5962
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteSubscriptionGrantInput AWS API Documentation
|
5963
|
+
#
|
5964
|
+
class DeleteSubscriptionGrantInput < Struct.new(
|
5116
5965
|
:domain_identifier,
|
5117
5966
|
:identifier)
|
5118
5967
|
SENSITIVE = []
|
@@ -5393,6 +6242,10 @@ module Aws::DataZone
|
|
5393
6242
|
# A description of an Amazon DataZone domain.
|
5394
6243
|
# @return [String]
|
5395
6244
|
#
|
6245
|
+
# @!attribute [rw] domain_version
|
6246
|
+
# The domain version.
|
6247
|
+
# @return [String]
|
6248
|
+
#
|
5396
6249
|
# @!attribute [rw] id
|
5397
6250
|
# The ID of the Amazon DataZone domain.
|
5398
6251
|
# @return [String]
|
@@ -5424,6 +6277,7 @@ module Aws::DataZone
|
|
5424
6277
|
:arn,
|
5425
6278
|
:created_at,
|
5426
6279
|
:description,
|
6280
|
+
:domain_version,
|
5427
6281
|
:id,
|
5428
6282
|
:last_updated_at,
|
5429
6283
|
:managed_account_id,
|
@@ -5656,6 +6510,10 @@ module Aws::DataZone
|
|
5656
6510
|
# The identifier of the environment blueprint.
|
5657
6511
|
# @return [String]
|
5658
6512
|
#
|
6513
|
+
# @!attribute [rw] environment_role_permission_boundary
|
6514
|
+
# The environment role permission boundary.
|
6515
|
+
# @return [String]
|
6516
|
+
#
|
5659
6517
|
# @!attribute [rw] manage_access_role_arn
|
5660
6518
|
# The ARN of the manage access role specified in the environment
|
5661
6519
|
# blueprint configuration.
|
@@ -5685,6 +6543,7 @@ module Aws::DataZone
|
|
5685
6543
|
:domain_id,
|
5686
6544
|
:enabled_regions,
|
5687
6545
|
:environment_blueprint_id,
|
6546
|
+
:environment_role_permission_boundary,
|
5688
6547
|
:manage_access_role_arn,
|
5689
6548
|
:provisioning_configurations,
|
5690
6549
|
:provisioning_role_arn,
|
@@ -5738,6 +6597,146 @@ module Aws::DataZone
|
|
5738
6597
|
include Aws::Structure
|
5739
6598
|
end
|
5740
6599
|
|
6600
|
+
# The configuration of an environment.
|
6601
|
+
#
|
6602
|
+
# @!attribute [rw] aws_account
|
6603
|
+
# The Amazon Web Services account of the environment.
|
6604
|
+
# @return [Types::AwsAccount]
|
6605
|
+
#
|
6606
|
+
# @!attribute [rw] aws_region
|
6607
|
+
# The Amazon Web Services Region of the environment.
|
6608
|
+
# @return [Types::Region]
|
6609
|
+
#
|
6610
|
+
# @!attribute [rw] configuration_parameters
|
6611
|
+
# The configuration parameters of the environment.
|
6612
|
+
# @return [Types::EnvironmentConfigurationParametersDetails]
|
6613
|
+
#
|
6614
|
+
# @!attribute [rw] deployment_mode
|
6615
|
+
# The deployment mode of the environment.
|
6616
|
+
# @return [String]
|
6617
|
+
#
|
6618
|
+
# @!attribute [rw] deployment_order
|
6619
|
+
# The deployment order of the environment.
|
6620
|
+
# @return [Integer]
|
6621
|
+
#
|
6622
|
+
# @!attribute [rw] description
|
6623
|
+
# The environment description.
|
6624
|
+
# @return [String]
|
6625
|
+
#
|
6626
|
+
# @!attribute [rw] environment_blueprint_id
|
6627
|
+
# The environment blueprint ID.
|
6628
|
+
# @return [String]
|
6629
|
+
#
|
6630
|
+
# @!attribute [rw] id
|
6631
|
+
# The environment ID.
|
6632
|
+
# @return [String]
|
6633
|
+
#
|
6634
|
+
# @!attribute [rw] name
|
6635
|
+
# The environment name.
|
6636
|
+
# @return [String]
|
6637
|
+
#
|
6638
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/EnvironmentConfiguration AWS API Documentation
|
6639
|
+
#
|
6640
|
+
class EnvironmentConfiguration < Struct.new(
|
6641
|
+
:aws_account,
|
6642
|
+
:aws_region,
|
6643
|
+
:configuration_parameters,
|
6644
|
+
:deployment_mode,
|
6645
|
+
:deployment_order,
|
6646
|
+
:description,
|
6647
|
+
:environment_blueprint_id,
|
6648
|
+
:id,
|
6649
|
+
:name)
|
6650
|
+
SENSITIVE = [:description, :id, :name]
|
6651
|
+
include Aws::Structure
|
6652
|
+
end
|
6653
|
+
|
6654
|
+
# The environment configuration parameter.
|
6655
|
+
#
|
6656
|
+
# @!attribute [rw] is_editable
|
6657
|
+
# Specifies whether the environment parameter is editable.
|
6658
|
+
# @return [Boolean]
|
6659
|
+
#
|
6660
|
+
# @!attribute [rw] name
|
6661
|
+
# The name of the environment configuration parameter.
|
6662
|
+
# @return [String]
|
6663
|
+
#
|
6664
|
+
# @!attribute [rw] value
|
6665
|
+
# The value of the environment configuration parameter.
|
6666
|
+
# @return [String]
|
6667
|
+
#
|
6668
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/EnvironmentConfigurationParameter AWS API Documentation
|
6669
|
+
#
|
6670
|
+
class EnvironmentConfigurationParameter < Struct.new(
|
6671
|
+
:is_editable,
|
6672
|
+
:name,
|
6673
|
+
:value)
|
6674
|
+
SENSITIVE = []
|
6675
|
+
include Aws::Structure
|
6676
|
+
end
|
6677
|
+
|
6678
|
+
# The details of the environment configuration parameter.
|
6679
|
+
#
|
6680
|
+
# @!attribute [rw] parameter_overrides
|
6681
|
+
# The parameter overrides.
|
6682
|
+
# @return [Array<Types::EnvironmentConfigurationParameter>]
|
6683
|
+
#
|
6684
|
+
# @!attribute [rw] resolved_parameters
|
6685
|
+
# The resolved environment configuration parameters.
|
6686
|
+
# @return [Array<Types::EnvironmentConfigurationParameter>]
|
6687
|
+
#
|
6688
|
+
# @!attribute [rw] ssm_path
|
6689
|
+
# Ssm path environment configuration parameters.
|
6690
|
+
# @return [String]
|
6691
|
+
#
|
6692
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/EnvironmentConfigurationParametersDetails AWS API Documentation
|
6693
|
+
#
|
6694
|
+
class EnvironmentConfigurationParametersDetails < Struct.new(
|
6695
|
+
:parameter_overrides,
|
6696
|
+
:resolved_parameters,
|
6697
|
+
:ssm_path)
|
6698
|
+
SENSITIVE = []
|
6699
|
+
include Aws::Structure
|
6700
|
+
end
|
6701
|
+
|
6702
|
+
# The environment configuration user parameters.
|
6703
|
+
#
|
6704
|
+
# @!attribute [rw] environment_configuration_name
|
6705
|
+
# The environment configuration name.
|
6706
|
+
# @return [String]
|
6707
|
+
#
|
6708
|
+
# @!attribute [rw] environment_parameters
|
6709
|
+
# The environment parameters.
|
6710
|
+
# @return [Array<Types::EnvironmentParameter>]
|
6711
|
+
#
|
6712
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/EnvironmentConfigurationUserParameter AWS API Documentation
|
6713
|
+
#
|
6714
|
+
class EnvironmentConfigurationUserParameter < Struct.new(
|
6715
|
+
:environment_configuration_name,
|
6716
|
+
:environment_parameters)
|
6717
|
+
SENSITIVE = [:environment_configuration_name]
|
6718
|
+
include Aws::Structure
|
6719
|
+
end
|
6720
|
+
|
6721
|
+
# The environment deployment details.
|
6722
|
+
#
|
6723
|
+
# @!attribute [rw] environment_failure_reasons
|
6724
|
+
# Environment failure reasons.
|
6725
|
+
# @return [Hash<String,Array<Types::EnvironmentError>>]
|
6726
|
+
#
|
6727
|
+
# @!attribute [rw] overall_deployment_status
|
6728
|
+
# The overall deployment status of the environment.
|
6729
|
+
# @return [String]
|
6730
|
+
#
|
6731
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/EnvironmentDeploymentDetails AWS API Documentation
|
6732
|
+
#
|
6733
|
+
class EnvironmentDeploymentDetails < Struct.new(
|
6734
|
+
:environment_failure_reasons,
|
6735
|
+
:overall_deployment_status)
|
6736
|
+
SENSITIVE = []
|
6737
|
+
include Aws::Structure
|
6738
|
+
end
|
6739
|
+
|
5741
6740
|
# The failure reasons for the environment deployment.
|
5742
6741
|
#
|
5743
6742
|
# @!attribute [rw] code
|
@@ -5942,6 +6941,27 @@ module Aws::DataZone
|
|
5942
6941
|
include Aws::Structure
|
5943
6942
|
end
|
5944
6943
|
|
6944
|
+
# The event summary.
|
6945
|
+
#
|
6946
|
+
# @note EventSummary is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EventSummary corresponding to the set member.
|
6947
|
+
#
|
6948
|
+
# @!attribute [rw] open_lineage_run_event_summary
|
6949
|
+
# The open lineage run event summary.
|
6950
|
+
# @return [Types::OpenLineageRunEventSummary]
|
6951
|
+
#
|
6952
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/EventSummary AWS API Documentation
|
6953
|
+
#
|
6954
|
+
class EventSummary < Struct.new(
|
6955
|
+
:open_lineage_run_event_summary,
|
6956
|
+
:unknown)
|
6957
|
+
SENSITIVE = []
|
6958
|
+
include Aws::Structure
|
6959
|
+
include Aws::Structure::Union
|
6960
|
+
|
6961
|
+
class OpenLineageRunEventSummary < EventSummary; end
|
6962
|
+
class Unknown < EventSummary; end
|
6963
|
+
end
|
6964
|
+
|
5945
6965
|
# Specifies the error message that is returned if the operation cannot
|
5946
6966
|
# be successfully completed.
|
5947
6967
|
#
|
@@ -6408,7 +7428,7 @@ module Aws::DataZone
|
|
6408
7428
|
:revision,
|
6409
7429
|
:type_identifier,
|
6410
7430
|
:type_revision)
|
6411
|
-
SENSITIVE = [:description, :
|
7431
|
+
SENSITIVE = [:description, :name]
|
6412
7432
|
include Aws::Structure
|
6413
7433
|
end
|
6414
7434
|
|
@@ -6503,6 +7523,95 @@ module Aws::DataZone
|
|
6503
7523
|
include Aws::Structure
|
6504
7524
|
end
|
6505
7525
|
|
7526
|
+
# @!attribute [rw] domain_identifier
|
7527
|
+
# The ID of the domain where we get the connection.
|
7528
|
+
# @return [String]
|
7529
|
+
#
|
7530
|
+
# @!attribute [rw] identifier
|
7531
|
+
# The connection ID.
|
7532
|
+
# @return [String]
|
7533
|
+
#
|
7534
|
+
# @!attribute [rw] with_secret
|
7535
|
+
# Specifies whether a connection has a secret.
|
7536
|
+
# @return [Boolean]
|
7537
|
+
#
|
7538
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetConnectionInput AWS API Documentation
|
7539
|
+
#
|
7540
|
+
class GetConnectionInput < Struct.new(
|
7541
|
+
:domain_identifier,
|
7542
|
+
:identifier,
|
7543
|
+
:with_secret)
|
7544
|
+
SENSITIVE = []
|
7545
|
+
include Aws::Structure
|
7546
|
+
end
|
7547
|
+
|
7548
|
+
# @!attribute [rw] connection_credentials
|
7549
|
+
# Connection credentials.
|
7550
|
+
# @return [Types::ConnectionCredentials]
|
7551
|
+
#
|
7552
|
+
# @!attribute [rw] connection_id
|
7553
|
+
# The ID of the connection.
|
7554
|
+
# @return [String]
|
7555
|
+
#
|
7556
|
+
# @!attribute [rw] description
|
7557
|
+
# Connection description.
|
7558
|
+
# @return [String]
|
7559
|
+
#
|
7560
|
+
# @!attribute [rw] domain_id
|
7561
|
+
# The domain ID of the connection.
|
7562
|
+
# @return [String]
|
7563
|
+
#
|
7564
|
+
# @!attribute [rw] domain_unit_id
|
7565
|
+
# The domain unit ID of the connection.
|
7566
|
+
# @return [String]
|
7567
|
+
#
|
7568
|
+
# @!attribute [rw] environment_id
|
7569
|
+
# The ID of the environment.
|
7570
|
+
# @return [String]
|
7571
|
+
#
|
7572
|
+
# @!attribute [rw] environment_user_role
|
7573
|
+
# The environment user role.
|
7574
|
+
# @return [String]
|
7575
|
+
#
|
7576
|
+
# @!attribute [rw] name
|
7577
|
+
# The name of the connection.
|
7578
|
+
# @return [String]
|
7579
|
+
#
|
7580
|
+
# @!attribute [rw] physical_endpoints
|
7581
|
+
# The physical endpoints of the connection.
|
7582
|
+
# @return [Array<Types::PhysicalEndpoint>]
|
7583
|
+
#
|
7584
|
+
# @!attribute [rw] project_id
|
7585
|
+
# The ID of the project.
|
7586
|
+
# @return [String]
|
7587
|
+
#
|
7588
|
+
# @!attribute [rw] props
|
7589
|
+
# Connection props.
|
7590
|
+
# @return [Types::ConnectionPropertiesOutput]
|
7591
|
+
#
|
7592
|
+
# @!attribute [rw] type
|
7593
|
+
# The type of the connection.
|
7594
|
+
# @return [String]
|
7595
|
+
#
|
7596
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetConnectionOutput AWS API Documentation
|
7597
|
+
#
|
7598
|
+
class GetConnectionOutput < Struct.new(
|
7599
|
+
:connection_credentials,
|
7600
|
+
:connection_id,
|
7601
|
+
:description,
|
7602
|
+
:domain_id,
|
7603
|
+
:domain_unit_id,
|
7604
|
+
:environment_id,
|
7605
|
+
:environment_user_role,
|
7606
|
+
:name,
|
7607
|
+
:physical_endpoints,
|
7608
|
+
:project_id,
|
7609
|
+
:props,
|
7610
|
+
:type)
|
7611
|
+
SENSITIVE = [:connection_credentials, :description]
|
7612
|
+
include Aws::Structure
|
7613
|
+
end
|
7614
|
+
|
6506
7615
|
# @!attribute [rw] domain_identifier
|
6507
7616
|
# The ID of the domain where the data product lives.
|
6508
7617
|
# @return [String]
|
@@ -6630,6 +7739,10 @@ module Aws::DataZone
|
|
6630
7739
|
# The configuration of the data source.
|
6631
7740
|
# @return [Types::DataSourceConfigurationOutput]
|
6632
7741
|
#
|
7742
|
+
# @!attribute [rw] connection_id
|
7743
|
+
# The ID of the connection.
|
7744
|
+
# @return [String]
|
7745
|
+
#
|
6633
7746
|
# @!attribute [rw] created_at
|
6634
7747
|
# The timestamp of when the data source was created.
|
6635
7748
|
# @return [Time]
|
@@ -6721,6 +7834,7 @@ module Aws::DataZone
|
|
6721
7834
|
class GetDataSourceOutput < Struct.new(
|
6722
7835
|
:asset_forms_output,
|
6723
7836
|
:configuration,
|
7837
|
+
:connection_id,
|
6724
7838
|
:created_at,
|
6725
7839
|
:description,
|
6726
7840
|
:domain_id,
|
@@ -6787,6 +7901,10 @@ module Aws::DataZone
|
|
6787
7901
|
# The ID of the data source run.
|
6788
7902
|
# @return [String]
|
6789
7903
|
#
|
7904
|
+
# @!attribute [rw] lineage_summary
|
7905
|
+
# The summary of the data lineage.
|
7906
|
+
# @return [Types::DataSourceRunLineageSummary]
|
7907
|
+
#
|
6790
7908
|
# @!attribute [rw] project_id
|
6791
7909
|
# The ID of the project in which this data source run occured.
|
6792
7910
|
# @return [String]
|
@@ -6824,6 +7942,7 @@ module Aws::DataZone
|
|
6824
7942
|
:domain_id,
|
6825
7943
|
:error_message,
|
6826
7944
|
:id,
|
7945
|
+
:lineage_summary,
|
6827
7946
|
:project_id,
|
6828
7947
|
:run_statistics_for_assets,
|
6829
7948
|
:started_at,
|
@@ -6864,6 +7983,10 @@ module Aws::DataZone
|
|
6864
7983
|
# created.
|
6865
7984
|
# @return [String]
|
6866
7985
|
#
|
7986
|
+
# @!attribute [rw] domain_version
|
7987
|
+
# The version of the domain.
|
7988
|
+
# @return [String]
|
7989
|
+
#
|
6867
7990
|
# @!attribute [rw] id
|
6868
7991
|
# The identifier of the specified Amazon DataZone domain.
|
6869
7992
|
# @return [String]
|
@@ -6890,6 +8013,10 @@ module Aws::DataZone
|
|
6890
8013
|
# The ID of the root domain in Amazon Datazone.
|
6891
8014
|
# @return [String]
|
6892
8015
|
#
|
8016
|
+
# @!attribute [rw] service_role
|
8017
|
+
# The service role of the domain.
|
8018
|
+
# @return [String]
|
8019
|
+
#
|
6893
8020
|
# @!attribute [rw] single_sign_on
|
6894
8021
|
# The single sing-on option of the specified Amazon DataZone domain.
|
6895
8022
|
# @return [Types::SingleSignOn]
|
@@ -6909,12 +8036,14 @@ module Aws::DataZone
|
|
6909
8036
|
:created_at,
|
6910
8037
|
:description,
|
6911
8038
|
:domain_execution_role,
|
8039
|
+
:domain_version,
|
6912
8040
|
:id,
|
6913
8041
|
:kms_key_identifier,
|
6914
8042
|
:last_updated_at,
|
6915
8043
|
:name,
|
6916
8044
|
:portal_url,
|
6917
8045
|
:root_domain_unit_id,
|
8046
|
+
:service_role,
|
6918
8047
|
:single_sign_on,
|
6919
8048
|
:status,
|
6920
8049
|
:tags)
|
@@ -7090,6 +8219,10 @@ module Aws::DataZone
|
|
7090
8219
|
# The ID of the blueprint.
|
7091
8220
|
# @return [String]
|
7092
8221
|
#
|
8222
|
+
# @!attribute [rw] environment_role_permission_boundary
|
8223
|
+
# The environment role permissions boundary.
|
8224
|
+
# @return [String]
|
8225
|
+
#
|
7093
8226
|
# @!attribute [rw] manage_access_role_arn
|
7094
8227
|
# The ARN of the manage access role with which this blueprint is
|
7095
8228
|
# created.
|
@@ -7119,6 +8252,7 @@ module Aws::DataZone
|
|
7119
8252
|
:domain_id,
|
7120
8253
|
:enabled_regions,
|
7121
8254
|
:environment_blueprint_id,
|
8255
|
+
:environment_role_permission_boundary,
|
7122
8256
|
:manage_access_role_arn,
|
7123
8257
|
:provisioning_configurations,
|
7124
8258
|
:provisioning_role_arn,
|
@@ -7801,134 +8935,277 @@ module Aws::DataZone
|
|
7801
8935
|
end
|
7802
8936
|
|
7803
8937
|
# @!attribute [rw] domain_identifier
|
7804
|
-
# The ID of the domain
|
8938
|
+
# The ID of the domain.
|
7805
8939
|
# @return [String]
|
7806
8940
|
#
|
7807
|
-
# @!attribute [rw] event_timestamp
|
7808
|
-
# The event time stamp for which you want to get the data lineage
|
7809
|
-
# node.
|
7810
|
-
# @return [Time]
|
7811
|
-
#
|
7812
8941
|
# @!attribute [rw] identifier
|
7813
|
-
# The ID of the
|
7814
|
-
#
|
7815
|
-
# Both, a lineage node identifier generated by Amazon DataZone and a
|
7816
|
-
# `sourceIdentifier` of the lineage node are supported. If
|
7817
|
-
# `sourceIdentifier` is greater than 1800 characters, you can use
|
7818
|
-
# lineage node identifier generated by Amazon DataZone to get the node
|
7819
|
-
# details.
|
8942
|
+
# The ID of the job run.
|
7820
8943
|
# @return [String]
|
7821
8944
|
#
|
7822
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/
|
8945
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetJobRunInput AWS API Documentation
|
7823
8946
|
#
|
7824
|
-
class
|
8947
|
+
class GetJobRunInput < Struct.new(
|
7825
8948
|
:domain_identifier,
|
7826
|
-
:event_timestamp,
|
7827
8949
|
:identifier)
|
7828
8950
|
SENSITIVE = []
|
7829
8951
|
include Aws::Structure
|
7830
8952
|
end
|
7831
8953
|
|
7832
8954
|
# @!attribute [rw] created_at
|
7833
|
-
# The timestamp
|
8955
|
+
# The timestamp of when the job run was created.
|
7834
8956
|
# @return [Time]
|
7835
8957
|
#
|
7836
8958
|
# @!attribute [rw] created_by
|
7837
|
-
# The user who created the
|
8959
|
+
# The user who created the job run.
|
7838
8960
|
# @return [String]
|
7839
8961
|
#
|
7840
|
-
# @!attribute [rw]
|
7841
|
-
# The
|
7842
|
-
# @return [
|
8962
|
+
# @!attribute [rw] details
|
8963
|
+
# The details of the job run.
|
8964
|
+
# @return [Types::JobRunDetails]
|
7843
8965
|
#
|
7844
8966
|
# @!attribute [rw] domain_id
|
7845
|
-
# The ID of the domain
|
8967
|
+
# The ID of the domain.
|
7846
8968
|
# @return [String]
|
7847
8969
|
#
|
7848
|
-
# @!attribute [rw]
|
7849
|
-
# The
|
7850
|
-
# @return [Array<Types::LineageNodeReference>]
|
7851
|
-
#
|
7852
|
-
# @!attribute [rw] event_timestamp
|
7853
|
-
# The timestamp of the event described in the data lineage node.
|
8970
|
+
# @!attribute [rw] end_time
|
8971
|
+
# The timestamp of when the job run ended.
|
7854
8972
|
# @return [Time]
|
7855
8973
|
#
|
7856
|
-
# @!attribute [rw]
|
7857
|
-
# The
|
7858
|
-
# @return [
|
8974
|
+
# @!attribute [rw] error
|
8975
|
+
# The error generated if the action is not completed successfully.
|
8976
|
+
# @return [Types::JobRunError]
|
7859
8977
|
#
|
7860
8978
|
# @!attribute [rw] id
|
7861
|
-
# The ID of the
|
7862
|
-
# @return [String]
|
7863
|
-
#
|
7864
|
-
# @!attribute [rw] name
|
7865
|
-
# The name of the data lineage node.
|
8979
|
+
# The ID of the job run.
|
7866
8980
|
# @return [String]
|
7867
8981
|
#
|
7868
|
-
# @!attribute [rw]
|
7869
|
-
# The
|
8982
|
+
# @!attribute [rw] job_id
|
8983
|
+
# The ID of the job run.
|
7870
8984
|
# @return [String]
|
7871
8985
|
#
|
7872
|
-
# @!attribute [rw]
|
7873
|
-
# The
|
8986
|
+
# @!attribute [rw] job_type
|
8987
|
+
# The type of the job run.
|
7874
8988
|
# @return [String]
|
7875
8989
|
#
|
7876
|
-
# @!attribute [rw]
|
7877
|
-
# The
|
8990
|
+
# @!attribute [rw] run_mode
|
8991
|
+
# The mode of the job run.
|
7878
8992
|
# @return [String]
|
7879
8993
|
#
|
7880
|
-
# @!attribute [rw]
|
7881
|
-
# The timestamp
|
8994
|
+
# @!attribute [rw] start_time
|
8995
|
+
# The timestamp of when the job run started.
|
7882
8996
|
# @return [Time]
|
7883
8997
|
#
|
7884
|
-
# @!attribute [rw]
|
7885
|
-
# The
|
8998
|
+
# @!attribute [rw] status
|
8999
|
+
# The status of the job run.
|
7886
9000
|
# @return [String]
|
7887
9001
|
#
|
7888
|
-
#
|
7889
|
-
# The upstream nodes of the specified data lineage node.
|
7890
|
-
# @return [Array<Types::LineageNodeReference>]
|
7891
|
-
#
|
7892
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetLineageNodeOutput AWS API Documentation
|
9002
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetJobRunOutput AWS API Documentation
|
7893
9003
|
#
|
7894
|
-
class
|
9004
|
+
class GetJobRunOutput < Struct.new(
|
7895
9005
|
:created_at,
|
7896
9006
|
:created_by,
|
7897
|
-
:
|
9007
|
+
:details,
|
7898
9008
|
:domain_id,
|
7899
|
-
:
|
7900
|
-
:
|
7901
|
-
:forms_output,
|
9009
|
+
:end_time,
|
9010
|
+
:error,
|
7902
9011
|
:id,
|
7903
|
-
:
|
7904
|
-
:
|
7905
|
-
:
|
7906
|
-
:
|
7907
|
-
:
|
7908
|
-
:updated_by,
|
7909
|
-
:upstream_nodes)
|
9012
|
+
:job_id,
|
9013
|
+
:job_type,
|
9014
|
+
:run_mode,
|
9015
|
+
:start_time,
|
9016
|
+
:status)
|
7910
9017
|
SENSITIVE = []
|
7911
9018
|
include Aws::Structure
|
7912
9019
|
end
|
7913
9020
|
|
7914
9021
|
# @!attribute [rw] domain_identifier
|
7915
|
-
# The ID of the
|
9022
|
+
# The ID of the domain.
|
7916
9023
|
# @return [String]
|
7917
9024
|
#
|
7918
9025
|
# @!attribute [rw] identifier
|
7919
|
-
# The ID of the
|
7920
|
-
# @return [String]
|
7921
|
-
#
|
7922
|
-
# @!attribute [rw] listing_revision
|
7923
|
-
# The revision of the listing.
|
9026
|
+
# The ID of the lineage event.
|
7924
9027
|
# @return [String]
|
7925
9028
|
#
|
7926
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/
|
9029
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetLineageEventInput AWS API Documentation
|
7927
9030
|
#
|
7928
|
-
class
|
9031
|
+
class GetLineageEventInput < Struct.new(
|
7929
9032
|
:domain_identifier,
|
7930
|
-
:identifier
|
7931
|
-
|
9033
|
+
:identifier)
|
9034
|
+
SENSITIVE = []
|
9035
|
+
include Aws::Structure
|
9036
|
+
end
|
9037
|
+
|
9038
|
+
# @!attribute [rw] created_at
|
9039
|
+
# The timestamp of when the lineage event was created.
|
9040
|
+
# @return [Time]
|
9041
|
+
#
|
9042
|
+
# @!attribute [rw] created_by
|
9043
|
+
# The user who created the lineage event.
|
9044
|
+
# @return [String]
|
9045
|
+
#
|
9046
|
+
# @!attribute [rw] domain_id
|
9047
|
+
# The ID of the domain.
|
9048
|
+
# @return [String]
|
9049
|
+
#
|
9050
|
+
# @!attribute [rw] event
|
9051
|
+
# The lineage event details.
|
9052
|
+
# @return [String]
|
9053
|
+
#
|
9054
|
+
# @!attribute [rw] event_time
|
9055
|
+
# The time of the lineage event.
|
9056
|
+
# @return [Time]
|
9057
|
+
#
|
9058
|
+
# @!attribute [rw] id
|
9059
|
+
# The ID of the lineage event.
|
9060
|
+
# @return [String]
|
9061
|
+
#
|
9062
|
+
# @!attribute [rw] processing_status
|
9063
|
+
# The progressing status of the lineage event.
|
9064
|
+
# @return [String]
|
9065
|
+
#
|
9066
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetLineageEventOutput AWS API Documentation
|
9067
|
+
#
|
9068
|
+
class GetLineageEventOutput < Struct.new(
|
9069
|
+
:created_at,
|
9070
|
+
:created_by,
|
9071
|
+
:domain_id,
|
9072
|
+
:event,
|
9073
|
+
:event_time,
|
9074
|
+
:id,
|
9075
|
+
:processing_status)
|
9076
|
+
SENSITIVE = [:event]
|
9077
|
+
include Aws::Structure
|
9078
|
+
end
|
9079
|
+
|
9080
|
+
# @!attribute [rw] domain_identifier
|
9081
|
+
# The ID of the domain in which you want to get the data lineage node.
|
9082
|
+
# @return [String]
|
9083
|
+
#
|
9084
|
+
# @!attribute [rw] event_timestamp
|
9085
|
+
# The event time stamp for which you want to get the data lineage
|
9086
|
+
# node.
|
9087
|
+
# @return [Time]
|
9088
|
+
#
|
9089
|
+
# @!attribute [rw] identifier
|
9090
|
+
# The ID of the data lineage node that you want to get.
|
9091
|
+
#
|
9092
|
+
# Both, a lineage node identifier generated by Amazon DataZone and a
|
9093
|
+
# `sourceIdentifier` of the lineage node are supported. If
|
9094
|
+
# `sourceIdentifier` is greater than 1800 characters, you can use
|
9095
|
+
# lineage node identifier generated by Amazon DataZone to get the node
|
9096
|
+
# details.
|
9097
|
+
# @return [String]
|
9098
|
+
#
|
9099
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetLineageNodeInput AWS API Documentation
|
9100
|
+
#
|
9101
|
+
class GetLineageNodeInput < Struct.new(
|
9102
|
+
:domain_identifier,
|
9103
|
+
:event_timestamp,
|
9104
|
+
:identifier)
|
9105
|
+
SENSITIVE = []
|
9106
|
+
include Aws::Structure
|
9107
|
+
end
|
9108
|
+
|
9109
|
+
# @!attribute [rw] created_at
|
9110
|
+
# The timestamp at which the data lineage node was created.
|
9111
|
+
# @return [Time]
|
9112
|
+
#
|
9113
|
+
# @!attribute [rw] created_by
|
9114
|
+
# The user who created the data lineage node.
|
9115
|
+
# @return [String]
|
9116
|
+
#
|
9117
|
+
# @!attribute [rw] description
|
9118
|
+
# The description of the data lineage node.
|
9119
|
+
# @return [String]
|
9120
|
+
#
|
9121
|
+
# @!attribute [rw] domain_id
|
9122
|
+
# The ID of the domain where you're getting the data lineage node.
|
9123
|
+
# @return [String]
|
9124
|
+
#
|
9125
|
+
# @!attribute [rw] downstream_nodes
|
9126
|
+
# The downsteam nodes of the specified data lineage node.
|
9127
|
+
# @return [Array<Types::LineageNodeReference>]
|
9128
|
+
#
|
9129
|
+
# @!attribute [rw] event_timestamp
|
9130
|
+
# The timestamp of the event described in the data lineage node.
|
9131
|
+
# @return [Time]
|
9132
|
+
#
|
9133
|
+
# @!attribute [rw] forms_output
|
9134
|
+
# The metadata of the specified data lineage node.
|
9135
|
+
# @return [Array<Types::FormOutput>]
|
9136
|
+
#
|
9137
|
+
# @!attribute [rw] id
|
9138
|
+
# The ID of the data lineage node.
|
9139
|
+
# @return [String]
|
9140
|
+
#
|
9141
|
+
# @!attribute [rw] name
|
9142
|
+
# The name of the data lineage node.
|
9143
|
+
# @return [String]
|
9144
|
+
#
|
9145
|
+
# @!attribute [rw] source_identifier
|
9146
|
+
# The source identifier of the data lineage node.
|
9147
|
+
# @return [String]
|
9148
|
+
#
|
9149
|
+
# @!attribute [rw] type_name
|
9150
|
+
# The name of the type of the specified data lineage node.
|
9151
|
+
# @return [String]
|
9152
|
+
#
|
9153
|
+
# @!attribute [rw] type_revision
|
9154
|
+
# The revision type of the specified data lineage node.
|
9155
|
+
# @return [String]
|
9156
|
+
#
|
9157
|
+
# @!attribute [rw] updated_at
|
9158
|
+
# The timestamp at which the data lineage node was updated.
|
9159
|
+
# @return [Time]
|
9160
|
+
#
|
9161
|
+
# @!attribute [rw] updated_by
|
9162
|
+
# The user who updated the data lineage node.
|
9163
|
+
# @return [String]
|
9164
|
+
#
|
9165
|
+
# @!attribute [rw] upstream_nodes
|
9166
|
+
# The upstream nodes of the specified data lineage node.
|
9167
|
+
# @return [Array<Types::LineageNodeReference>]
|
9168
|
+
#
|
9169
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetLineageNodeOutput AWS API Documentation
|
9170
|
+
#
|
9171
|
+
class GetLineageNodeOutput < Struct.new(
|
9172
|
+
:created_at,
|
9173
|
+
:created_by,
|
9174
|
+
:description,
|
9175
|
+
:domain_id,
|
9176
|
+
:downstream_nodes,
|
9177
|
+
:event_timestamp,
|
9178
|
+
:forms_output,
|
9179
|
+
:id,
|
9180
|
+
:name,
|
9181
|
+
:source_identifier,
|
9182
|
+
:type_name,
|
9183
|
+
:type_revision,
|
9184
|
+
:updated_at,
|
9185
|
+
:updated_by,
|
9186
|
+
:upstream_nodes)
|
9187
|
+
SENSITIVE = []
|
9188
|
+
include Aws::Structure
|
9189
|
+
end
|
9190
|
+
|
9191
|
+
# @!attribute [rw] domain_identifier
|
9192
|
+
# The ID of the Amazon DataZone domain.
|
9193
|
+
# @return [String]
|
9194
|
+
#
|
9195
|
+
# @!attribute [rw] identifier
|
9196
|
+
# The ID of the listing.
|
9197
|
+
# @return [String]
|
9198
|
+
#
|
9199
|
+
# @!attribute [rw] listing_revision
|
9200
|
+
# The revision of the listing.
|
9201
|
+
# @return [String]
|
9202
|
+
#
|
9203
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetListingInput AWS API Documentation
|
9204
|
+
#
|
9205
|
+
class GetListingInput < Struct.new(
|
9206
|
+
:domain_identifier,
|
9207
|
+
:identifier,
|
9208
|
+
:listing_revision)
|
7932
9209
|
SENSITIVE = []
|
7933
9210
|
include Aws::Structure
|
7934
9211
|
end
|
@@ -8099,6 +9376,10 @@ module Aws::DataZone
|
|
8099
9376
|
# The ID of the domain unit.
|
8100
9377
|
# @return [String]
|
8101
9378
|
#
|
9379
|
+
# @!attribute [rw] environment_deployment_details
|
9380
|
+
# The environment deployment status of a project.
|
9381
|
+
# @return [Types::EnvironmentDeploymentDetails]
|
9382
|
+
#
|
8102
9383
|
# @!attribute [rw] failure_reasons
|
8103
9384
|
# Specifies the error message that is returned if the operation cannot
|
8104
9385
|
# be successfully completed.
|
@@ -8120,10 +9401,18 @@ module Aws::DataZone
|
|
8120
9401
|
# The name of the project.
|
8121
9402
|
# @return [String]
|
8122
9403
|
#
|
9404
|
+
# @!attribute [rw] project_profile_id
|
9405
|
+
# The ID of the project profile of a project.
|
9406
|
+
# @return [String]
|
9407
|
+
#
|
8123
9408
|
# @!attribute [rw] project_status
|
8124
9409
|
# The status of the project.
|
8125
9410
|
# @return [String]
|
8126
9411
|
#
|
9412
|
+
# @!attribute [rw] user_parameters
|
9413
|
+
# The user parameters of a project.
|
9414
|
+
# @return [Array<Types::EnvironmentConfigurationUserParameter>]
|
9415
|
+
#
|
8127
9416
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetProjectOutput AWS API Documentation
|
8128
9417
|
#
|
8129
9418
|
class GetProjectOutput < Struct.new(
|
@@ -8132,12 +9421,89 @@ module Aws::DataZone
|
|
8132
9421
|
:description,
|
8133
9422
|
:domain_id,
|
8134
9423
|
:domain_unit_id,
|
9424
|
+
:environment_deployment_details,
|
8135
9425
|
:failure_reasons,
|
8136
9426
|
:glossary_terms,
|
8137
9427
|
:id,
|
8138
9428
|
:last_updated_at,
|
8139
9429
|
:name,
|
8140
|
-
:
|
9430
|
+
:project_profile_id,
|
9431
|
+
:project_status,
|
9432
|
+
:user_parameters)
|
9433
|
+
SENSITIVE = [:description, :name]
|
9434
|
+
include Aws::Structure
|
9435
|
+
end
|
9436
|
+
|
9437
|
+
# @!attribute [rw] domain_identifier
|
9438
|
+
# The ID of the domain.
|
9439
|
+
# @return [String]
|
9440
|
+
#
|
9441
|
+
# @!attribute [rw] identifier
|
9442
|
+
# The ID of the project profile.
|
9443
|
+
# @return [String]
|
9444
|
+
#
|
9445
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetProjectProfileInput AWS API Documentation
|
9446
|
+
#
|
9447
|
+
class GetProjectProfileInput < Struct.new(
|
9448
|
+
:domain_identifier,
|
9449
|
+
:identifier)
|
9450
|
+
SENSITIVE = []
|
9451
|
+
include Aws::Structure
|
9452
|
+
end
|
9453
|
+
|
9454
|
+
# @!attribute [rw] created_at
|
9455
|
+
# The timestamp of when the project profile was created.
|
9456
|
+
# @return [Time]
|
9457
|
+
#
|
9458
|
+
# @!attribute [rw] created_by
|
9459
|
+
# The user who created the project profile.
|
9460
|
+
# @return [String]
|
9461
|
+
#
|
9462
|
+
# @!attribute [rw] description
|
9463
|
+
# The description of the project profile.
|
9464
|
+
# @return [String]
|
9465
|
+
#
|
9466
|
+
# @!attribute [rw] domain_id
|
9467
|
+
# The ID of the domain of the project profile.
|
9468
|
+
# @return [String]
|
9469
|
+
#
|
9470
|
+
# @!attribute [rw] domain_unit_id
|
9471
|
+
# The ID of the domain unit of the project profile.
|
9472
|
+
# @return [String]
|
9473
|
+
#
|
9474
|
+
# @!attribute [rw] environment_configurations
|
9475
|
+
# The environment configurations of the project profile.
|
9476
|
+
# @return [Array<Types::EnvironmentConfiguration>]
|
9477
|
+
#
|
9478
|
+
# @!attribute [rw] id
|
9479
|
+
# The ID of the project profile.
|
9480
|
+
# @return [String]
|
9481
|
+
#
|
9482
|
+
# @!attribute [rw] last_updated_at
|
9483
|
+
# The timestamp of when project profile was last updated.
|
9484
|
+
# @return [Time]
|
9485
|
+
#
|
9486
|
+
# @!attribute [rw] name
|
9487
|
+
# The name of the project profile.
|
9488
|
+
# @return [String]
|
9489
|
+
#
|
9490
|
+
# @!attribute [rw] status
|
9491
|
+
# The status of the project profile.
|
9492
|
+
# @return [String]
|
9493
|
+
#
|
9494
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetProjectProfileOutput AWS API Documentation
|
9495
|
+
#
|
9496
|
+
class GetProjectProfileOutput < Struct.new(
|
9497
|
+
:created_at,
|
9498
|
+
:created_by,
|
9499
|
+
:description,
|
9500
|
+
:domain_id,
|
9501
|
+
:domain_unit_id,
|
9502
|
+
:environment_configurations,
|
9503
|
+
:id,
|
9504
|
+
:last_updated_at,
|
9505
|
+
:name,
|
9506
|
+
:status)
|
8141
9507
|
SENSITIVE = [:description, :name]
|
8142
9508
|
include Aws::Structure
|
8143
9509
|
end
|
@@ -8865,45 +10231,336 @@ module Aws::DataZone
|
|
8865
10231
|
include Aws::Structure
|
8866
10232
|
end
|
8867
10233
|
|
8868
|
-
# The
|
10234
|
+
# The Amazon Web Services Glue connection.
|
8869
10235
|
#
|
8870
|
-
# @!attribute [rw]
|
8871
|
-
#
|
8872
|
-
#
|
8873
|
-
# @return [
|
10236
|
+
# @!attribute [rw] athena_properties
|
10237
|
+
# The Amazon Athena properties of the Amazon Web Services Glue
|
10238
|
+
# connection.
|
10239
|
+
# @return [Hash<String,String>]
|
8874
10240
|
#
|
8875
|
-
# @!attribute [rw]
|
8876
|
-
# The
|
8877
|
-
#
|
8878
|
-
# @return [
|
10241
|
+
# @!attribute [rw] authentication_configuration
|
10242
|
+
# The authentication configuration of the Amazon Web Services Glue
|
10243
|
+
# connection.
|
10244
|
+
# @return [Types::AuthenticationConfiguration]
|
8879
10245
|
#
|
8880
|
-
# @!attribute [rw]
|
8881
|
-
# The
|
8882
|
-
#
|
8883
|
-
# @return [Array<
|
10246
|
+
# @!attribute [rw] compatible_compute_environments
|
10247
|
+
# The compatible compute environments of the Amazon Web Services Glue
|
10248
|
+
# connection.
|
10249
|
+
# @return [Array<String>]
|
8884
10250
|
#
|
8885
|
-
#
|
10251
|
+
# @!attribute [rw] connection_properties
|
10252
|
+
# The properties of the Amazon Web Services Glue connection.
|
10253
|
+
# @return [Hash<String,String>]
|
8886
10254
|
#
|
8887
|
-
|
8888
|
-
|
8889
|
-
|
8890
|
-
|
8891
|
-
SENSITIVE = []
|
8892
|
-
include Aws::Structure
|
8893
|
-
end
|
8894
|
-
|
8895
|
-
# The configuration details of the Amazon Web Services Glue data source.
|
10255
|
+
# @!attribute [rw] connection_schema_version
|
10256
|
+
# The connection schema version of the Amazon Web Services Glue
|
10257
|
+
# connection.
|
10258
|
+
# @return [Integer]
|
8896
10259
|
#
|
8897
|
-
# @!attribute [rw]
|
8898
|
-
# The Amazon Web Services
|
8899
|
-
# details of the Amazon Web Services Glue data source.
|
10260
|
+
# @!attribute [rw] connection_type
|
10261
|
+
# The type of the Amazon Web Services Glue connection.
|
8900
10262
|
# @return [String]
|
8901
10263
|
#
|
8902
|
-
# @!attribute [rw]
|
8903
|
-
#
|
8904
|
-
#
|
10264
|
+
# @!attribute [rw] creation_time
|
10265
|
+
# The creation time of the Amazon Web Services Glue connection.
|
10266
|
+
# @return [Time]
|
10267
|
+
#
|
10268
|
+
# @!attribute [rw] description
|
10269
|
+
# The description of the Amazon Web Services Glue connection.
|
10270
|
+
# @return [String]
|
10271
|
+
#
|
10272
|
+
# @!attribute [rw] last_connection_validation_time
|
10273
|
+
# The last validation time of the Amazon Web Services Glue connection.
|
10274
|
+
# @return [Time]
|
10275
|
+
#
|
10276
|
+
# @!attribute [rw] last_updated_by
|
10277
|
+
# The user who last updated the Amazon Web Services Glue connection.
|
10278
|
+
# @return [String]
|
10279
|
+
#
|
10280
|
+
# @!attribute [rw] last_updated_time
|
10281
|
+
# The timestamp at which the Amazon Web Services Glue connection was
|
10282
|
+
# last updated.
|
10283
|
+
# @return [Time]
|
10284
|
+
#
|
10285
|
+
# @!attribute [rw] match_criteria
|
10286
|
+
# The match criteria of the Amazon Web Services Glue connection.
|
10287
|
+
# @return [Array<String>]
|
10288
|
+
#
|
10289
|
+
# @!attribute [rw] name
|
10290
|
+
# The name of the Amazon Web Services Glue connection.
|
10291
|
+
# @return [String]
|
10292
|
+
#
|
10293
|
+
# @!attribute [rw] physical_connection_requirements
|
10294
|
+
# The physical connection requirements of the Amazon Web Services Glue
|
10295
|
+
# connection.
|
10296
|
+
# @return [Types::PhysicalConnectionRequirements]
|
10297
|
+
#
|
10298
|
+
# @!attribute [rw] python_properties
|
10299
|
+
# The Python properties of the Amazon Web Services Glue connection.
|
10300
|
+
# @return [Hash<String,String>]
|
10301
|
+
#
|
10302
|
+
# @!attribute [rw] spark_properties
|
10303
|
+
# The Spark properties of the Amazon Web Services Glue connection.
|
10304
|
+
# @return [Hash<String,String>]
|
10305
|
+
#
|
10306
|
+
# @!attribute [rw] status
|
10307
|
+
# The status of the Amazon Web Services Glue connection.
|
10308
|
+
# @return [String]
|
10309
|
+
#
|
10310
|
+
# @!attribute [rw] status_reason
|
10311
|
+
# The status reason of the Amazon Web Services Glue connection.
|
10312
|
+
# @return [String]
|
10313
|
+
#
|
10314
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GlueConnection AWS API Documentation
|
10315
|
+
#
|
10316
|
+
class GlueConnection < Struct.new(
|
10317
|
+
:athena_properties,
|
10318
|
+
:authentication_configuration,
|
10319
|
+
:compatible_compute_environments,
|
10320
|
+
:connection_properties,
|
10321
|
+
:connection_schema_version,
|
10322
|
+
:connection_type,
|
10323
|
+
:creation_time,
|
10324
|
+
:description,
|
10325
|
+
:last_connection_validation_time,
|
10326
|
+
:last_updated_by,
|
10327
|
+
:last_updated_time,
|
10328
|
+
:match_criteria,
|
10329
|
+
:name,
|
10330
|
+
:physical_connection_requirements,
|
10331
|
+
:python_properties,
|
10332
|
+
:spark_properties,
|
10333
|
+
:status,
|
10334
|
+
:status_reason)
|
10335
|
+
SENSITIVE = []
|
10336
|
+
include Aws::Structure
|
10337
|
+
end
|
10338
|
+
|
10339
|
+
# The Amazon Web Services Glue connecton input.
|
10340
|
+
#
|
10341
|
+
# @!attribute [rw] athena_properties
|
10342
|
+
# The Amazon Athena properties of the Amazon Web Services Glue
|
10343
|
+
# connection.
|
10344
|
+
# @return [Hash<String,String>]
|
10345
|
+
#
|
10346
|
+
# @!attribute [rw] authentication_configuration
|
10347
|
+
# The authentication configuration of the Amazon Web Services Glue
|
10348
|
+
# connection.
|
10349
|
+
# @return [Types::AuthenticationConfigurationInput]
|
10350
|
+
#
|
10351
|
+
# @!attribute [rw] connection_properties
|
10352
|
+
# The connection properties of the Amazon Web Services Glue
|
10353
|
+
# connection.
|
10354
|
+
# @return [Hash<String,String>]
|
10355
|
+
#
|
10356
|
+
# @!attribute [rw] connection_type
|
10357
|
+
# The connection type of the Amazon Web Services Glue connection.
|
10358
|
+
# @return [String]
|
10359
|
+
#
|
10360
|
+
# @!attribute [rw] description
|
10361
|
+
# The description of the Amazon Web Services Glue connection.
|
10362
|
+
# @return [String]
|
10363
|
+
#
|
10364
|
+
# @!attribute [rw] match_criteria
|
10365
|
+
# The match criteria of the Amazon Web Services Glue connection.
|
10366
|
+
# @return [String]
|
10367
|
+
#
|
10368
|
+
# @!attribute [rw] name
|
10369
|
+
# The name of the Amazon Web Services Glue connection.
|
10370
|
+
# @return [String]
|
10371
|
+
#
|
10372
|
+
# @!attribute [rw] physical_connection_requirements
|
10373
|
+
# The physical connection requirements for the Amazon Web Services
|
10374
|
+
# Glue connection.
|
10375
|
+
# @return [Types::PhysicalConnectionRequirements]
|
10376
|
+
#
|
10377
|
+
# @!attribute [rw] python_properties
|
10378
|
+
# The Python properties of the Amazon Web Services Glue connection.
|
10379
|
+
# @return [Hash<String,String>]
|
10380
|
+
#
|
10381
|
+
# @!attribute [rw] spark_properties
|
10382
|
+
# The Spark properties of the Amazon Web Services Glue connection.
|
10383
|
+
# @return [Hash<String,String>]
|
10384
|
+
#
|
10385
|
+
# @!attribute [rw] validate_credentials
|
10386
|
+
# Speciefies whether to validate credentials of the Amazon Web
|
10387
|
+
# Services Glue connection.
|
8905
10388
|
# @return [Boolean]
|
8906
10389
|
#
|
10390
|
+
# @!attribute [rw] validate_for_compute_environments
|
10391
|
+
# Speciefies whether to validate for compute environments of the
|
10392
|
+
# Amazon Web Services Glue connection.
|
10393
|
+
# @return [Array<String>]
|
10394
|
+
#
|
10395
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GlueConnectionInput AWS API Documentation
|
10396
|
+
#
|
10397
|
+
class GlueConnectionInput < Struct.new(
|
10398
|
+
:athena_properties,
|
10399
|
+
:authentication_configuration,
|
10400
|
+
:connection_properties,
|
10401
|
+
:connection_type,
|
10402
|
+
:description,
|
10403
|
+
:match_criteria,
|
10404
|
+
:name,
|
10405
|
+
:physical_connection_requirements,
|
10406
|
+
:python_properties,
|
10407
|
+
:spark_properties,
|
10408
|
+
:validate_credentials,
|
10409
|
+
:validate_for_compute_environments)
|
10410
|
+
SENSITIVE = []
|
10411
|
+
include Aws::Structure
|
10412
|
+
end
|
10413
|
+
|
10414
|
+
# The Amazon Web Services Glue connection patch.
|
10415
|
+
#
|
10416
|
+
# @!attribute [rw] authentication_configuration
|
10417
|
+
# The authentication configuration of the Amazon Web Services Glue
|
10418
|
+
# connection patch.
|
10419
|
+
# @return [Types::AuthenticationConfigurationPatch]
|
10420
|
+
#
|
10421
|
+
# @!attribute [rw] connection_properties
|
10422
|
+
# The properties of the Amazon Web Services Glue connection patch.
|
10423
|
+
# @return [Hash<String,String>]
|
10424
|
+
#
|
10425
|
+
# @!attribute [rw] description
|
10426
|
+
# The description of the Amazon Web Services Glue connection patch.
|
10427
|
+
# @return [String]
|
10428
|
+
#
|
10429
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GlueConnectionPatch AWS API Documentation
|
10430
|
+
#
|
10431
|
+
class GlueConnectionPatch < Struct.new(
|
10432
|
+
:authentication_configuration,
|
10433
|
+
:connection_properties,
|
10434
|
+
:description)
|
10435
|
+
SENSITIVE = []
|
10436
|
+
include Aws::Structure
|
10437
|
+
end
|
10438
|
+
|
10439
|
+
# The GlueOAuth2 credentials of a connection.
|
10440
|
+
#
|
10441
|
+
# @!attribute [rw] access_token
|
10442
|
+
# The access token of a connection.
|
10443
|
+
# @return [String]
|
10444
|
+
#
|
10445
|
+
# @!attribute [rw] jwt_token
|
10446
|
+
# The jwt token of the connection.
|
10447
|
+
# @return [String]
|
10448
|
+
#
|
10449
|
+
# @!attribute [rw] refresh_token
|
10450
|
+
# The refresh token of the connection.
|
10451
|
+
# @return [String]
|
10452
|
+
#
|
10453
|
+
# @!attribute [rw] user_managed_client_application_client_secret
|
10454
|
+
# The user managed client application client secret of the connection.
|
10455
|
+
# @return [String]
|
10456
|
+
#
|
10457
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GlueOAuth2Credentials AWS API Documentation
|
10458
|
+
#
|
10459
|
+
class GlueOAuth2Credentials < Struct.new(
|
10460
|
+
:access_token,
|
10461
|
+
:jwt_token,
|
10462
|
+
:refresh_token,
|
10463
|
+
:user_managed_client_application_client_secret)
|
10464
|
+
SENSITIVE = []
|
10465
|
+
include Aws::Structure
|
10466
|
+
end
|
10467
|
+
|
10468
|
+
# The Amazon Web Services Glue properties of a connection.
|
10469
|
+
#
|
10470
|
+
# @!attribute [rw] glue_connection_input
|
10471
|
+
# The Amazon Web Services Glue connection.
|
10472
|
+
# @return [Types::GlueConnectionInput]
|
10473
|
+
#
|
10474
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GluePropertiesInput AWS API Documentation
|
10475
|
+
#
|
10476
|
+
class GluePropertiesInput < Struct.new(
|
10477
|
+
:glue_connection_input)
|
10478
|
+
SENSITIVE = []
|
10479
|
+
include Aws::Structure
|
10480
|
+
end
|
10481
|
+
|
10482
|
+
# The properties of the Amazon Web Services Glue connection.
|
10483
|
+
#
|
10484
|
+
# @!attribute [rw] error_message
|
10485
|
+
# The error message generated if the action is not completed
|
10486
|
+
# successfully.
|
10487
|
+
# @return [String]
|
10488
|
+
#
|
10489
|
+
# @!attribute [rw] status
|
10490
|
+
# The status of a connection.
|
10491
|
+
# @return [String]
|
10492
|
+
#
|
10493
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GluePropertiesOutput AWS API Documentation
|
10494
|
+
#
|
10495
|
+
class GluePropertiesOutput < Struct.new(
|
10496
|
+
:error_message,
|
10497
|
+
:status)
|
10498
|
+
SENSITIVE = []
|
10499
|
+
include Aws::Structure
|
10500
|
+
end
|
10501
|
+
|
10502
|
+
# The Amazon Web Services Glue properties patch of a connection.
|
10503
|
+
#
|
10504
|
+
# @!attribute [rw] glue_connection_input
|
10505
|
+
# The Amazon Web Services Glue properties patch of a connection.
|
10506
|
+
# @return [Types::GlueConnectionPatch]
|
10507
|
+
#
|
10508
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GluePropertiesPatch AWS API Documentation
|
10509
|
+
#
|
10510
|
+
class GluePropertiesPatch < Struct.new(
|
10511
|
+
:glue_connection_input)
|
10512
|
+
SENSITIVE = []
|
10513
|
+
include Aws::Structure
|
10514
|
+
end
|
10515
|
+
|
10516
|
+
# The configuration details of the Amazon Web Services Glue data source.
|
10517
|
+
#
|
10518
|
+
# @!attribute [rw] auto_import_data_quality_result
|
10519
|
+
# Specifies whether to automatically import data quality metrics as
|
10520
|
+
# part of the data source run.
|
10521
|
+
# @return [Boolean]
|
10522
|
+
#
|
10523
|
+
# @!attribute [rw] catalog_name
|
10524
|
+
# The catalog name in the Amazon Web Services Glue run configuration.
|
10525
|
+
# @return [String]
|
10526
|
+
#
|
10527
|
+
# @!attribute [rw] data_access_role
|
10528
|
+
# The data access role included in the configuration details of the
|
10529
|
+
# Amazon Web Services Glue data source.
|
10530
|
+
# @return [String]
|
10531
|
+
#
|
10532
|
+
# @!attribute [rw] relational_filter_configurations
|
10533
|
+
# The relational filter configurations included in the configuration
|
10534
|
+
# details of the Amazon Web Services Glue data source.
|
10535
|
+
# @return [Array<Types::RelationalFilterConfiguration>]
|
10536
|
+
#
|
10537
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GlueRunConfigurationInput AWS API Documentation
|
10538
|
+
#
|
10539
|
+
class GlueRunConfigurationInput < Struct.new(
|
10540
|
+
:auto_import_data_quality_result,
|
10541
|
+
:catalog_name,
|
10542
|
+
:data_access_role,
|
10543
|
+
:relational_filter_configurations)
|
10544
|
+
SENSITIVE = []
|
10545
|
+
include Aws::Structure
|
10546
|
+
end
|
10547
|
+
|
10548
|
+
# The configuration details of the Amazon Web Services Glue data source.
|
10549
|
+
#
|
10550
|
+
# @!attribute [rw] account_id
|
10551
|
+
# The Amazon Web Services account ID included in the configuration
|
10552
|
+
# details of the Amazon Web Services Glue data source.
|
10553
|
+
# @return [String]
|
10554
|
+
#
|
10555
|
+
# @!attribute [rw] auto_import_data_quality_result
|
10556
|
+
# Specifies whether to automatically import data quality metrics as
|
10557
|
+
# part of the data source run.
|
10558
|
+
# @return [Boolean]
|
10559
|
+
#
|
10560
|
+
# @!attribute [rw] catalog_name
|
10561
|
+
# The catalog name in the Amazon Web Services Glue run configuration.
|
10562
|
+
# @return [String]
|
10563
|
+
#
|
8907
10564
|
# @!attribute [rw] data_access_role
|
8908
10565
|
# The data access role included in the configuration details of the
|
8909
10566
|
# Amazon Web Services Glue data source.
|
@@ -8924,6 +10581,7 @@ module Aws::DataZone
|
|
8924
10581
|
class GlueRunConfigurationOutput < Struct.new(
|
8925
10582
|
:account_id,
|
8926
10583
|
:auto_import_data_quality_result,
|
10584
|
+
:catalog_name,
|
8927
10585
|
:data_access_role,
|
8928
10586
|
:region,
|
8929
10587
|
:relational_filter_configurations)
|
@@ -9091,6 +10749,96 @@ module Aws::DataZone
|
|
9091
10749
|
include Aws::Structure
|
9092
10750
|
end
|
9093
10751
|
|
10752
|
+
# The hyper pod properties of a Amazon Web Services Glue properties
|
10753
|
+
# patch.
|
10754
|
+
#
|
10755
|
+
# @!attribute [rw] cluster_name
|
10756
|
+
# The cluster name the hyper pod properties.
|
10757
|
+
# @return [String]
|
10758
|
+
#
|
10759
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/HyperPodPropertiesInput AWS API Documentation
|
10760
|
+
#
|
10761
|
+
class HyperPodPropertiesInput < Struct.new(
|
10762
|
+
:cluster_name)
|
10763
|
+
SENSITIVE = []
|
10764
|
+
include Aws::Structure
|
10765
|
+
end
|
10766
|
+
|
10767
|
+
# The hyper pod properties of a Amazon Web Services Glue properties
|
10768
|
+
# patch.
|
10769
|
+
#
|
10770
|
+
# @!attribute [rw] cluster_arn
|
10771
|
+
# The cluster ARN of the hyper pod properties.
|
10772
|
+
# @return [String]
|
10773
|
+
#
|
10774
|
+
# @!attribute [rw] cluster_name
|
10775
|
+
# The cluster name the hyper pod properties.
|
10776
|
+
# @return [String]
|
10777
|
+
#
|
10778
|
+
# @!attribute [rw] orchestrator
|
10779
|
+
# The orchestrator of the hyper pod properties.
|
10780
|
+
# @return [String]
|
10781
|
+
#
|
10782
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/HyperPodPropertiesOutput AWS API Documentation
|
10783
|
+
#
|
10784
|
+
class HyperPodPropertiesOutput < Struct.new(
|
10785
|
+
:cluster_arn,
|
10786
|
+
:cluster_name,
|
10787
|
+
:orchestrator)
|
10788
|
+
SENSITIVE = []
|
10789
|
+
include Aws::Structure
|
10790
|
+
end
|
10791
|
+
|
10792
|
+
# The IAM properties of a connection.
|
10793
|
+
#
|
10794
|
+
# @!attribute [rw] glue_lineage_sync_enabled
|
10795
|
+
# Specifies whether Amazon Web Services Glue lineage sync is enabled
|
10796
|
+
# for a connection.
|
10797
|
+
# @return [Boolean]
|
10798
|
+
#
|
10799
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/IamPropertiesInput AWS API Documentation
|
10800
|
+
#
|
10801
|
+
class IamPropertiesInput < Struct.new(
|
10802
|
+
:glue_lineage_sync_enabled)
|
10803
|
+
SENSITIVE = []
|
10804
|
+
include Aws::Structure
|
10805
|
+
end
|
10806
|
+
|
10807
|
+
# The IAM properties of a connection.
|
10808
|
+
#
|
10809
|
+
# @!attribute [rw] environment_id
|
10810
|
+
# The environment ID of the connection.
|
10811
|
+
# @return [String]
|
10812
|
+
#
|
10813
|
+
# @!attribute [rw] glue_lineage_sync_enabled
|
10814
|
+
# Specifies whether Amazon Web Services Glue lineage sync is enabled
|
10815
|
+
# for a connection.
|
10816
|
+
# @return [Boolean]
|
10817
|
+
#
|
10818
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/IamPropertiesOutput AWS API Documentation
|
10819
|
+
#
|
10820
|
+
class IamPropertiesOutput < Struct.new(
|
10821
|
+
:environment_id,
|
10822
|
+
:glue_lineage_sync_enabled)
|
10823
|
+
SENSITIVE = []
|
10824
|
+
include Aws::Structure
|
10825
|
+
end
|
10826
|
+
|
10827
|
+
# The IAM properties patch of a connection.
|
10828
|
+
#
|
10829
|
+
# @!attribute [rw] glue_lineage_sync_enabled
|
10830
|
+
# Specifies whether Amazon Web Services Glue lineage sync is enabled
|
10831
|
+
# for a connection.
|
10832
|
+
# @return [Boolean]
|
10833
|
+
#
|
10834
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/IamPropertiesPatch AWS API Documentation
|
10835
|
+
#
|
10836
|
+
class IamPropertiesPatch < Struct.new(
|
10837
|
+
:glue_lineage_sync_enabled)
|
10838
|
+
SENSITIVE = []
|
10839
|
+
include Aws::Structure
|
10840
|
+
end
|
10841
|
+
|
9094
10842
|
# The details of an IAM user profile in Amazon DataZone.
|
9095
10843
|
#
|
9096
10844
|
# @!attribute [rw] arn
|
@@ -9185,6 +10933,105 @@ module Aws::DataZone
|
|
9185
10933
|
include Aws::Structure
|
9186
10934
|
end
|
9187
10935
|
|
10936
|
+
# The details of a job run.
|
10937
|
+
#
|
10938
|
+
# @note JobRunDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of JobRunDetails corresponding to the set member.
|
10939
|
+
#
|
10940
|
+
# @!attribute [rw] lineage_run_details
|
10941
|
+
# The data lineage details of a job run.
|
10942
|
+
# @return [Types::LineageRunDetails]
|
10943
|
+
#
|
10944
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/JobRunDetails AWS API Documentation
|
10945
|
+
#
|
10946
|
+
class JobRunDetails < Struct.new(
|
10947
|
+
:lineage_run_details,
|
10948
|
+
:unknown)
|
10949
|
+
SENSITIVE = []
|
10950
|
+
include Aws::Structure
|
10951
|
+
include Aws::Structure::Union
|
10952
|
+
|
10953
|
+
class LineageRunDetails < JobRunDetails; end
|
10954
|
+
class Unknown < JobRunDetails; end
|
10955
|
+
end
|
10956
|
+
|
10957
|
+
# The job run error.
|
10958
|
+
#
|
10959
|
+
# @!attribute [rw] message
|
10960
|
+
# The job run error message.
|
10961
|
+
# @return [String]
|
10962
|
+
#
|
10963
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/JobRunError AWS API Documentation
|
10964
|
+
#
|
10965
|
+
class JobRunError < Struct.new(
|
10966
|
+
:message)
|
10967
|
+
SENSITIVE = []
|
10968
|
+
include Aws::Structure
|
10969
|
+
end
|
10970
|
+
|
10971
|
+
# The job run summary.
|
10972
|
+
#
|
10973
|
+
# @!attribute [rw] created_at
|
10974
|
+
# The timestamp at which job run was created.
|
10975
|
+
# @return [Time]
|
10976
|
+
#
|
10977
|
+
# @!attribute [rw] created_by
|
10978
|
+
# The user who created the job run.
|
10979
|
+
# @return [String]
|
10980
|
+
#
|
10981
|
+
# @!attribute [rw] domain_id
|
10982
|
+
# The domain ID of the job run.
|
10983
|
+
# @return [String]
|
10984
|
+
#
|
10985
|
+
# @!attribute [rw] end_time
|
10986
|
+
# The end time of a job run.
|
10987
|
+
# @return [Time]
|
10988
|
+
#
|
10989
|
+
# @!attribute [rw] error
|
10990
|
+
# The error of a job run.
|
10991
|
+
# @return [Types::JobRunError]
|
10992
|
+
#
|
10993
|
+
# @!attribute [rw] job_id
|
10994
|
+
# The job ID of a job run.
|
10995
|
+
# @return [String]
|
10996
|
+
#
|
10997
|
+
# @!attribute [rw] job_type
|
10998
|
+
# The job type of a job run.
|
10999
|
+
# @return [String]
|
11000
|
+
#
|
11001
|
+
# @!attribute [rw] run_id
|
11002
|
+
# The run ID of a job run.
|
11003
|
+
# @return [String]
|
11004
|
+
#
|
11005
|
+
# @!attribute [rw] run_mode
|
11006
|
+
# The run mode of a job run.
|
11007
|
+
# @return [String]
|
11008
|
+
#
|
11009
|
+
# @!attribute [rw] start_time
|
11010
|
+
# The start time of a job run.
|
11011
|
+
# @return [Time]
|
11012
|
+
#
|
11013
|
+
# @!attribute [rw] status
|
11014
|
+
# The status of a job run.
|
11015
|
+
# @return [String]
|
11016
|
+
#
|
11017
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/JobRunSummary AWS API Documentation
|
11018
|
+
#
|
11019
|
+
class JobRunSummary < Struct.new(
|
11020
|
+
:created_at,
|
11021
|
+
:created_by,
|
11022
|
+
:domain_id,
|
11023
|
+
:end_time,
|
11024
|
+
:error,
|
11025
|
+
:job_id,
|
11026
|
+
:job_type,
|
11027
|
+
:run_id,
|
11028
|
+
:run_mode,
|
11029
|
+
:start_time,
|
11030
|
+
:status)
|
11031
|
+
SENSITIVE = []
|
11032
|
+
include Aws::Structure
|
11033
|
+
end
|
11034
|
+
|
9188
11035
|
# The Lake Formation configuration of the Data Lake blueprint.
|
9189
11036
|
#
|
9190
11037
|
# @!attribute [rw] location_registration_exclude_s3_locations
|
@@ -9236,30 +11083,98 @@ module Aws::DataZone
|
|
9236
11083
|
# The value that might be less than or equal to an expression.
|
9237
11084
|
# @return [String]
|
9238
11085
|
#
|
9239
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LessThanOrEqualToExpression AWS API Documentation
|
11086
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LessThanOrEqualToExpression AWS API Documentation
|
11087
|
+
#
|
11088
|
+
class LessThanOrEqualToExpression < Struct.new(
|
11089
|
+
:column_name,
|
11090
|
+
:value)
|
11091
|
+
SENSITIVE = []
|
11092
|
+
include Aws::Structure
|
11093
|
+
end
|
11094
|
+
|
11095
|
+
# Specifies that a value is like the expression.
|
11096
|
+
#
|
11097
|
+
# @!attribute [rw] column_name
|
11098
|
+
# The name of the column.
|
11099
|
+
# @return [String]
|
11100
|
+
#
|
11101
|
+
# @!attribute [rw] value
|
11102
|
+
# The value that might be like the expression.
|
11103
|
+
# @return [String]
|
11104
|
+
#
|
11105
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LikeExpression AWS API Documentation
|
11106
|
+
#
|
11107
|
+
class LikeExpression < Struct.new(
|
11108
|
+
:column_name,
|
11109
|
+
:value)
|
11110
|
+
SENSITIVE = []
|
11111
|
+
include Aws::Structure
|
11112
|
+
end
|
11113
|
+
|
11114
|
+
# The data lineage event summary.
|
11115
|
+
#
|
11116
|
+
# @!attribute [rw] created_at
|
11117
|
+
# The timestamp at which data lineage event was created.
|
11118
|
+
# @return [Time]
|
11119
|
+
#
|
11120
|
+
# @!attribute [rw] created_by
|
11121
|
+
# The user who created the data lineage event.
|
11122
|
+
# @return [String]
|
11123
|
+
#
|
11124
|
+
# @!attribute [rw] domain_id
|
11125
|
+
# The domain ID of the lineage event.
|
11126
|
+
# @return [String]
|
11127
|
+
#
|
11128
|
+
# @!attribute [rw] event_summary
|
11129
|
+
# The summary of the data lineate event.
|
11130
|
+
# @return [Types::EventSummary]
|
11131
|
+
#
|
11132
|
+
# @!attribute [rw] event_time
|
11133
|
+
# The time of the data lineage event.
|
11134
|
+
# @return [Time]
|
11135
|
+
#
|
11136
|
+
# @!attribute [rw] id
|
11137
|
+
# The ID of the data lineage event.
|
11138
|
+
# @return [String]
|
11139
|
+
#
|
11140
|
+
# @!attribute [rw] processing_status
|
11141
|
+
# The processing status of the data lineage event.
|
11142
|
+
# @return [String]
|
11143
|
+
#
|
11144
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LineageEventSummary AWS API Documentation
|
9240
11145
|
#
|
9241
|
-
class
|
9242
|
-
:
|
9243
|
-
:
|
11146
|
+
class LineageEventSummary < Struct.new(
|
11147
|
+
:created_at,
|
11148
|
+
:created_by,
|
11149
|
+
:domain_id,
|
11150
|
+
:event_summary,
|
11151
|
+
:event_time,
|
11152
|
+
:id,
|
11153
|
+
:processing_status)
|
9244
11154
|
SENSITIVE = []
|
9245
11155
|
include Aws::Structure
|
9246
11156
|
end
|
9247
11157
|
|
9248
|
-
#
|
11158
|
+
# The data lineage information.
|
9249
11159
|
#
|
9250
|
-
# @!attribute [rw]
|
9251
|
-
# The
|
11160
|
+
# @!attribute [rw] error_message
|
11161
|
+
# The data lineage error message.
|
9252
11162
|
# @return [String]
|
9253
11163
|
#
|
9254
|
-
# @!attribute [rw]
|
9255
|
-
# The
|
11164
|
+
# @!attribute [rw] event_id
|
11165
|
+
# The data lineage event ID.
|
9256
11166
|
# @return [String]
|
9257
11167
|
#
|
9258
|
-
#
|
11168
|
+
# @!attribute [rw] event_status
|
11169
|
+
# The data lineage event status.
|
11170
|
+
# @return [String]
|
9259
11171
|
#
|
9260
|
-
|
9261
|
-
|
9262
|
-
|
11172
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LineageInfo AWS API Documentation
|
11173
|
+
#
|
11174
|
+
class LineageInfo < Struct.new(
|
11175
|
+
:error_message,
|
11176
|
+
:event_id,
|
11177
|
+
:event_status)
|
9263
11178
|
SENSITIVE = []
|
9264
11179
|
include Aws::Structure
|
9265
11180
|
end
|
@@ -9406,6 +11321,73 @@ module Aws::DataZone
|
|
9406
11321
|
include Aws::Structure
|
9407
11322
|
end
|
9408
11323
|
|
11324
|
+
# The data lineage run details.
|
11325
|
+
#
|
11326
|
+
# @!attribute [rw] sql_query_run_details
|
11327
|
+
# The SQL query run details of a data lineage run.
|
11328
|
+
# @return [Types::LineageSqlQueryRunDetails]
|
11329
|
+
#
|
11330
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LineageRunDetails AWS API Documentation
|
11331
|
+
#
|
11332
|
+
class LineageRunDetails < Struct.new(
|
11333
|
+
:sql_query_run_details)
|
11334
|
+
SENSITIVE = []
|
11335
|
+
include Aws::Structure
|
11336
|
+
end
|
11337
|
+
|
11338
|
+
# The SQL query run details of a data lineage run.
|
11339
|
+
#
|
11340
|
+
# @!attribute [rw] error_messages
|
11341
|
+
# The error message of the SQL query run details of a data lineage
|
11342
|
+
# run.
|
11343
|
+
# @return [Array<String>]
|
11344
|
+
#
|
11345
|
+
# @!attribute [rw] num_queries_failed
|
11346
|
+
# The number of queries that failed in the SQL query run details of a
|
11347
|
+
# data lineage run.
|
11348
|
+
# @return [Integer]
|
11349
|
+
#
|
11350
|
+
# @!attribute [rw] query_end_time
|
11351
|
+
# The query end time in the SQL query run details of a data lineage
|
11352
|
+
# run.
|
11353
|
+
# @return [Time]
|
11354
|
+
#
|
11355
|
+
# @!attribute [rw] query_start_time
|
11356
|
+
# The query start time in the SQL query run details of a data lineage
|
11357
|
+
# run.
|
11358
|
+
# @return [Time]
|
11359
|
+
#
|
11360
|
+
# @!attribute [rw] total_queries_processed
|
11361
|
+
# The total queries processed in the SQL query run details of a data
|
11362
|
+
# lineage run.
|
11363
|
+
# @return [Integer]
|
11364
|
+
#
|
11365
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LineageSqlQueryRunDetails AWS API Documentation
|
11366
|
+
#
|
11367
|
+
class LineageSqlQueryRunDetails < Struct.new(
|
11368
|
+
:error_messages,
|
11369
|
+
:num_queries_failed,
|
11370
|
+
:query_end_time,
|
11371
|
+
:query_start_time,
|
11372
|
+
:total_queries_processed)
|
11373
|
+
SENSITIVE = []
|
11374
|
+
include Aws::Structure
|
11375
|
+
end
|
11376
|
+
|
11377
|
+
# The lineage sync schedule.
|
11378
|
+
#
|
11379
|
+
# @!attribute [rw] schedule
|
11380
|
+
# The lineage sync schedule.
|
11381
|
+
# @return [String]
|
11382
|
+
#
|
11383
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LineageSyncSchedule AWS API Documentation
|
11384
|
+
#
|
11385
|
+
class LineageSyncSchedule < Struct.new(
|
11386
|
+
:schedule)
|
11387
|
+
SENSITIVE = []
|
11388
|
+
include Aws::Structure
|
11389
|
+
end
|
11390
|
+
|
9409
11391
|
# @!attribute [rw] asset_identifier
|
9410
11392
|
# The ID of the data asset.
|
9411
11393
|
# @return [String]
|
@@ -9527,6 +11509,89 @@ module Aws::DataZone
|
|
9527
11509
|
include Aws::Structure
|
9528
11510
|
end
|
9529
11511
|
|
11512
|
+
# @!attribute [rw] domain_identifier
|
11513
|
+
# The ID of the domain where you want to list connections.
|
11514
|
+
# @return [String]
|
11515
|
+
#
|
11516
|
+
# @!attribute [rw] environment_identifier
|
11517
|
+
# The ID of the environment where you want to list connections.
|
11518
|
+
# @return [String]
|
11519
|
+
#
|
11520
|
+
# @!attribute [rw] max_results
|
11521
|
+
# The maximum number of connections to return in a single call to
|
11522
|
+
# ListConnections. When the number of connections to be listed is
|
11523
|
+
# greater than the value of MaxResults, the response contains a
|
11524
|
+
# NextToken value that you can use in a subsequent call to
|
11525
|
+
# ListConnections to list the next set of connections.
|
11526
|
+
# @return [Integer]
|
11527
|
+
#
|
11528
|
+
# @!attribute [rw] name
|
11529
|
+
# The name of the connection.
|
11530
|
+
# @return [String]
|
11531
|
+
#
|
11532
|
+
# @!attribute [rw] next_token
|
11533
|
+
# When the number of connections is greater than the default value for
|
11534
|
+
# the MaxResults parameter, or if you explicitly specify a value for
|
11535
|
+
# MaxResults that is less than the number of connections, the response
|
11536
|
+
# includes a pagination token named NextToken. You can specify this
|
11537
|
+
# NextToken value in a subsequent call to ListConnections to list the
|
11538
|
+
# next set of connections.
|
11539
|
+
# @return [String]
|
11540
|
+
#
|
11541
|
+
# @!attribute [rw] project_identifier
|
11542
|
+
# The ID of the project where you want to list connections.
|
11543
|
+
# @return [String]
|
11544
|
+
#
|
11545
|
+
# @!attribute [rw] sort_by
|
11546
|
+
# Specifies how you want to sort the listed connections.
|
11547
|
+
# @return [String]
|
11548
|
+
#
|
11549
|
+
# @!attribute [rw] sort_order
|
11550
|
+
# Specifies the sort order for the listed connections.
|
11551
|
+
# @return [String]
|
11552
|
+
#
|
11553
|
+
# @!attribute [rw] type
|
11554
|
+
# The type of connection.
|
11555
|
+
# @return [String]
|
11556
|
+
#
|
11557
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListConnectionsInput AWS API Documentation
|
11558
|
+
#
|
11559
|
+
class ListConnectionsInput < Struct.new(
|
11560
|
+
:domain_identifier,
|
11561
|
+
:environment_identifier,
|
11562
|
+
:max_results,
|
11563
|
+
:name,
|
11564
|
+
:next_token,
|
11565
|
+
:project_identifier,
|
11566
|
+
:sort_by,
|
11567
|
+
:sort_order,
|
11568
|
+
:type)
|
11569
|
+
SENSITIVE = []
|
11570
|
+
include Aws::Structure
|
11571
|
+
end
|
11572
|
+
|
11573
|
+
# @!attribute [rw] items
|
11574
|
+
# The results of the ListConnections action.
|
11575
|
+
# @return [Array<Types::ConnectionSummary>]
|
11576
|
+
#
|
11577
|
+
# @!attribute [rw] next_token
|
11578
|
+
# When the number of connections is greater than the default value for
|
11579
|
+
# the MaxResults parameter, or if you explicitly specify a value for
|
11580
|
+
# MaxResults that is less than the number of connections, the response
|
11581
|
+
# includes a pagination token named NextToken. You can specify this
|
11582
|
+
# NextToken value in a subsequent call to ListConnections to list the
|
11583
|
+
# next set of connections.
|
11584
|
+
# @return [String]
|
11585
|
+
#
|
11586
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListConnectionsOutput AWS API Documentation
|
11587
|
+
#
|
11588
|
+
class ListConnectionsOutput < Struct.new(
|
11589
|
+
:items,
|
11590
|
+
:next_token)
|
11591
|
+
SENSITIVE = []
|
11592
|
+
include Aws::Structure
|
11593
|
+
end
|
11594
|
+
|
9530
11595
|
# @!attribute [rw] domain_identifier
|
9531
11596
|
# The ID of the domain of the data product revisions that you want to
|
9532
11597
|
# list.
|
@@ -9717,6 +11782,10 @@ module Aws::DataZone
|
|
9717
11782
|
include Aws::Structure
|
9718
11783
|
end
|
9719
11784
|
|
11785
|
+
# @!attribute [rw] connection_identifier
|
11786
|
+
# The ID of the connection.
|
11787
|
+
# @return [String]
|
11788
|
+
#
|
9720
11789
|
# @!attribute [rw] domain_identifier
|
9721
11790
|
# The identifier of the Amazon DataZone domain in which to list the
|
9722
11791
|
# data sources.
|
@@ -9762,6 +11831,7 @@ module Aws::DataZone
|
|
9762
11831
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListDataSourcesInput AWS API Documentation
|
9763
11832
|
#
|
9764
11833
|
class ListDataSourcesInput < Struct.new(
|
11834
|
+
:connection_identifier,
|
9765
11835
|
:domain_identifier,
|
9766
11836
|
:environment_identifier,
|
9767
11837
|
:max_results,
|
@@ -10332,6 +12402,147 @@ module Aws::DataZone
|
|
10332
12402
|
include Aws::Structure
|
10333
12403
|
end
|
10334
12404
|
|
12405
|
+
# @!attribute [rw] domain_identifier
|
12406
|
+
# The ID of the domain where you want to list job runs.
|
12407
|
+
# @return [String]
|
12408
|
+
#
|
12409
|
+
# @!attribute [rw] job_identifier
|
12410
|
+
# The ID of the job run.
|
12411
|
+
# @return [String]
|
12412
|
+
#
|
12413
|
+
# @!attribute [rw] max_results
|
12414
|
+
# The maximum number of job runs to return in a single call to
|
12415
|
+
# ListJobRuns. When the number of job runs to be listed is greater
|
12416
|
+
# than the value of MaxResults, the response contains a NextToken
|
12417
|
+
# value that you can use in a subsequent call to ListJobRuns to list
|
12418
|
+
# the next set of job runs.
|
12419
|
+
# @return [Integer]
|
12420
|
+
#
|
12421
|
+
# @!attribute [rw] next_token
|
12422
|
+
# When the number of job runs is greater than the default value for
|
12423
|
+
# the MaxResults parameter, or if you explicitly specify a value for
|
12424
|
+
# MaxResults that is less than the number of job runs, the response
|
12425
|
+
# includes a pagination token named NextToken. You can specify this
|
12426
|
+
# NextToken value in a subsequent call to ListJobRuns to list the next
|
12427
|
+
# set of job runs.
|
12428
|
+
# @return [String]
|
12429
|
+
#
|
12430
|
+
# @!attribute [rw] sort_order
|
12431
|
+
# Specifies the order in which job runs are to be sorted.
|
12432
|
+
# @return [String]
|
12433
|
+
#
|
12434
|
+
# @!attribute [rw] status
|
12435
|
+
# The status of a job run.
|
12436
|
+
# @return [String]
|
12437
|
+
#
|
12438
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListJobRunsInput AWS API Documentation
|
12439
|
+
#
|
12440
|
+
class ListJobRunsInput < Struct.new(
|
12441
|
+
:domain_identifier,
|
12442
|
+
:job_identifier,
|
12443
|
+
:max_results,
|
12444
|
+
:next_token,
|
12445
|
+
:sort_order,
|
12446
|
+
:status)
|
12447
|
+
SENSITIVE = []
|
12448
|
+
include Aws::Structure
|
12449
|
+
end
|
12450
|
+
|
12451
|
+
# @!attribute [rw] items
|
12452
|
+
# The results of the ListJobRuns action.
|
12453
|
+
# @return [Array<Types::JobRunSummary>]
|
12454
|
+
#
|
12455
|
+
# @!attribute [rw] next_token
|
12456
|
+
# When the number of job runs is greater than the default value for
|
12457
|
+
# the MaxResults parameter, or if you explicitly specify a value for
|
12458
|
+
# MaxResults that is less than the number of job runs, the response
|
12459
|
+
# includes a pagination token named NextToken. You can specify this
|
12460
|
+
# NextToken value in a subsequent call to ListJobRuns to list the next
|
12461
|
+
# set of job runs.
|
12462
|
+
# @return [String]
|
12463
|
+
#
|
12464
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListJobRunsOutput AWS API Documentation
|
12465
|
+
#
|
12466
|
+
class ListJobRunsOutput < Struct.new(
|
12467
|
+
:items,
|
12468
|
+
:next_token)
|
12469
|
+
SENSITIVE = []
|
12470
|
+
include Aws::Structure
|
12471
|
+
end
|
12472
|
+
|
12473
|
+
# @!attribute [rw] domain_identifier
|
12474
|
+
# The ID of the domain where you want to list lineage events.
|
12475
|
+
# @return [String]
|
12476
|
+
#
|
12477
|
+
# @!attribute [rw] max_results
|
12478
|
+
# The maximum number of lineage events to return in a single call to
|
12479
|
+
# ListLineageEvents. When the number of lineage events to be listed is
|
12480
|
+
# greater than the value of MaxResults, the response contains a
|
12481
|
+
# NextToken value that you can use in a subsequent call to
|
12482
|
+
# ListLineageEvents to list the next set of lineage events.
|
12483
|
+
# @return [Integer]
|
12484
|
+
#
|
12485
|
+
# @!attribute [rw] next_token
|
12486
|
+
# When the number of lineage events is greater than the default value
|
12487
|
+
# for the MaxResults parameter, or if you explicitly specify a value
|
12488
|
+
# for MaxResults that is less than the number of lineage events, the
|
12489
|
+
# response includes a pagination token named NextToken. You can
|
12490
|
+
# specify this NextToken value in a subsequent call to
|
12491
|
+
# ListLineageEvents to list the next set of lineage events.
|
12492
|
+
# @return [String]
|
12493
|
+
#
|
12494
|
+
# @!attribute [rw] processing_status
|
12495
|
+
# The processing status of a lineage event.
|
12496
|
+
# @return [String]
|
12497
|
+
#
|
12498
|
+
# @!attribute [rw] sort_order
|
12499
|
+
# The sort order of the lineage events.
|
12500
|
+
# @return [String]
|
12501
|
+
#
|
12502
|
+
# @!attribute [rw] timestamp_after
|
12503
|
+
# The after timestamp of a lineage event.
|
12504
|
+
# @return [Time]
|
12505
|
+
#
|
12506
|
+
# @!attribute [rw] timestamp_before
|
12507
|
+
# The before timestamp of a lineage event.
|
12508
|
+
# @return [Time]
|
12509
|
+
#
|
12510
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListLineageEventsInput AWS API Documentation
|
12511
|
+
#
|
12512
|
+
class ListLineageEventsInput < Struct.new(
|
12513
|
+
:domain_identifier,
|
12514
|
+
:max_results,
|
12515
|
+
:next_token,
|
12516
|
+
:processing_status,
|
12517
|
+
:sort_order,
|
12518
|
+
:timestamp_after,
|
12519
|
+
:timestamp_before)
|
12520
|
+
SENSITIVE = []
|
12521
|
+
include Aws::Structure
|
12522
|
+
end
|
12523
|
+
|
12524
|
+
# @!attribute [rw] items
|
12525
|
+
# The results of the ListLineageEvents action.
|
12526
|
+
# @return [Array<Types::LineageEventSummary>]
|
12527
|
+
#
|
12528
|
+
# @!attribute [rw] next_token
|
12529
|
+
# When the number of lineage events is greater than the default value
|
12530
|
+
# for the MaxResults parameter, or if you explicitly specify a value
|
12531
|
+
# for MaxResults that is less than the number of lineage events, the
|
12532
|
+
# response includes a pagination token named NextToken. You can
|
12533
|
+
# specify this NextToken value in a subsequent call to
|
12534
|
+
# ListLineageEvents to list the next set of lineage events.
|
12535
|
+
# @return [String]
|
12536
|
+
#
|
12537
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListLineageEventsOutput AWS API Documentation
|
12538
|
+
#
|
12539
|
+
class ListLineageEventsOutput < Struct.new(
|
12540
|
+
:items,
|
12541
|
+
:next_token)
|
12542
|
+
SENSITIVE = []
|
12543
|
+
include Aws::Structure
|
12544
|
+
end
|
12545
|
+
|
10335
12546
|
# @!attribute [rw] direction
|
10336
12547
|
# The direction of the data lineage node refers to the lineage node
|
10337
12548
|
# having neighbors in that direction. For example, if direction is
|
@@ -10676,23 +12887,91 @@ module Aws::DataZone
|
|
10676
12887
|
include Aws::Structure
|
10677
12888
|
end
|
10678
12889
|
|
10679
|
-
# @!attribute [rw] members
|
10680
|
-
# The members of the project.
|
10681
|
-
# @return [Array<Types::ProjectMember>]
|
12890
|
+
# @!attribute [rw] members
|
12891
|
+
# The members of the project.
|
12892
|
+
# @return [Array<Types::ProjectMember>]
|
12893
|
+
#
|
12894
|
+
# @!attribute [rw] next_token
|
12895
|
+
# When the number of memberships is greater than the default value for
|
12896
|
+
# the `MaxResults` parameter, or if you explicitly specify a value for
|
12897
|
+
# `MaxResults` that is less than the number of memberships, the
|
12898
|
+
# response includes a pagination token named `NextToken`. You can
|
12899
|
+
# specify this `NextToken` value in a subsequent call to
|
12900
|
+
# `ListProjectMemberships` to list the next set of memberships.
|
12901
|
+
# @return [String]
|
12902
|
+
#
|
12903
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListProjectMembershipsOutput AWS API Documentation
|
12904
|
+
#
|
12905
|
+
class ListProjectMembershipsOutput < Struct.new(
|
12906
|
+
:members,
|
12907
|
+
:next_token)
|
12908
|
+
SENSITIVE = []
|
12909
|
+
include Aws::Structure
|
12910
|
+
end
|
12911
|
+
|
12912
|
+
# @!attribute [rw] domain_identifier
|
12913
|
+
# The ID of the domain where you want to list project profiles.
|
12914
|
+
# @return [String]
|
12915
|
+
#
|
12916
|
+
# @!attribute [rw] max_results
|
12917
|
+
# The maximum number of project profiles to return in a single call to
|
12918
|
+
# ListProjectProfiles. When the number of project profiles to be
|
12919
|
+
# listed is greater than the value of MaxResults, the response
|
12920
|
+
# contains a NextToken value that you can use in a subsequent call to
|
12921
|
+
# ListProjectProfiles to list the next set of project profiles.
|
12922
|
+
# @return [Integer]
|
12923
|
+
#
|
12924
|
+
# @!attribute [rw] name
|
12925
|
+
# The name of a project profile.
|
12926
|
+
# @return [String]
|
12927
|
+
#
|
12928
|
+
# @!attribute [rw] next_token
|
12929
|
+
# When the number of project profiles is greater than the default
|
12930
|
+
# value for the MaxResults parameter, or if you explicitly specify a
|
12931
|
+
# value for MaxResults that is less than the number of project
|
12932
|
+
# profiles, the response includes a pagination token named NextToken.
|
12933
|
+
# You can specify this NextToken value in a subsequent call to
|
12934
|
+
# ListProjectProfiles to list the next set of project profiles.
|
12935
|
+
# @return [String]
|
12936
|
+
#
|
12937
|
+
# @!attribute [rw] sort_by
|
12938
|
+
# Specifies by what to sort project profiles.
|
12939
|
+
# @return [String]
|
12940
|
+
#
|
12941
|
+
# @!attribute [rw] sort_order
|
12942
|
+
# Specifies the sort order of the project profiles.
|
12943
|
+
# @return [String]
|
12944
|
+
#
|
12945
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListProjectProfilesInput AWS API Documentation
|
12946
|
+
#
|
12947
|
+
class ListProjectProfilesInput < Struct.new(
|
12948
|
+
:domain_identifier,
|
12949
|
+
:max_results,
|
12950
|
+
:name,
|
12951
|
+
:next_token,
|
12952
|
+
:sort_by,
|
12953
|
+
:sort_order)
|
12954
|
+
SENSITIVE = [:name]
|
12955
|
+
include Aws::Structure
|
12956
|
+
end
|
12957
|
+
|
12958
|
+
# @!attribute [rw] items
|
12959
|
+
# The results of the ListProjectProfiles action.
|
12960
|
+
# @return [Array<Types::ProjectProfileSummary>]
|
10682
12961
|
#
|
10683
12962
|
# @!attribute [rw] next_token
|
10684
|
-
# When the number of
|
10685
|
-
# the
|
10686
|
-
#
|
10687
|
-
# response includes a pagination token named
|
10688
|
-
# specify this
|
10689
|
-
#
|
12963
|
+
# When the number of project profiles is greater than the default
|
12964
|
+
# value for the MaxResults parameter, or if you explicitly specify a
|
12965
|
+
# value for MaxResults that is less than the number of project
|
12966
|
+
# profiles, the response includes a pagination token named NextToken.
|
12967
|
+
# You can specify this NextToken value in a subsequent call to
|
12968
|
+
# ListProjectProfiles to list the next set of project profiles.
|
10690
12969
|
# @return [String]
|
10691
12970
|
#
|
10692
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/
|
12971
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListProjectProfilesOutput AWS API Documentation
|
10693
12972
|
#
|
10694
|
-
class
|
10695
|
-
:
|
12973
|
+
class ListProjectProfilesOutput < Struct.new(
|
12974
|
+
:items,
|
10696
12975
|
:next_token)
|
10697
12976
|
SENSITIVE = []
|
10698
12977
|
include Aws::Structure
|
@@ -11644,6 +13923,25 @@ module Aws::DataZone
|
|
11644
13923
|
class Unknown < Model; end
|
11645
13924
|
end
|
11646
13925
|
|
13926
|
+
# The name identifier.
|
13927
|
+
#
|
13928
|
+
# @!attribute [rw] name
|
13929
|
+
# The name in the name identifier.
|
13930
|
+
# @return [String]
|
13931
|
+
#
|
13932
|
+
# @!attribute [rw] namespace
|
13933
|
+
# The namespace in the name identifier.
|
13934
|
+
# @return [String]
|
13935
|
+
#
|
13936
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/NameIdentifier AWS API Documentation
|
13937
|
+
#
|
13938
|
+
class NameIdentifier < Struct.new(
|
13939
|
+
:name,
|
13940
|
+
:namespace)
|
13941
|
+
SENSITIVE = []
|
13942
|
+
include Aws::Structure
|
13943
|
+
end
|
13944
|
+
|
11647
13945
|
# Specifies that a value is not equal to the expression.
|
11648
13946
|
#
|
11649
13947
|
# @!attribute [rw] column_name
|
@@ -11790,6 +14088,100 @@ module Aws::DataZone
|
|
11790
14088
|
include Aws::Structure
|
11791
14089
|
end
|
11792
14090
|
|
14091
|
+
# The OAuth2Client application.
|
14092
|
+
#
|
14093
|
+
# @!attribute [rw] a_ws_managed_client_application_reference
|
14094
|
+
# The Amazon Web Services managed client application reference in the
|
14095
|
+
# OAuth2Client application.
|
14096
|
+
# @return [String]
|
14097
|
+
#
|
14098
|
+
# @!attribute [rw] user_managed_client_application_client_id
|
14099
|
+
# The user managed client application client ID in the OAuth2Client
|
14100
|
+
# application.
|
14101
|
+
# @return [String]
|
14102
|
+
#
|
14103
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/OAuth2ClientApplication AWS API Documentation
|
14104
|
+
#
|
14105
|
+
class OAuth2ClientApplication < Struct.new(
|
14106
|
+
:a_ws_managed_client_application_reference,
|
14107
|
+
:user_managed_client_application_client_id)
|
14108
|
+
SENSITIVE = []
|
14109
|
+
include Aws::Structure
|
14110
|
+
end
|
14111
|
+
|
14112
|
+
# The OAuth2 properties.
|
14113
|
+
#
|
14114
|
+
# @!attribute [rw] authorization_code_properties
|
14115
|
+
# The authorization code properties of the OAuth2 properties.
|
14116
|
+
# @return [Types::AuthorizationCodeProperties]
|
14117
|
+
#
|
14118
|
+
# @!attribute [rw] o_auth_2_client_application
|
14119
|
+
# The OAuth2 client application of the OAuth2 properties.
|
14120
|
+
# @return [Types::OAuth2ClientApplication]
|
14121
|
+
#
|
14122
|
+
# @!attribute [rw] o_auth_2_credentials
|
14123
|
+
# The OAuth2 credentials of the OAuth2 properties.
|
14124
|
+
# @return [Types::GlueOAuth2Credentials]
|
14125
|
+
#
|
14126
|
+
# @!attribute [rw] o_auth_2_grant_type
|
14127
|
+
# The OAuth2 grant type of the OAuth2 properties.
|
14128
|
+
# @return [String]
|
14129
|
+
#
|
14130
|
+
# @!attribute [rw] token_url
|
14131
|
+
# The OAuth2 token URL of the OAuth2 properties.
|
14132
|
+
# @return [String]
|
14133
|
+
#
|
14134
|
+
# @!attribute [rw] token_url_parameters_map
|
14135
|
+
# The OAuth2 token URL parameter map of the OAuth2 properties.
|
14136
|
+
# @return [Hash<String,String>]
|
14137
|
+
#
|
14138
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/OAuth2Properties AWS API Documentation
|
14139
|
+
#
|
14140
|
+
class OAuth2Properties < Struct.new(
|
14141
|
+
:authorization_code_properties,
|
14142
|
+
:o_auth_2_client_application,
|
14143
|
+
:o_auth_2_credentials,
|
14144
|
+
:o_auth_2_grant_type,
|
14145
|
+
:token_url,
|
14146
|
+
:token_url_parameters_map)
|
14147
|
+
SENSITIVE = [:o_auth_2_credentials]
|
14148
|
+
include Aws::Structure
|
14149
|
+
end
|
14150
|
+
|
14151
|
+
# The open lineage run event summary.
|
14152
|
+
#
|
14153
|
+
# @!attribute [rw] event_type
|
14154
|
+
# The event type of the open lineage run event summary.
|
14155
|
+
# @return [String]
|
14156
|
+
#
|
14157
|
+
# @!attribute [rw] inputs
|
14158
|
+
# The inputs of the open lineage run event summary.
|
14159
|
+
# @return [Array<Types::NameIdentifier>]
|
14160
|
+
#
|
14161
|
+
# @!attribute [rw] job
|
14162
|
+
# The job of the open lineage run event summary.
|
14163
|
+
# @return [Types::NameIdentifier]
|
14164
|
+
#
|
14165
|
+
# @!attribute [rw] outputs
|
14166
|
+
# The outputs of the open lineage run event summary.
|
14167
|
+
# @return [Array<Types::NameIdentifier>]
|
14168
|
+
#
|
14169
|
+
# @!attribute [rw] run_id
|
14170
|
+
# The runID of the open lineage run event summary.
|
14171
|
+
# @return [String]
|
14172
|
+
#
|
14173
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/OpenLineageRunEventSummary AWS API Documentation
|
14174
|
+
#
|
14175
|
+
class OpenLineageRunEventSummary < Struct.new(
|
14176
|
+
:event_type,
|
14177
|
+
:inputs,
|
14178
|
+
:job,
|
14179
|
+
:outputs,
|
14180
|
+
:run_id)
|
14181
|
+
SENSITIVE = []
|
14182
|
+
include Aws::Structure
|
14183
|
+
end
|
14184
|
+
|
11793
14185
|
# The grant details of the override domain unit owners policy.
|
11794
14186
|
#
|
11795
14187
|
# @!attribute [rw] include_child_domain_units
|
@@ -11928,6 +14320,83 @@ module Aws::DataZone
|
|
11928
14320
|
include Aws::Structure
|
11929
14321
|
end
|
11930
14322
|
|
14323
|
+
# Physical connection requirements of a connection.
|
14324
|
+
#
|
14325
|
+
# @!attribute [rw] availability_zone
|
14326
|
+
# The availability zone of the physical connection requirements of a
|
14327
|
+
# connection.
|
14328
|
+
# @return [String]
|
14329
|
+
#
|
14330
|
+
# @!attribute [rw] security_group_id_list
|
14331
|
+
# The group ID list of the physical connection requirements of a
|
14332
|
+
# connection.
|
14333
|
+
# @return [Array<String>]
|
14334
|
+
#
|
14335
|
+
# @!attribute [rw] subnet_id
|
14336
|
+
# The subnet ID of the physical connection requirements of a
|
14337
|
+
# connection.
|
14338
|
+
# @return [String]
|
14339
|
+
#
|
14340
|
+
# @!attribute [rw] subnet_id_list
|
14341
|
+
# The subnet ID list of the physical connection requirements of a
|
14342
|
+
# connection.
|
14343
|
+
# @return [Array<String>]
|
14344
|
+
#
|
14345
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/PhysicalConnectionRequirements AWS API Documentation
|
14346
|
+
#
|
14347
|
+
class PhysicalConnectionRequirements < Struct.new(
|
14348
|
+
:availability_zone,
|
14349
|
+
:security_group_id_list,
|
14350
|
+
:subnet_id,
|
14351
|
+
:subnet_id_list)
|
14352
|
+
SENSITIVE = []
|
14353
|
+
include Aws::Structure
|
14354
|
+
end
|
14355
|
+
|
14356
|
+
# The physical endpoints of a connection.
|
14357
|
+
#
|
14358
|
+
# @!attribute [rw] aws_location
|
14359
|
+
# The location of a connection.
|
14360
|
+
# @return [Types::AwsLocation]
|
14361
|
+
#
|
14362
|
+
# @!attribute [rw] glue_connection
|
14363
|
+
# The Amazon Web Services Glue connection.
|
14364
|
+
# @return [Types::GlueConnection]
|
14365
|
+
#
|
14366
|
+
# @!attribute [rw] glue_connection_name
|
14367
|
+
# The Amazon Web Services Glue connection name.
|
14368
|
+
# @return [String]
|
14369
|
+
#
|
14370
|
+
# @!attribute [rw] host
|
14371
|
+
# The host in the physical endpoints of a connection.
|
14372
|
+
# @return [String]
|
14373
|
+
#
|
14374
|
+
# @!attribute [rw] port
|
14375
|
+
# The port in the physical endpoints of a connection.
|
14376
|
+
# @return [Integer]
|
14377
|
+
#
|
14378
|
+
# @!attribute [rw] protocol
|
14379
|
+
# The protocol in the physical endpoints of a connection.
|
14380
|
+
# @return [String]
|
14381
|
+
#
|
14382
|
+
# @!attribute [rw] stage
|
14383
|
+
# The stage in the physical endpoints of a connection.
|
14384
|
+
# @return [String]
|
14385
|
+
#
|
14386
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/PhysicalEndpoint AWS API Documentation
|
14387
|
+
#
|
14388
|
+
class PhysicalEndpoint < Struct.new(
|
14389
|
+
:aws_location,
|
14390
|
+
:glue_connection,
|
14391
|
+
:glue_connection_name,
|
14392
|
+
:host,
|
14393
|
+
:port,
|
14394
|
+
:protocol,
|
14395
|
+
:stage)
|
14396
|
+
SENSITIVE = []
|
14397
|
+
include Aws::Structure
|
14398
|
+
end
|
14399
|
+
|
11931
14400
|
# The details of the policy grant.
|
11932
14401
|
#
|
11933
14402
|
# @note PolicyGrantDetail is a union - when making an API calls you must set exactly one of the members.
|
@@ -11951,6 +14420,10 @@ module Aws::DataZone
|
|
11951
14420
|
# Specifies that this is a create environment policy.
|
11952
14421
|
# @return [Types::Unit]
|
11953
14422
|
#
|
14423
|
+
# @!attribute [rw] create_environment_from_blueprint
|
14424
|
+
# The details of the policy of creating an environment.
|
14425
|
+
# @return [Types::Unit]
|
14426
|
+
#
|
11954
14427
|
# @!attribute [rw] create_environment_profile
|
11955
14428
|
# Specifies that this is a create environment profile policy.
|
11956
14429
|
# @return [Types::CreateEnvironmentProfilePolicyGrantDetail]
|
@@ -11967,6 +14440,10 @@ module Aws::DataZone
|
|
11967
14440
|
# Specifies that this is a create project policy.
|
11968
14441
|
# @return [Types::CreateProjectPolicyGrantDetail]
|
11969
14442
|
#
|
14443
|
+
# @!attribute [rw] create_project_from_project_profile
|
14444
|
+
# Specifies whether to create a project from project profile.
|
14445
|
+
# @return [Types::CreateProjectFromProjectProfilePolicyGrantDetail]
|
14446
|
+
#
|
11970
14447
|
# @!attribute [rw] delegate_create_environment_profile
|
11971
14448
|
# Specifies that this is the delegation of the create environment
|
11972
14449
|
# profile policy.
|
@@ -11987,10 +14464,12 @@ module Aws::DataZone
|
|
11987
14464
|
:create_asset_type,
|
11988
14465
|
:create_domain_unit,
|
11989
14466
|
:create_environment,
|
14467
|
+
:create_environment_from_blueprint,
|
11990
14468
|
:create_environment_profile,
|
11991
14469
|
:create_form_type,
|
11992
14470
|
:create_glossary,
|
11993
14471
|
:create_project,
|
14472
|
+
:create_project_from_project_profile,
|
11994
14473
|
:delegate_create_environment_profile,
|
11995
14474
|
:override_domain_unit_owners,
|
11996
14475
|
:override_project_owners,
|
@@ -12003,10 +14482,12 @@ module Aws::DataZone
|
|
12003
14482
|
class CreateAssetType < PolicyGrantDetail; end
|
12004
14483
|
class CreateDomainUnit < PolicyGrantDetail; end
|
12005
14484
|
class CreateEnvironment < PolicyGrantDetail; end
|
14485
|
+
class CreateEnvironmentFromBlueprint < PolicyGrantDetail; end
|
12006
14486
|
class CreateEnvironmentProfile < PolicyGrantDetail; end
|
12007
14487
|
class CreateFormType < PolicyGrantDetail; end
|
12008
14488
|
class CreateGlossary < PolicyGrantDetail; end
|
12009
14489
|
class CreateProject < PolicyGrantDetail; end
|
14490
|
+
class CreateProjectFromProjectProfile < PolicyGrantDetail; end
|
12010
14491
|
class DelegateCreateEnvironmentProfile < PolicyGrantDetail; end
|
12011
14492
|
class OverrideDomainUnitOwners < PolicyGrantDetail; end
|
12012
14493
|
class OverrideProjectOwners < PolicyGrantDetail; end
|
@@ -12110,9 +14591,22 @@ module Aws::DataZone
|
|
12110
14591
|
include Aws::Structure
|
12111
14592
|
end
|
12112
14593
|
|
14594
|
+
# @!attribute [rw] domain_id
|
14595
|
+
# The ID of the domain.
|
14596
|
+
# @return [String]
|
14597
|
+
#
|
14598
|
+
# @!attribute [rw] id
|
14599
|
+
# The ID of the lineage event.
|
14600
|
+
# @return [String]
|
14601
|
+
#
|
12113
14602
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/PostLineageEventOutput AWS API Documentation
|
12114
14603
|
#
|
12115
|
-
class PostLineageEventOutput <
|
14604
|
+
class PostLineageEventOutput < Struct.new(
|
14605
|
+
:domain_id,
|
14606
|
+
:id)
|
14607
|
+
SENSITIVE = []
|
14608
|
+
include Aws::Structure
|
14609
|
+
end
|
12116
14610
|
|
12117
14611
|
# @!attribute [rw] client_token
|
12118
14612
|
# A unique, case-sensitive identifier that is provided to ensure the
|
@@ -12281,6 +14775,60 @@ module Aws::DataZone
|
|
12281
14775
|
include Aws::Structure
|
12282
14776
|
end
|
12283
14777
|
|
14778
|
+
# The summary of a project profile.
|
14779
|
+
#
|
14780
|
+
# @!attribute [rw] created_at
|
14781
|
+
# The timestamp of when the project profile was created.
|
14782
|
+
# @return [Time]
|
14783
|
+
#
|
14784
|
+
# @!attribute [rw] created_by
|
14785
|
+
# The user who created the project profile.
|
14786
|
+
# @return [String]
|
14787
|
+
#
|
14788
|
+
# @!attribute [rw] description
|
14789
|
+
# The description of the project profile.
|
14790
|
+
# @return [String]
|
14791
|
+
#
|
14792
|
+
# @!attribute [rw] domain_id
|
14793
|
+
# The domain ID of the project profile.
|
14794
|
+
# @return [String]
|
14795
|
+
#
|
14796
|
+
# @!attribute [rw] domain_unit_id
|
14797
|
+
# The domain unit ID of the project profile.
|
14798
|
+
# @return [String]
|
14799
|
+
#
|
14800
|
+
# @!attribute [rw] id
|
14801
|
+
# The ID of the project profile.
|
14802
|
+
# @return [String]
|
14803
|
+
#
|
14804
|
+
# @!attribute [rw] last_updated_at
|
14805
|
+
# The timestamp at which a project profile was last updated.
|
14806
|
+
# @return [Time]
|
14807
|
+
#
|
14808
|
+
# @!attribute [rw] name
|
14809
|
+
# The name of a project profile.
|
14810
|
+
# @return [String]
|
14811
|
+
#
|
14812
|
+
# @!attribute [rw] status
|
14813
|
+
# The status of a project profile.
|
14814
|
+
# @return [String]
|
14815
|
+
#
|
14816
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ProjectProfileSummary AWS API Documentation
|
14817
|
+
#
|
14818
|
+
class ProjectProfileSummary < Struct.new(
|
14819
|
+
:created_at,
|
14820
|
+
:created_by,
|
14821
|
+
:description,
|
14822
|
+
:domain_id,
|
14823
|
+
:domain_unit_id,
|
14824
|
+
:id,
|
14825
|
+
:last_updated_at,
|
14826
|
+
:name,
|
14827
|
+
:status)
|
14828
|
+
SENSITIVE = [:description, :name]
|
14829
|
+
include Aws::Structure
|
14830
|
+
end
|
14831
|
+
|
12284
14832
|
# The details of a Amazon DataZone project.
|
12285
14833
|
#
|
12286
14834
|
# @!attribute [rw] created_at
|
@@ -12417,6 +14965,10 @@ module Aws::DataZone
|
|
12417
14965
|
# The identifier of the environment blueprint.
|
12418
14966
|
# @return [String]
|
12419
14967
|
#
|
14968
|
+
# @!attribute [rw] environment_role_permission_boundary
|
14969
|
+
# The environment role permissions boundary.
|
14970
|
+
# @return [String]
|
14971
|
+
#
|
12420
14972
|
# @!attribute [rw] manage_access_role_arn
|
12421
14973
|
# The ARN of the manage access role.
|
12422
14974
|
# @return [String]
|
@@ -12439,6 +14991,7 @@ module Aws::DataZone
|
|
12439
14991
|
:domain_identifier,
|
12440
14992
|
:enabled_regions,
|
12441
14993
|
:environment_blueprint_identifier,
|
14994
|
+
:environment_role_permission_boundary,
|
12442
14995
|
:manage_access_role_arn,
|
12443
14996
|
:provisioning_configurations,
|
12444
14997
|
:provisioning_role_arn,
|
@@ -12463,6 +15016,10 @@ module Aws::DataZone
|
|
12463
15016
|
# The identifier of the environment blueprint.
|
12464
15017
|
# @return [String]
|
12465
15018
|
#
|
15019
|
+
# @!attribute [rw] environment_role_permission_boundary
|
15020
|
+
# The environment role permissions boundary.
|
15021
|
+
# @return [String]
|
15022
|
+
#
|
12466
15023
|
# @!attribute [rw] manage_access_role_arn
|
12467
15024
|
# The ARN of the manage access role.
|
12468
15025
|
# @return [String]
|
@@ -12490,6 +15047,7 @@ module Aws::DataZone
|
|
12490
15047
|
:domain_id,
|
12491
15048
|
:enabled_regions,
|
12492
15049
|
:environment_blueprint_id,
|
15050
|
+
:environment_role_permission_boundary,
|
12493
15051
|
:manage_access_role_arn,
|
12494
15052
|
:provisioning_configurations,
|
12495
15053
|
:provisioning_role_arn,
|
@@ -12532,15 +15090,223 @@ module Aws::DataZone
|
|
12532
15090
|
# The details of the credentials required to access an Amazon Redshift
|
12533
15091
|
# cluster.
|
12534
15092
|
#
|
12535
|
-
# @!attribute [rw] secret_manager_arn
|
12536
|
-
# The ARN of a secret manager for an Amazon Redshift cluster.
|
12537
|
-
# @return [String]
|
15093
|
+
# @!attribute [rw] secret_manager_arn
|
15094
|
+
# The ARN of a secret manager for an Amazon Redshift cluster.
|
15095
|
+
# @return [String]
|
15096
|
+
#
|
15097
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RedshiftCredentialConfiguration AWS API Documentation
|
15098
|
+
#
|
15099
|
+
class RedshiftCredentialConfiguration < Struct.new(
|
15100
|
+
:secret_manager_arn)
|
15101
|
+
SENSITIVE = []
|
15102
|
+
include Aws::Structure
|
15103
|
+
end
|
15104
|
+
|
15105
|
+
# Amazon Redshift credentials of a connection.
|
15106
|
+
#
|
15107
|
+
# @note RedshiftCredentials is a union - when making an API calls you must set exactly one of the members.
|
15108
|
+
#
|
15109
|
+
# @note RedshiftCredentials is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RedshiftCredentials corresponding to the set member.
|
15110
|
+
#
|
15111
|
+
# @!attribute [rw] secret_arn
|
15112
|
+
# The secret ARN of the Amazon Redshift credentials of a connection.
|
15113
|
+
# @return [String]
|
15114
|
+
#
|
15115
|
+
# @!attribute [rw] username_password
|
15116
|
+
# The username and password of the Amazon Redshift credentials of a
|
15117
|
+
# connection.
|
15118
|
+
# @return [Types::UsernamePassword]
|
15119
|
+
#
|
15120
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RedshiftCredentials AWS API Documentation
|
15121
|
+
#
|
15122
|
+
class RedshiftCredentials < Struct.new(
|
15123
|
+
:secret_arn,
|
15124
|
+
:username_password,
|
15125
|
+
:unknown)
|
15126
|
+
SENSITIVE = [:username_password]
|
15127
|
+
include Aws::Structure
|
15128
|
+
include Aws::Structure::Union
|
15129
|
+
|
15130
|
+
class SecretArn < RedshiftCredentials; end
|
15131
|
+
class UsernamePassword < RedshiftCredentials; end
|
15132
|
+
class Unknown < RedshiftCredentials; end
|
15133
|
+
end
|
15134
|
+
|
15135
|
+
# The Amaon Redshift lineage sync configuration.
|
15136
|
+
#
|
15137
|
+
# @!attribute [rw] enabled
|
15138
|
+
# Specifies whether the Amaon Redshift lineage sync configuration is
|
15139
|
+
# enabled.
|
15140
|
+
# @return [Boolean]
|
15141
|
+
#
|
15142
|
+
# @!attribute [rw] schedule
|
15143
|
+
# The schedule of the Amaon Redshift lineage sync configuration.
|
15144
|
+
# @return [Types::LineageSyncSchedule]
|
15145
|
+
#
|
15146
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RedshiftLineageSyncConfigurationInput AWS API Documentation
|
15147
|
+
#
|
15148
|
+
class RedshiftLineageSyncConfigurationInput < Struct.new(
|
15149
|
+
:enabled,
|
15150
|
+
:schedule)
|
15151
|
+
SENSITIVE = []
|
15152
|
+
include Aws::Structure
|
15153
|
+
end
|
15154
|
+
|
15155
|
+
# The Amaon Redshift lineage sync configuration.
|
15156
|
+
#
|
15157
|
+
# @!attribute [rw] enabled
|
15158
|
+
# Specifies whether the Amaon Redshift lineage sync configuration is
|
15159
|
+
# enabled.
|
15160
|
+
# @return [Boolean]
|
15161
|
+
#
|
15162
|
+
# @!attribute [rw] lineage_job_id
|
15163
|
+
# The lineage job ID of the Amaon Redshift lineage sync configuration.
|
15164
|
+
# @return [String]
|
15165
|
+
#
|
15166
|
+
# @!attribute [rw] schedule
|
15167
|
+
# The schedule of teh Amaon Redshift lineage sync configuration.
|
15168
|
+
# @return [Types::LineageSyncSchedule]
|
15169
|
+
#
|
15170
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RedshiftLineageSyncConfigurationOutput AWS API Documentation
|
15171
|
+
#
|
15172
|
+
class RedshiftLineageSyncConfigurationOutput < Struct.new(
|
15173
|
+
:enabled,
|
15174
|
+
:lineage_job_id,
|
15175
|
+
:schedule)
|
15176
|
+
SENSITIVE = []
|
15177
|
+
include Aws::Structure
|
15178
|
+
end
|
15179
|
+
|
15180
|
+
# The Amazon Redshift properties.
|
15181
|
+
#
|
15182
|
+
# @!attribute [rw] credentials
|
15183
|
+
# The Amaon Redshift credentials.
|
15184
|
+
# @return [Types::RedshiftCredentials]
|
15185
|
+
#
|
15186
|
+
# @!attribute [rw] database_name
|
15187
|
+
# The Amazon Redshift database name.
|
15188
|
+
# @return [String]
|
15189
|
+
#
|
15190
|
+
# @!attribute [rw] host
|
15191
|
+
# The Amazon Redshift host.
|
15192
|
+
# @return [String]
|
15193
|
+
#
|
15194
|
+
# @!attribute [rw] lineage_sync
|
15195
|
+
# The lineage sync of the Amazon Redshift.
|
15196
|
+
# @return [Types::RedshiftLineageSyncConfigurationInput]
|
15197
|
+
#
|
15198
|
+
# @!attribute [rw] port
|
15199
|
+
# The Amaon Redshift port.
|
15200
|
+
# @return [Integer]
|
15201
|
+
#
|
15202
|
+
# @!attribute [rw] storage
|
15203
|
+
# The Amazon Redshift storage.
|
15204
|
+
# @return [Types::RedshiftStorageProperties]
|
15205
|
+
#
|
15206
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RedshiftPropertiesInput AWS API Documentation
|
15207
|
+
#
|
15208
|
+
class RedshiftPropertiesInput < Struct.new(
|
15209
|
+
:credentials,
|
15210
|
+
:database_name,
|
15211
|
+
:host,
|
15212
|
+
:lineage_sync,
|
15213
|
+
:port,
|
15214
|
+
:storage)
|
15215
|
+
SENSITIVE = [:credentials]
|
15216
|
+
include Aws::Structure
|
15217
|
+
end
|
15218
|
+
|
15219
|
+
# The Amazon Redshift properties.
|
15220
|
+
#
|
15221
|
+
# @!attribute [rw] credentials
|
15222
|
+
# The Amazon Redshift credentials.
|
15223
|
+
# @return [Types::RedshiftCredentials]
|
15224
|
+
#
|
15225
|
+
# @!attribute [rw] database_name
|
15226
|
+
# The Amazon Redshift database name.
|
15227
|
+
# @return [String]
|
15228
|
+
#
|
15229
|
+
# @!attribute [rw] is_provisioned_secret
|
15230
|
+
# Specifies whether Amaon Redshift properties has a provisioned
|
15231
|
+
# secret.
|
15232
|
+
# @return [Boolean]
|
15233
|
+
#
|
15234
|
+
# @!attribute [rw] jdbc_iam_url
|
15235
|
+
# The jdbcIam URL of the Amazon Redshift properties.
|
15236
|
+
# @return [String]
|
15237
|
+
#
|
15238
|
+
# @!attribute [rw] jdbc_url
|
15239
|
+
# The jdbcURL of the Amazon Redshift properties.
|
15240
|
+
# @return [String]
|
15241
|
+
#
|
15242
|
+
# @!attribute [rw] lineage_sync
|
15243
|
+
# The lineage syn of the Amazon Redshift properties.
|
15244
|
+
# @return [Types::RedshiftLineageSyncConfigurationOutput]
|
15245
|
+
#
|
15246
|
+
# @!attribute [rw] redshift_temp_dir
|
15247
|
+
# The redshiftTempDir of the Amazon Redshift properties.
|
15248
|
+
# @return [String]
|
15249
|
+
#
|
15250
|
+
# @!attribute [rw] status
|
15251
|
+
# The status in the Amazon Redshift properties.
|
15252
|
+
# @return [String]
|
15253
|
+
#
|
15254
|
+
# @!attribute [rw] storage
|
15255
|
+
# The storage in the Amazon Redshift properties.
|
15256
|
+
# @return [Types::RedshiftStorageProperties]
|
15257
|
+
#
|
15258
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RedshiftPropertiesOutput AWS API Documentation
|
15259
|
+
#
|
15260
|
+
class RedshiftPropertiesOutput < Struct.new(
|
15261
|
+
:credentials,
|
15262
|
+
:database_name,
|
15263
|
+
:is_provisioned_secret,
|
15264
|
+
:jdbc_iam_url,
|
15265
|
+
:jdbc_url,
|
15266
|
+
:lineage_sync,
|
15267
|
+
:redshift_temp_dir,
|
15268
|
+
:status,
|
15269
|
+
:storage)
|
15270
|
+
SENSITIVE = [:credentials]
|
15271
|
+
include Aws::Structure
|
15272
|
+
end
|
15273
|
+
|
15274
|
+
# Amazon Redshift properties patch.
|
15275
|
+
#
|
15276
|
+
# @!attribute [rw] credentials
|
15277
|
+
# The credentials in the Amazon Redshift properties patch.
|
15278
|
+
# @return [Types::RedshiftCredentials]
|
15279
|
+
#
|
15280
|
+
# @!attribute [rw] database_name
|
15281
|
+
# The name in the Amazon Redshift properties patch.
|
15282
|
+
# @return [String]
|
15283
|
+
#
|
15284
|
+
# @!attribute [rw] host
|
15285
|
+
# The host in the Amazon Redshift properties patch.
|
15286
|
+
# @return [String]
|
15287
|
+
#
|
15288
|
+
# @!attribute [rw] lineage_sync
|
15289
|
+
# The lineage sync in the Amazon Redshift properties patch.
|
15290
|
+
# @return [Types::RedshiftLineageSyncConfigurationInput]
|
15291
|
+
#
|
15292
|
+
# @!attribute [rw] port
|
15293
|
+
# The port in the Amazon Redshift properties patch.
|
15294
|
+
# @return [Integer]
|
15295
|
+
#
|
15296
|
+
# @!attribute [rw] storage
|
15297
|
+
# The storage in the Amazon Redshift properties patch.
|
15298
|
+
# @return [Types::RedshiftStorageProperties]
|
12538
15299
|
#
|
12539
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/
|
15300
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RedshiftPropertiesPatch AWS API Documentation
|
12540
15301
|
#
|
12541
|
-
class
|
12542
|
-
:
|
12543
|
-
|
15302
|
+
class RedshiftPropertiesPatch < Struct.new(
|
15303
|
+
:credentials,
|
15304
|
+
:database_name,
|
15305
|
+
:host,
|
15306
|
+
:lineage_sync,
|
15307
|
+
:port,
|
15308
|
+
:storage)
|
15309
|
+
SENSITIVE = [:credentials]
|
12544
15310
|
include Aws::Structure
|
12545
15311
|
end
|
12546
15312
|
|
@@ -12682,6 +15448,64 @@ module Aws::DataZone
|
|
12682
15448
|
class Unknown < RedshiftStorage; end
|
12683
15449
|
end
|
12684
15450
|
|
15451
|
+
# The Amazon Redshift storage properties.
|
15452
|
+
#
|
15453
|
+
# @note RedshiftStorageProperties is a union - when making an API calls you must set exactly one of the members.
|
15454
|
+
#
|
15455
|
+
# @note RedshiftStorageProperties is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RedshiftStorageProperties corresponding to the set member.
|
15456
|
+
#
|
15457
|
+
# @!attribute [rw] cluster_name
|
15458
|
+
# The cluster name in the Amazon Redshift storage properties.
|
15459
|
+
# @return [String]
|
15460
|
+
#
|
15461
|
+
# @!attribute [rw] workgroup_name
|
15462
|
+
# The workgroup name in the Amazon Redshift storage properties.
|
15463
|
+
# @return [String]
|
15464
|
+
#
|
15465
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/RedshiftStorageProperties AWS API Documentation
|
15466
|
+
#
|
15467
|
+
class RedshiftStorageProperties < Struct.new(
|
15468
|
+
:cluster_name,
|
15469
|
+
:workgroup_name,
|
15470
|
+
:unknown)
|
15471
|
+
SENSITIVE = []
|
15472
|
+
include Aws::Structure
|
15473
|
+
include Aws::Structure::Union
|
15474
|
+
|
15475
|
+
class ClusterName < RedshiftStorageProperties; end
|
15476
|
+
class WorkgroupName < RedshiftStorageProperties; end
|
15477
|
+
class Unknown < RedshiftStorageProperties; end
|
15478
|
+
end
|
15479
|
+
|
15480
|
+
# The Amazon Web Services Region.
|
15481
|
+
#
|
15482
|
+
# @note Region is a union - when making an API calls you must set exactly one of the members.
|
15483
|
+
#
|
15484
|
+
# @note Region is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Region corresponding to the set member.
|
15485
|
+
#
|
15486
|
+
# @!attribute [rw] region_name
|
15487
|
+
# The Amazon Web Services Region name.
|
15488
|
+
# @return [String]
|
15489
|
+
#
|
15490
|
+
# @!attribute [rw] region_name_path
|
15491
|
+
# The region name path.
|
15492
|
+
# @return [String]
|
15493
|
+
#
|
15494
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/Region AWS API Documentation
|
15495
|
+
#
|
15496
|
+
class Region < Struct.new(
|
15497
|
+
:region_name,
|
15498
|
+
:region_name_path,
|
15499
|
+
:unknown)
|
15500
|
+
SENSITIVE = []
|
15501
|
+
include Aws::Structure
|
15502
|
+
include Aws::Structure::Union
|
15503
|
+
|
15504
|
+
class RegionName < Region; end
|
15505
|
+
class RegionNamePath < Region; end
|
15506
|
+
class Unknown < Region; end
|
15507
|
+
end
|
15508
|
+
|
12685
15509
|
# The details of the automatically generated business metadata that is
|
12686
15510
|
# rejected.
|
12687
15511
|
#
|
@@ -13448,6 +16272,44 @@ module Aws::DataZone
|
|
13448
16272
|
include Aws::Structure
|
13449
16273
|
end
|
13450
16274
|
|
16275
|
+
# The Amazon SageMaker run configuration.
|
16276
|
+
#
|
16277
|
+
# @!attribute [rw] tracking_assets
|
16278
|
+
# The tracking assets of the Amazon SageMaker run.
|
16279
|
+
# @return [Hash<String,Array<String>>]
|
16280
|
+
#
|
16281
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SageMakerRunConfigurationInput AWS API Documentation
|
16282
|
+
#
|
16283
|
+
class SageMakerRunConfigurationInput < Struct.new(
|
16284
|
+
:tracking_assets)
|
16285
|
+
SENSITIVE = []
|
16286
|
+
include Aws::Structure
|
16287
|
+
end
|
16288
|
+
|
16289
|
+
# The Amazon SageMaker run configuration.
|
16290
|
+
#
|
16291
|
+
# @!attribute [rw] account_id
|
16292
|
+
# The Amazon SageMaker account ID.
|
16293
|
+
# @return [String]
|
16294
|
+
#
|
16295
|
+
# @!attribute [rw] region
|
16296
|
+
# The Amazon SageMaker Region.
|
16297
|
+
# @return [String]
|
16298
|
+
#
|
16299
|
+
# @!attribute [rw] tracking_assets
|
16300
|
+
# The tracking assets of the Amazon SageMaker.
|
16301
|
+
# @return [Hash<String,Array<String>>]
|
16302
|
+
#
|
16303
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SageMakerRunConfigurationOutput AWS API Documentation
|
16304
|
+
#
|
16305
|
+
class SageMakerRunConfigurationOutput < Struct.new(
|
16306
|
+
:account_id,
|
16307
|
+
:region,
|
16308
|
+
:tracking_assets)
|
16309
|
+
SENSITIVE = []
|
16310
|
+
include Aws::Structure
|
16311
|
+
end
|
16312
|
+
|
13451
16313
|
# The details of the schedule of the data source runs.
|
13452
16314
|
#
|
13453
16315
|
# @!attribute [rw] schedule
|
@@ -13942,142 +16804,418 @@ module Aws::DataZone
|
|
13942
16804
|
# `SearchUserProfiles` to list the next set of results.
|
13943
16805
|
# @return [Integer]
|
13944
16806
|
#
|
13945
|
-
# @!attribute [rw] next_token
|
13946
|
-
# When the number of results is greater than the default value for the
|
13947
|
-
# `MaxResults` parameter, or if you explicitly specify a value for
|
13948
|
-
# `MaxResults` that is less than the number of results, the response
|
13949
|
-
# includes a pagination token named `NextToken`. You can specify this
|
13950
|
-
# `NextToken` value in a subsequent call to `SearchUserProfiles` to
|
13951
|
-
# list the next set of results.
|
16807
|
+
# @!attribute [rw] next_token
|
16808
|
+
# When the number of results is greater than the default value for the
|
16809
|
+
# `MaxResults` parameter, or if you explicitly specify a value for
|
16810
|
+
# `MaxResults` that is less than the number of results, the response
|
16811
|
+
# includes a pagination token named `NextToken`. You can specify this
|
16812
|
+
# `NextToken` value in a subsequent call to `SearchUserProfiles` to
|
16813
|
+
# list the next set of results.
|
16814
|
+
# @return [String]
|
16815
|
+
#
|
16816
|
+
# @!attribute [rw] search_text
|
16817
|
+
# Specifies the text for which to search.
|
16818
|
+
# @return [String]
|
16819
|
+
#
|
16820
|
+
# @!attribute [rw] user_type
|
16821
|
+
# Specifies the user type for the `SearchUserProfiles` action.
|
16822
|
+
# @return [String]
|
16823
|
+
#
|
16824
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SearchUserProfilesInput AWS API Documentation
|
16825
|
+
#
|
16826
|
+
class SearchUserProfilesInput < Struct.new(
|
16827
|
+
:domain_identifier,
|
16828
|
+
:max_results,
|
16829
|
+
:next_token,
|
16830
|
+
:search_text,
|
16831
|
+
:user_type)
|
16832
|
+
SENSITIVE = [:search_text]
|
16833
|
+
include Aws::Structure
|
16834
|
+
end
|
16835
|
+
|
16836
|
+
# @!attribute [rw] items
|
16837
|
+
# The results of the `SearchUserProfiles` action.
|
16838
|
+
# @return [Array<Types::UserProfileSummary>]
|
16839
|
+
#
|
16840
|
+
# @!attribute [rw] next_token
|
16841
|
+
# When the number of results is greater than the default value for the
|
16842
|
+
# `MaxResults` parameter, or if you explicitly specify a value for
|
16843
|
+
# `MaxResults` that is less than the number of results, the response
|
16844
|
+
# includes a pagination token named `NextToken`. You can specify this
|
16845
|
+
# `NextToken` value in a subsequent call to `SearchUserProfiles` to
|
16846
|
+
# list the next set of results.
|
16847
|
+
# @return [String]
|
16848
|
+
#
|
16849
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SearchUserProfilesOutput AWS API Documentation
|
16850
|
+
#
|
16851
|
+
class SearchUserProfilesOutput < Struct.new(
|
16852
|
+
:items,
|
16853
|
+
:next_token)
|
16854
|
+
SENSITIVE = []
|
16855
|
+
include Aws::Structure
|
16856
|
+
end
|
16857
|
+
|
16858
|
+
# The details for the self granting status.
|
16859
|
+
#
|
16860
|
+
# @!attribute [rw] database_name
|
16861
|
+
# The name of the database used for the data source.
|
16862
|
+
# @return [String]
|
16863
|
+
#
|
16864
|
+
# @!attribute [rw] failure_cause
|
16865
|
+
# The reason for why the operation failed.
|
16866
|
+
# @return [String]
|
16867
|
+
#
|
16868
|
+
# @!attribute [rw] schema_name
|
16869
|
+
# The name of the schema used in the data source.
|
16870
|
+
# @return [String]
|
16871
|
+
#
|
16872
|
+
# @!attribute [rw] status
|
16873
|
+
# The self granting status of the data source.
|
16874
|
+
# @return [String]
|
16875
|
+
#
|
16876
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SelfGrantStatusDetail AWS API Documentation
|
16877
|
+
#
|
16878
|
+
class SelfGrantStatusDetail < Struct.new(
|
16879
|
+
:database_name,
|
16880
|
+
:failure_cause,
|
16881
|
+
:schema_name,
|
16882
|
+
:status)
|
16883
|
+
SENSITIVE = []
|
16884
|
+
include Aws::Structure
|
16885
|
+
end
|
16886
|
+
|
16887
|
+
# The details for the self granting status for a data source.
|
16888
|
+
#
|
16889
|
+
# @note SelfGrantStatusOutput is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SelfGrantStatusOutput corresponding to the set member.
|
16890
|
+
#
|
16891
|
+
# @!attribute [rw] glue_self_grant_status
|
16892
|
+
# The details for the self granting status for a Glue data source.
|
16893
|
+
# @return [Types::GlueSelfGrantStatusOutput]
|
16894
|
+
#
|
16895
|
+
# @!attribute [rw] redshift_self_grant_status
|
16896
|
+
# The details for the self granting status for an Amazon Redshift data
|
16897
|
+
# source.
|
16898
|
+
# @return [Types::RedshiftSelfGrantStatusOutput]
|
16899
|
+
#
|
16900
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SelfGrantStatusOutput AWS API Documentation
|
16901
|
+
#
|
16902
|
+
class SelfGrantStatusOutput < Struct.new(
|
16903
|
+
:glue_self_grant_status,
|
16904
|
+
:redshift_self_grant_status,
|
16905
|
+
:unknown)
|
16906
|
+
SENSITIVE = []
|
16907
|
+
include Aws::Structure
|
16908
|
+
include Aws::Structure::Union
|
16909
|
+
|
16910
|
+
class GlueSelfGrantStatus < SelfGrantStatusOutput; end
|
16911
|
+
class RedshiftSelfGrantStatus < SelfGrantStatusOutput; end
|
16912
|
+
class Unknown < SelfGrantStatusOutput; end
|
16913
|
+
end
|
16914
|
+
|
16915
|
+
# The request has exceeded the specified service quota.
|
16916
|
+
#
|
16917
|
+
# @!attribute [rw] message
|
16918
|
+
# @return [String]
|
16919
|
+
#
|
16920
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ServiceQuotaExceededException AWS API Documentation
|
16921
|
+
#
|
16922
|
+
class ServiceQuotaExceededException < Struct.new(
|
16923
|
+
:message)
|
16924
|
+
SENSITIVE = []
|
16925
|
+
include Aws::Structure
|
16926
|
+
end
|
16927
|
+
|
16928
|
+
# The single sign-on details in Amazon DataZone.
|
16929
|
+
#
|
16930
|
+
# @!attribute [rw] type
|
16931
|
+
# The type of single sign-on in Amazon DataZone.
|
16932
|
+
# @return [String]
|
16933
|
+
#
|
16934
|
+
# @!attribute [rw] user_assignment
|
16935
|
+
# The single sign-on user assignment in Amazon DataZone.
|
16936
|
+
# @return [String]
|
16937
|
+
#
|
16938
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SingleSignOn AWS API Documentation
|
16939
|
+
#
|
16940
|
+
class SingleSignOn < Struct.new(
|
16941
|
+
:type,
|
16942
|
+
:user_assignment)
|
16943
|
+
SENSITIVE = []
|
16944
|
+
include Aws::Structure
|
16945
|
+
end
|
16946
|
+
|
16947
|
+
# The Spark EMR properties.
|
16948
|
+
#
|
16949
|
+
# @!attribute [rw] compute_arn
|
16950
|
+
# The compute ARN of Spark EMR.
|
16951
|
+
# @return [String]
|
16952
|
+
#
|
16953
|
+
# @!attribute [rw] instance_profile_arn
|
16954
|
+
# The instance profile ARN of Spark EMR.
|
16955
|
+
# @return [String]
|
16956
|
+
#
|
16957
|
+
# @!attribute [rw] java_virtual_env
|
16958
|
+
# The java virtual env of the Spark EMR.
|
16959
|
+
# @return [String]
|
16960
|
+
#
|
16961
|
+
# @!attribute [rw] log_uri
|
16962
|
+
# The log URI of the Spark EMR.
|
16963
|
+
# @return [String]
|
16964
|
+
#
|
16965
|
+
# @!attribute [rw] python_virtual_env
|
16966
|
+
# The Python virtual env of the Spark EMR.
|
16967
|
+
# @return [String]
|
16968
|
+
#
|
16969
|
+
# @!attribute [rw] runtime_role
|
16970
|
+
# The runtime role of the Spark EMR.
|
16971
|
+
# @return [String]
|
16972
|
+
#
|
16973
|
+
# @!attribute [rw] trusted_certificates_s3_uri
|
16974
|
+
# The certificates S3 URI of the Spark EMR.
|
16975
|
+
# @return [String]
|
16976
|
+
#
|
16977
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SparkEmrPropertiesInput AWS API Documentation
|
16978
|
+
#
|
16979
|
+
class SparkEmrPropertiesInput < Struct.new(
|
16980
|
+
:compute_arn,
|
16981
|
+
:instance_profile_arn,
|
16982
|
+
:java_virtual_env,
|
16983
|
+
:log_uri,
|
16984
|
+
:python_virtual_env,
|
16985
|
+
:runtime_role,
|
16986
|
+
:trusted_certificates_s3_uri)
|
16987
|
+
SENSITIVE = []
|
16988
|
+
include Aws::Structure
|
16989
|
+
end
|
16990
|
+
|
16991
|
+
# The Spark EMR properties.
|
16992
|
+
#
|
16993
|
+
# @!attribute [rw] compute_arn
|
16994
|
+
# The compute ARN of the Spark EMR.
|
16995
|
+
# @return [String]
|
16996
|
+
#
|
16997
|
+
# @!attribute [rw] credentials
|
16998
|
+
# The credentials of the Spark EMR.
|
16999
|
+
# @return [Types::UsernamePassword]
|
17000
|
+
#
|
17001
|
+
# @!attribute [rw] credentials_expiration
|
17002
|
+
# The credential expiration of the Spark EMR.
|
17003
|
+
# @return [Time]
|
17004
|
+
#
|
17005
|
+
# @!attribute [rw] governance_type
|
17006
|
+
# The governance type of the Spark EMR.
|
17007
|
+
# @return [String]
|
17008
|
+
#
|
17009
|
+
# @!attribute [rw] instance_profile_arn
|
17010
|
+
# The instance profile ARN of the Spark EMR.
|
17011
|
+
# @return [String]
|
17012
|
+
#
|
17013
|
+
# @!attribute [rw] java_virtual_env
|
17014
|
+
# The Java virtual env of the Spark EMR.
|
17015
|
+
# @return [String]
|
17016
|
+
#
|
17017
|
+
# @!attribute [rw] livy_endpoint
|
17018
|
+
# The livy endpoint of the Spark EMR.
|
17019
|
+
# @return [String]
|
17020
|
+
#
|
17021
|
+
# @!attribute [rw] log_uri
|
17022
|
+
# The log URI of the Spark EMR.
|
17023
|
+
# @return [String]
|
17024
|
+
#
|
17025
|
+
# @!attribute [rw] python_virtual_env
|
17026
|
+
# The Python virtual env of the Spark EMR.
|
17027
|
+
# @return [String]
|
17028
|
+
#
|
17029
|
+
# @!attribute [rw] runtime_role
|
17030
|
+
# The runtime role of the Spark EMR.
|
17031
|
+
# @return [String]
|
17032
|
+
#
|
17033
|
+
# @!attribute [rw] trusted_certificates_s3_uri
|
17034
|
+
# The trusted certificate S3 URL of the Spark EMR.
|
17035
|
+
# @return [String]
|
17036
|
+
#
|
17037
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SparkEmrPropertiesOutput AWS API Documentation
|
17038
|
+
#
|
17039
|
+
class SparkEmrPropertiesOutput < Struct.new(
|
17040
|
+
:compute_arn,
|
17041
|
+
:credentials,
|
17042
|
+
:credentials_expiration,
|
17043
|
+
:governance_type,
|
17044
|
+
:instance_profile_arn,
|
17045
|
+
:java_virtual_env,
|
17046
|
+
:livy_endpoint,
|
17047
|
+
:log_uri,
|
17048
|
+
:python_virtual_env,
|
17049
|
+
:runtime_role,
|
17050
|
+
:trusted_certificates_s3_uri)
|
17051
|
+
SENSITIVE = [:credentials]
|
17052
|
+
include Aws::Structure
|
17053
|
+
end
|
17054
|
+
|
17055
|
+
# The Spark EMR properties patch.
|
17056
|
+
#
|
17057
|
+
# @!attribute [rw] compute_arn
|
17058
|
+
# The compute ARN in the Spark EMR properties patch.
|
17059
|
+
# @return [String]
|
17060
|
+
#
|
17061
|
+
# @!attribute [rw] instance_profile_arn
|
17062
|
+
# The instance profile ARN in the Spark EMR properties patch.
|
17063
|
+
# @return [String]
|
17064
|
+
#
|
17065
|
+
# @!attribute [rw] java_virtual_env
|
17066
|
+
# The Java virtual evn in the Spark EMR properties patch.
|
17067
|
+
# @return [String]
|
17068
|
+
#
|
17069
|
+
# @!attribute [rw] log_uri
|
17070
|
+
# The log URI in the Spark EMR properties patch.
|
17071
|
+
# @return [String]
|
17072
|
+
#
|
17073
|
+
# @!attribute [rw] python_virtual_env
|
17074
|
+
# The Python virtual env in the Spark EMR properties patch.
|
13952
17075
|
# @return [String]
|
13953
17076
|
#
|
13954
|
-
# @!attribute [rw]
|
13955
|
-
#
|
17077
|
+
# @!attribute [rw] runtime_role
|
17078
|
+
# The runtime role in the Spark EMR properties patch.
|
13956
17079
|
# @return [String]
|
13957
17080
|
#
|
13958
|
-
# @!attribute [rw]
|
13959
|
-
#
|
17081
|
+
# @!attribute [rw] trusted_certificates_s3_uri
|
17082
|
+
# The trusted certificates S3 URI in the Spark EMR properties patch.
|
13960
17083
|
# @return [String]
|
13961
17084
|
#
|
13962
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/
|
17085
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SparkEmrPropertiesPatch AWS API Documentation
|
13963
17086
|
#
|
13964
|
-
class
|
13965
|
-
:
|
13966
|
-
:
|
13967
|
-
:
|
13968
|
-
:
|
13969
|
-
:
|
13970
|
-
|
17087
|
+
class SparkEmrPropertiesPatch < Struct.new(
|
17088
|
+
:compute_arn,
|
17089
|
+
:instance_profile_arn,
|
17090
|
+
:java_virtual_env,
|
17091
|
+
:log_uri,
|
17092
|
+
:python_virtual_env,
|
17093
|
+
:runtime_role,
|
17094
|
+
:trusted_certificates_s3_uri)
|
17095
|
+
SENSITIVE = []
|
13971
17096
|
include Aws::Structure
|
13972
17097
|
end
|
13973
17098
|
|
13974
|
-
#
|
13975
|
-
# The results of the `SearchUserProfiles` action.
|
13976
|
-
# @return [Array<Types::UserProfileSummary>]
|
17099
|
+
# The Spark Amazon Web Services Glue args.
|
13977
17100
|
#
|
13978
|
-
# @!attribute [rw]
|
13979
|
-
#
|
13980
|
-
# `MaxResults` parameter, or if you explicitly specify a value for
|
13981
|
-
# `MaxResults` that is less than the number of results, the response
|
13982
|
-
# includes a pagination token named `NextToken`. You can specify this
|
13983
|
-
# `NextToken` value in a subsequent call to `SearchUserProfiles` to
|
13984
|
-
# list the next set of results.
|
17101
|
+
# @!attribute [rw] connection
|
17102
|
+
# The connection in the Spark Amazon Web Services Glue args.
|
13985
17103
|
# @return [String]
|
13986
17104
|
#
|
13987
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/
|
17105
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SparkGlueArgs AWS API Documentation
|
13988
17106
|
#
|
13989
|
-
class
|
13990
|
-
:
|
13991
|
-
:next_token)
|
17107
|
+
class SparkGlueArgs < Struct.new(
|
17108
|
+
:connection)
|
13992
17109
|
SENSITIVE = []
|
13993
17110
|
include Aws::Structure
|
13994
17111
|
end
|
13995
17112
|
|
13996
|
-
# The
|
17113
|
+
# The Spark Amazon Web Services Glue properties.
|
13997
17114
|
#
|
13998
|
-
# @!attribute [rw]
|
13999
|
-
# The
|
17115
|
+
# @!attribute [rw] additional_args
|
17116
|
+
# The additional args in the Spark Amazon Web Services Glue
|
17117
|
+
# properties.
|
17118
|
+
# @return [Types::SparkGlueArgs]
|
17119
|
+
#
|
17120
|
+
# @!attribute [rw] glue_connection_name
|
17121
|
+
# The Amazon Web Services Glue connection name in the Spark Amazon Web
|
17122
|
+
# Services Glue properties.
|
14000
17123
|
# @return [String]
|
14001
17124
|
#
|
14002
|
-
# @!attribute [rw]
|
14003
|
-
# The
|
17125
|
+
# @!attribute [rw] glue_version
|
17126
|
+
# The Amazon Web Services Glue version in the Spark Amazon Web
|
17127
|
+
# Services Glue properties.
|
14004
17128
|
# @return [String]
|
14005
17129
|
#
|
14006
|
-
# @!attribute [rw]
|
14007
|
-
# The
|
17130
|
+
# @!attribute [rw] idle_timeout
|
17131
|
+
# The idle timeout in the Spark Amazon Web Services Glue properties.
|
17132
|
+
# @return [Integer]
|
17133
|
+
#
|
17134
|
+
# @!attribute [rw] java_virtual_env
|
17135
|
+
# The Java virtual env in the Spark Amazon Web Services Glue
|
17136
|
+
# properties.
|
14008
17137
|
# @return [String]
|
14009
17138
|
#
|
14010
|
-
# @!attribute [rw]
|
14011
|
-
# The
|
17139
|
+
# @!attribute [rw] number_of_workers
|
17140
|
+
# The number of workers in the Spark Amazon Web Services Glue
|
17141
|
+
# properties.
|
17142
|
+
# @return [Integer]
|
17143
|
+
#
|
17144
|
+
# @!attribute [rw] python_virtual_env
|
17145
|
+
# The Python virtual env in the Spark Amazon Web Services Glue
|
17146
|
+
# properties.
|
14012
17147
|
# @return [String]
|
14013
17148
|
#
|
14014
|
-
#
|
17149
|
+
# @!attribute [rw] worker_type
|
17150
|
+
# The worker type in the Spark Amazon Web Services Glue properties.
|
17151
|
+
# @return [String]
|
14015
17152
|
#
|
14016
|
-
|
14017
|
-
|
14018
|
-
|
14019
|
-
:
|
14020
|
-
:
|
17153
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SparkGluePropertiesInput AWS API Documentation
|
17154
|
+
#
|
17155
|
+
class SparkGluePropertiesInput < Struct.new(
|
17156
|
+
:additional_args,
|
17157
|
+
:glue_connection_name,
|
17158
|
+
:glue_version,
|
17159
|
+
:idle_timeout,
|
17160
|
+
:java_virtual_env,
|
17161
|
+
:number_of_workers,
|
17162
|
+
:python_virtual_env,
|
17163
|
+
:worker_type)
|
14021
17164
|
SENSITIVE = []
|
14022
17165
|
include Aws::Structure
|
14023
17166
|
end
|
14024
17167
|
|
14025
|
-
# The
|
14026
|
-
#
|
14027
|
-
# @note SelfGrantStatusOutput is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SelfGrantStatusOutput corresponding to the set member.
|
17168
|
+
# The Spark Amazon Web Services Glue properties.
|
14028
17169
|
#
|
14029
|
-
# @!attribute [rw]
|
14030
|
-
# The
|
14031
|
-
#
|
17170
|
+
# @!attribute [rw] additional_args
|
17171
|
+
# The additional args in the Spark Amazon Web Services Glue
|
17172
|
+
# properties.
|
17173
|
+
# @return [Types::SparkGlueArgs]
|
14032
17174
|
#
|
14033
|
-
# @!attribute [rw]
|
14034
|
-
# The
|
14035
|
-
#
|
14036
|
-
# @return [
|
17175
|
+
# @!attribute [rw] glue_connection_name
|
17176
|
+
# The Amazon Web Services Glue connection name in the Spark Amazon Web
|
17177
|
+
# Services Glue properties.
|
17178
|
+
# @return [String]
|
14037
17179
|
#
|
14038
|
-
#
|
17180
|
+
# @!attribute [rw] glue_version
|
17181
|
+
# The Amazon Web Services Glue version in the Spark Amazon Web
|
17182
|
+
# Services Glue properties.
|
17183
|
+
# @return [String]
|
14039
17184
|
#
|
14040
|
-
|
14041
|
-
|
14042
|
-
|
14043
|
-
:unknown)
|
14044
|
-
SENSITIVE = []
|
14045
|
-
include Aws::Structure
|
14046
|
-
include Aws::Structure::Union
|
14047
|
-
|
14048
|
-
class GlueSelfGrantStatus < SelfGrantStatusOutput; end
|
14049
|
-
class RedshiftSelfGrantStatus < SelfGrantStatusOutput; end
|
14050
|
-
class Unknown < SelfGrantStatusOutput; end
|
14051
|
-
end
|
14052
|
-
|
14053
|
-
# The request has exceeded the specified service quota.
|
17185
|
+
# @!attribute [rw] idle_timeout
|
17186
|
+
# The idle timeout in the Spark Amazon Web Services Glue properties.
|
17187
|
+
# @return [Integer]
|
14054
17188
|
#
|
14055
|
-
# @!attribute [rw]
|
17189
|
+
# @!attribute [rw] java_virtual_env
|
17190
|
+
# The Java virtual env in the Spark Amazon Web Services Glue
|
17191
|
+
# properties.
|
14056
17192
|
# @return [String]
|
14057
17193
|
#
|
14058
|
-
#
|
14059
|
-
#
|
14060
|
-
|
14061
|
-
|
14062
|
-
SENSITIVE = []
|
14063
|
-
include Aws::Structure
|
14064
|
-
end
|
14065
|
-
|
14066
|
-
# The single sign-on details in Amazon DataZone.
|
17194
|
+
# @!attribute [rw] number_of_workers
|
17195
|
+
# The number of workers in the Spark Amazon Web Services Glue
|
17196
|
+
# properties.
|
17197
|
+
# @return [Integer]
|
14067
17198
|
#
|
14068
|
-
# @!attribute [rw]
|
14069
|
-
# The
|
17199
|
+
# @!attribute [rw] python_virtual_env
|
17200
|
+
# The Python virtual env in the Spark Amazon Web Services Glue
|
17201
|
+
# properties.
|
14070
17202
|
# @return [String]
|
14071
17203
|
#
|
14072
|
-
# @!attribute [rw]
|
14073
|
-
# The
|
17204
|
+
# @!attribute [rw] worker_type
|
17205
|
+
# The worker type in the Spark Amazon Web Services Glue properties.
|
14074
17206
|
# @return [String]
|
14075
17207
|
#
|
14076
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/
|
17208
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SparkGluePropertiesOutput AWS API Documentation
|
14077
17209
|
#
|
14078
|
-
class
|
14079
|
-
:
|
14080
|
-
:
|
17210
|
+
class SparkGluePropertiesOutput < Struct.new(
|
17211
|
+
:additional_args,
|
17212
|
+
:glue_connection_name,
|
17213
|
+
:glue_version,
|
17214
|
+
:idle_timeout,
|
17215
|
+
:java_virtual_env,
|
17216
|
+
:number_of_workers,
|
17217
|
+
:python_virtual_env,
|
17218
|
+
:worker_type)
|
14081
17219
|
SENSITIVE = []
|
14082
17220
|
include Aws::Structure
|
14083
17221
|
end
|
@@ -15246,6 +18384,95 @@ module Aws::DataZone
|
|
15246
18384
|
include Aws::Structure
|
15247
18385
|
end
|
15248
18386
|
|
18387
|
+
# @!attribute [rw] aws_location
|
18388
|
+
# The location where a connection is to be updated.
|
18389
|
+
# @return [Types::AwsLocation]
|
18390
|
+
#
|
18391
|
+
# @!attribute [rw] description
|
18392
|
+
# The description of a connection.
|
18393
|
+
# @return [String]
|
18394
|
+
#
|
18395
|
+
# @!attribute [rw] domain_identifier
|
18396
|
+
# The ID of the domain where a connection is to be updated.
|
18397
|
+
# @return [String]
|
18398
|
+
#
|
18399
|
+
# @!attribute [rw] identifier
|
18400
|
+
# The ID of the connection to be updated.
|
18401
|
+
# @return [String]
|
18402
|
+
#
|
18403
|
+
# @!attribute [rw] props
|
18404
|
+
# The connection props.
|
18405
|
+
# @return [Types::ConnectionPropertiesPatch]
|
18406
|
+
#
|
18407
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateConnectionInput AWS API Documentation
|
18408
|
+
#
|
18409
|
+
class UpdateConnectionInput < Struct.new(
|
18410
|
+
:aws_location,
|
18411
|
+
:description,
|
18412
|
+
:domain_identifier,
|
18413
|
+
:identifier,
|
18414
|
+
:props)
|
18415
|
+
SENSITIVE = [:description]
|
18416
|
+
include Aws::Structure
|
18417
|
+
end
|
18418
|
+
|
18419
|
+
# @!attribute [rw] connection_id
|
18420
|
+
# The ID of the connection.
|
18421
|
+
# @return [String]
|
18422
|
+
#
|
18423
|
+
# @!attribute [rw] description
|
18424
|
+
# The connection description.
|
18425
|
+
# @return [String]
|
18426
|
+
#
|
18427
|
+
# @!attribute [rw] domain_id
|
18428
|
+
# The ID of the domain where a connection is to be updated.
|
18429
|
+
# @return [String]
|
18430
|
+
#
|
18431
|
+
# @!attribute [rw] domain_unit_id
|
18432
|
+
# The ID of the domain unit where a connection is to be updated.
|
18433
|
+
# @return [String]
|
18434
|
+
#
|
18435
|
+
# @!attribute [rw] environment_id
|
18436
|
+
# The ID of the environment where a connection is to be updated.
|
18437
|
+
# @return [String]
|
18438
|
+
#
|
18439
|
+
# @!attribute [rw] name
|
18440
|
+
# The name of the connection.
|
18441
|
+
# @return [String]
|
18442
|
+
#
|
18443
|
+
# @!attribute [rw] physical_endpoints
|
18444
|
+
# The physical endpoints of the connection.
|
18445
|
+
# @return [Array<Types::PhysicalEndpoint>]
|
18446
|
+
#
|
18447
|
+
# @!attribute [rw] project_id
|
18448
|
+
# The project ID of the connection.
|
18449
|
+
# @return [String]
|
18450
|
+
#
|
18451
|
+
# @!attribute [rw] props
|
18452
|
+
# The connection props.
|
18453
|
+
# @return [Types::ConnectionPropertiesOutput]
|
18454
|
+
#
|
18455
|
+
# @!attribute [rw] type
|
18456
|
+
# The connection type.
|
18457
|
+
# @return [String]
|
18458
|
+
#
|
18459
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateConnectionOutput AWS API Documentation
|
18460
|
+
#
|
18461
|
+
class UpdateConnectionOutput < Struct.new(
|
18462
|
+
:connection_id,
|
18463
|
+
:description,
|
18464
|
+
:domain_id,
|
18465
|
+
:domain_unit_id,
|
18466
|
+
:environment_id,
|
18467
|
+
:name,
|
18468
|
+
:physical_endpoints,
|
18469
|
+
:project_id,
|
18470
|
+
:props,
|
18471
|
+
:type)
|
18472
|
+
SENSITIVE = [:description]
|
18473
|
+
include Aws::Structure
|
18474
|
+
end
|
18475
|
+
|
15249
18476
|
# @!attribute [rw] asset_forms_input
|
15250
18477
|
# The asset forms to be updated as part of the `UpdateDataSource`
|
15251
18478
|
# action.
|
@@ -15325,6 +18552,10 @@ module Aws::DataZone
|
|
15325
18552
|
# action.
|
15326
18553
|
# @return [Types::DataSourceConfigurationOutput]
|
15327
18554
|
#
|
18555
|
+
# @!attribute [rw] connection_id
|
18556
|
+
# The connection ID.
|
18557
|
+
# @return [String]
|
18558
|
+
#
|
15328
18559
|
# @!attribute [rw] created_at
|
15329
18560
|
# The timestamp of when the data source was updated.
|
15330
18561
|
# @return [Time]
|
@@ -15418,6 +18649,7 @@ module Aws::DataZone
|
|
15418
18649
|
class UpdateDataSourceOutput < Struct.new(
|
15419
18650
|
:asset_forms_output,
|
15420
18651
|
:configuration,
|
18652
|
+
:connection_id,
|
15421
18653
|
:created_at,
|
15422
18654
|
:description,
|
15423
18655
|
:domain_id,
|
@@ -15467,6 +18699,10 @@ module Aws::DataZone
|
|
15467
18699
|
# The name to be updated as part of the `UpdateDomain` action.
|
15468
18700
|
# @return [String]
|
15469
18701
|
#
|
18702
|
+
# @!attribute [rw] service_role
|
18703
|
+
# The service role of the domain.
|
18704
|
+
# @return [String]
|
18705
|
+
#
|
15470
18706
|
# @!attribute [rw] single_sign_on
|
15471
18707
|
# The single sign-on option to be updated as part of the
|
15472
18708
|
# `UpdateDomain` action.
|
@@ -15480,6 +18716,7 @@ module Aws::DataZone
|
|
15480
18716
|
:domain_execution_role,
|
15481
18717
|
:identifier,
|
15482
18718
|
:name,
|
18719
|
+
:service_role,
|
15483
18720
|
:single_sign_on)
|
15484
18721
|
SENSITIVE = []
|
15485
18722
|
include Aws::Structure
|
@@ -15510,6 +18747,10 @@ module Aws::DataZone
|
|
15510
18747
|
# The ID of the root domain unit.
|
15511
18748
|
# @return [String]
|
15512
18749
|
#
|
18750
|
+
# @!attribute [rw] service_role
|
18751
|
+
# The service role of the domain.
|
18752
|
+
# @return [String]
|
18753
|
+
#
|
15513
18754
|
# @!attribute [rw] single_sign_on
|
15514
18755
|
# The single sign-on option of the Amazon DataZone domain.
|
15515
18756
|
# @return [Types::SingleSignOn]
|
@@ -15523,6 +18764,7 @@ module Aws::DataZone
|
|
15523
18764
|
:last_updated_at,
|
15524
18765
|
:name,
|
15525
18766
|
:root_domain_unit_id,
|
18767
|
+
:service_role,
|
15526
18768
|
:single_sign_on)
|
15527
18769
|
SENSITIVE = []
|
15528
18770
|
include Aws::Structure
|
@@ -16213,6 +19455,10 @@ module Aws::DataZone
|
|
16213
19455
|
# updated.
|
16214
19456
|
# @return [String]
|
16215
19457
|
#
|
19458
|
+
# @!attribute [rw] environment_deployment_details
|
19459
|
+
# The environment deployment details of the project.
|
19460
|
+
# @return [Types::EnvironmentDeploymentDetails]
|
19461
|
+
#
|
16216
19462
|
# @!attribute [rw] glossary_terms
|
16217
19463
|
# The glossary terms to be updated as part of the `UpdateProject`
|
16218
19464
|
# action.
|
@@ -16231,6 +19477,7 @@ module Aws::DataZone
|
|
16231
19477
|
class UpdateProjectInput < Struct.new(
|
16232
19478
|
:description,
|
16233
19479
|
:domain_identifier,
|
19480
|
+
:environment_deployment_details,
|
16234
19481
|
:glossary_terms,
|
16235
19482
|
:identifier,
|
16236
19483
|
:name)
|
@@ -16259,6 +19506,10 @@ module Aws::DataZone
|
|
16259
19506
|
# The ID of the domain unit.
|
16260
19507
|
# @return [String]
|
16261
19508
|
#
|
19509
|
+
# @!attribute [rw] environment_deployment_details
|
19510
|
+
# The environment deployment details of the project.
|
19511
|
+
# @return [Types::EnvironmentDeploymentDetails]
|
19512
|
+
#
|
16262
19513
|
# @!attribute [rw] failure_reasons
|
16263
19514
|
# Specifies the error message that is returned if the operation cannot
|
16264
19515
|
# be successfully completed.
|
@@ -16280,10 +19531,18 @@ module Aws::DataZone
|
|
16280
19531
|
# The name of the project that is to be updated.
|
16281
19532
|
# @return [String]
|
16282
19533
|
#
|
19534
|
+
# @!attribute [rw] project_profile_id
|
19535
|
+
# The ID of the project profile.
|
19536
|
+
# @return [String]
|
19537
|
+
#
|
16283
19538
|
# @!attribute [rw] project_status
|
16284
19539
|
# The status of the project.
|
16285
19540
|
# @return [String]
|
16286
19541
|
#
|
19542
|
+
# @!attribute [rw] user_parameters
|
19543
|
+
# The user parameters of the project.
|
19544
|
+
# @return [Array<Types::EnvironmentConfigurationUserParameter>]
|
19545
|
+
#
|
16287
19546
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateProjectOutput AWS API Documentation
|
16288
19547
|
#
|
16289
19548
|
class UpdateProjectOutput < Struct.new(
|
@@ -16292,12 +19551,114 @@ module Aws::DataZone
|
|
16292
19551
|
:description,
|
16293
19552
|
:domain_id,
|
16294
19553
|
:domain_unit_id,
|
19554
|
+
:environment_deployment_details,
|
16295
19555
|
:failure_reasons,
|
16296
19556
|
:glossary_terms,
|
16297
19557
|
:id,
|
16298
19558
|
:last_updated_at,
|
16299
19559
|
:name,
|
16300
|
-
:
|
19560
|
+
:project_profile_id,
|
19561
|
+
:project_status,
|
19562
|
+
:user_parameters)
|
19563
|
+
SENSITIVE = [:description, :name]
|
19564
|
+
include Aws::Structure
|
19565
|
+
end
|
19566
|
+
|
19567
|
+
# @!attribute [rw] description
|
19568
|
+
# The description of a project profile.
|
19569
|
+
# @return [String]
|
19570
|
+
#
|
19571
|
+
# @!attribute [rw] domain_identifier
|
19572
|
+
# The ID of the domain where a project profile is to be updated.
|
19573
|
+
# @return [String]
|
19574
|
+
#
|
19575
|
+
# @!attribute [rw] domain_unit_identifier
|
19576
|
+
# The ID of the domain unit where a project profile is to be updated.
|
19577
|
+
# @return [String]
|
19578
|
+
#
|
19579
|
+
# @!attribute [rw] environment_configurations
|
19580
|
+
# The environment configurations of a project profile.
|
19581
|
+
# @return [Array<Types::EnvironmentConfiguration>]
|
19582
|
+
#
|
19583
|
+
# @!attribute [rw] identifier
|
19584
|
+
# The ID of a project profile that is to be updated.
|
19585
|
+
# @return [String]
|
19586
|
+
#
|
19587
|
+
# @!attribute [rw] name
|
19588
|
+
# The name of a project profile.
|
19589
|
+
# @return [String]
|
19590
|
+
#
|
19591
|
+
# @!attribute [rw] status
|
19592
|
+
# The status of a project profile.
|
19593
|
+
# @return [String]
|
19594
|
+
#
|
19595
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateProjectProfileInput AWS API Documentation
|
19596
|
+
#
|
19597
|
+
class UpdateProjectProfileInput < Struct.new(
|
19598
|
+
:description,
|
19599
|
+
:domain_identifier,
|
19600
|
+
:domain_unit_identifier,
|
19601
|
+
:environment_configurations,
|
19602
|
+
:identifier,
|
19603
|
+
:name,
|
19604
|
+
:status)
|
19605
|
+
SENSITIVE = [:description, :name]
|
19606
|
+
include Aws::Structure
|
19607
|
+
end
|
19608
|
+
|
19609
|
+
# @!attribute [rw] created_at
|
19610
|
+
# The timestamp at which a project profile is created.
|
19611
|
+
# @return [Time]
|
19612
|
+
#
|
19613
|
+
# @!attribute [rw] created_by
|
19614
|
+
# The user who created a project profile.
|
19615
|
+
# @return [String]
|
19616
|
+
#
|
19617
|
+
# @!attribute [rw] description
|
19618
|
+
# The description of a project profile.
|
19619
|
+
# @return [String]
|
19620
|
+
#
|
19621
|
+
# @!attribute [rw] domain_id
|
19622
|
+
# The ID of the domain where project profile is to be updated.
|
19623
|
+
# @return [String]
|
19624
|
+
#
|
19625
|
+
# @!attribute [rw] domain_unit_id
|
19626
|
+
# The domain unit ID of the project profile to be updated.
|
19627
|
+
# @return [String]
|
19628
|
+
#
|
19629
|
+
# @!attribute [rw] environment_configurations
|
19630
|
+
# The environment configurations of a project profile.
|
19631
|
+
# @return [Array<Types::EnvironmentConfiguration>]
|
19632
|
+
#
|
19633
|
+
# @!attribute [rw] id
|
19634
|
+
# The ID of the project profile.
|
19635
|
+
# @return [String]
|
19636
|
+
#
|
19637
|
+
# @!attribute [rw] last_updated_at
|
19638
|
+
# The timestamp at which a project profile was last updated.
|
19639
|
+
# @return [Time]
|
19640
|
+
#
|
19641
|
+
# @!attribute [rw] name
|
19642
|
+
# The name of the project profile.
|
19643
|
+
# @return [String]
|
19644
|
+
#
|
19645
|
+
# @!attribute [rw] status
|
19646
|
+
# The status of the project profile.
|
19647
|
+
# @return [String]
|
19648
|
+
#
|
19649
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateProjectProfileOutput AWS API Documentation
|
19650
|
+
#
|
19651
|
+
class UpdateProjectProfileOutput < Struct.new(
|
19652
|
+
:created_at,
|
19653
|
+
:created_by,
|
19654
|
+
:description,
|
19655
|
+
:domain_id,
|
19656
|
+
:domain_unit_id,
|
19657
|
+
:environment_configurations,
|
19658
|
+
:id,
|
19659
|
+
:last_updated_at,
|
19660
|
+
:name,
|
19661
|
+
:status)
|
16301
19662
|
SENSITIVE = [:description, :name]
|
16302
19663
|
include Aws::Structure
|
16303
19664
|
end
|
@@ -16947,6 +20308,25 @@ module Aws::DataZone
|
|
16947
20308
|
include Aws::Structure
|
16948
20309
|
end
|
16949
20310
|
|
20311
|
+
# The username and password of a connection.
|
20312
|
+
#
|
20313
|
+
# @!attribute [rw] password
|
20314
|
+
# The password of a connection.
|
20315
|
+
# @return [String]
|
20316
|
+
#
|
20317
|
+
# @!attribute [rw] username
|
20318
|
+
# The username of a connection.
|
20319
|
+
# @return [String]
|
20320
|
+
#
|
20321
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UsernamePassword AWS API Documentation
|
20322
|
+
#
|
20323
|
+
class UsernamePassword < Struct.new(
|
20324
|
+
:password,
|
20325
|
+
:username)
|
20326
|
+
SENSITIVE = [:password]
|
20327
|
+
include Aws::Structure
|
20328
|
+
end
|
20329
|
+
|
16950
20330
|
# The input fails to satisfy the constraints specified by the Amazon Web
|
16951
20331
|
# Services service.
|
16952
20332
|
#
|