sagemaker-core 1.0.38__py3-none-any.whl → 1.0.62__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- sagemaker_core/__init__.py +0 -4
- sagemaker_core/main/code_injection/shape_dag.py +982 -3
- sagemaker_core/main/config_schema.py +2 -1
- sagemaker_core/main/resources.py +362 -24
- sagemaker_core/main/shapes.py +934 -14
- sagemaker_core/main/utils.py +2 -2
- sagemaker_core/tools/resources_codegen.py +12 -10
- {sagemaker_core-1.0.38.dist-info → sagemaker_core-1.0.62.dist-info}/METADATA +4 -4
- {sagemaker_core-1.0.38.dist-info → sagemaker_core-1.0.62.dist-info}/RECORD +12 -12
- {sagemaker_core-1.0.38.dist-info → sagemaker_core-1.0.62.dist-info}/WHEEL +0 -0
- {sagemaker_core-1.0.38.dist-info → sagemaker_core-1.0.62.dist-info}/licenses/LICENSE +0 -0
- {sagemaker_core-1.0.38.dist-info → sagemaker_core-1.0.62.dist-info}/top_level.txt +0 -0
|
@@ -43,6 +43,22 @@ SHAPE_DAG = {
|
|
|
43
43
|
],
|
|
44
44
|
"type": "structure",
|
|
45
45
|
},
|
|
46
|
+
"AddClusterNodeSpecification": {
|
|
47
|
+
"members": [
|
|
48
|
+
{"name": "InstanceGroupName", "shape": "ClusterInstanceGroupName", "type": "string"},
|
|
49
|
+
{
|
|
50
|
+
"name": "IncrementTargetCountBy",
|
|
51
|
+
"shape": "AddClusterNodeSpecificationIncrementTargetCountByInteger",
|
|
52
|
+
"type": "integer",
|
|
53
|
+
},
|
|
54
|
+
],
|
|
55
|
+
"type": "structure",
|
|
56
|
+
},
|
|
57
|
+
"AddClusterNodeSpecificationList": {
|
|
58
|
+
"member_shape": "AddClusterNodeSpecification",
|
|
59
|
+
"member_type": "structure",
|
|
60
|
+
"type": "list",
|
|
61
|
+
},
|
|
46
62
|
"AddTagsInput": {
|
|
47
63
|
"members": [
|
|
48
64
|
{"name": "ResourceArn", "shape": "ResourceArn", "type": "string"},
|
|
@@ -59,6 +75,10 @@ SHAPE_DAG = {
|
|
|
59
75
|
"member_type": "string",
|
|
60
76
|
"type": "list",
|
|
61
77
|
},
|
|
78
|
+
"AdditionalEnis": {
|
|
79
|
+
"members": [{"name": "EfaEnis", "shape": "EfaEnis", "type": "list"}],
|
|
80
|
+
"type": "structure",
|
|
81
|
+
},
|
|
62
82
|
"AdditionalInferenceSpecificationDefinition": {
|
|
63
83
|
"members": [
|
|
64
84
|
{"name": "Name", "shape": "EntityName", "type": "string"},
|
|
@@ -413,6 +433,25 @@ SHAPE_DAG = {
|
|
|
413
433
|
],
|
|
414
434
|
"type": "structure",
|
|
415
435
|
},
|
|
436
|
+
"AttachClusterNodeVolumeRequest": {
|
|
437
|
+
"members": [
|
|
438
|
+
{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"},
|
|
439
|
+
{"name": "NodeId", "shape": "ClusterNodeId", "type": "string"},
|
|
440
|
+
{"name": "VolumeId", "shape": "VolumeId", "type": "string"},
|
|
441
|
+
],
|
|
442
|
+
"type": "structure",
|
|
443
|
+
},
|
|
444
|
+
"AttachClusterNodeVolumeResponse": {
|
|
445
|
+
"members": [
|
|
446
|
+
{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"},
|
|
447
|
+
{"name": "NodeId", "shape": "ClusterNodeId", "type": "string"},
|
|
448
|
+
{"name": "VolumeId", "shape": "VolumeId", "type": "string"},
|
|
449
|
+
{"name": "AttachTime", "shape": "Timestamp", "type": "timestamp"},
|
|
450
|
+
{"name": "Status", "shape": "VolumeAttachmentStatus", "type": "string"},
|
|
451
|
+
{"name": "DeviceName", "shape": "VolumeDeviceName", "type": "string"},
|
|
452
|
+
],
|
|
453
|
+
"type": "structure",
|
|
454
|
+
},
|
|
416
455
|
"AttributeNames": {"member_shape": "AttributeName", "member_type": "string", "type": "list"},
|
|
417
456
|
"AuthenticationRequestExtraParams": {
|
|
418
457
|
"key_shape": "AuthenticationRequestExtraParamsKey",
|
|
@@ -421,6 +460,18 @@ SHAPE_DAG = {
|
|
|
421
460
|
"value_shape": "AuthenticationRequestExtraParamsValue",
|
|
422
461
|
"value_type": "string",
|
|
423
462
|
},
|
|
463
|
+
"AuthorizedUrl": {
|
|
464
|
+
"members": [
|
|
465
|
+
{"name": "Url", "shape": "LongS3Uri", "type": "string"},
|
|
466
|
+
{"name": "LocalPath", "shape": "LocalPath", "type": "string"},
|
|
467
|
+
],
|
|
468
|
+
"type": "structure",
|
|
469
|
+
},
|
|
470
|
+
"AuthorizedUrlConfigs": {
|
|
471
|
+
"member_shape": "AuthorizedUrl",
|
|
472
|
+
"member_type": "structure",
|
|
473
|
+
"type": "list",
|
|
474
|
+
},
|
|
424
475
|
"AutoMLAlgorithmConfig": {
|
|
425
476
|
"members": [{"name": "AutoMLAlgorithms", "shape": "AutoMLAlgorithms", "type": "list"}],
|
|
426
477
|
"type": "structure",
|
|
@@ -751,6 +802,39 @@ SHAPE_DAG = {
|
|
|
751
802
|
"members": [{"name": "Mode", "shape": "AutotuneMode", "type": "string"}],
|
|
752
803
|
"type": "structure",
|
|
753
804
|
},
|
|
805
|
+
"BatchAddClusterNodesError": {
|
|
806
|
+
"members": [
|
|
807
|
+
{"name": "InstanceGroupName", "shape": "InstanceGroupName", "type": "string"},
|
|
808
|
+
{"name": "ErrorCode", "shape": "BatchAddClusterNodesErrorCode", "type": "string"},
|
|
809
|
+
{"name": "FailedCount", "shape": "BatchAddFailureCount", "type": "integer"},
|
|
810
|
+
{"name": "Message", "shape": "String", "type": "string"},
|
|
811
|
+
],
|
|
812
|
+
"type": "structure",
|
|
813
|
+
},
|
|
814
|
+
"BatchAddClusterNodesErrorList": {
|
|
815
|
+
"member_shape": "BatchAddClusterNodesError",
|
|
816
|
+
"member_type": "structure",
|
|
817
|
+
"type": "list",
|
|
818
|
+
},
|
|
819
|
+
"BatchAddClusterNodesRequest": {
|
|
820
|
+
"members": [
|
|
821
|
+
{"name": "ClusterName", "shape": "ClusterNameOrArn", "type": "string"},
|
|
822
|
+
{
|
|
823
|
+
"name": "ClientToken",
|
|
824
|
+
"shape": "BatchAddClusterNodesRequestClientTokenString",
|
|
825
|
+
"type": "string",
|
|
826
|
+
},
|
|
827
|
+
{"name": "NodesToAdd", "shape": "AddClusterNodeSpecificationList", "type": "list"},
|
|
828
|
+
],
|
|
829
|
+
"type": "structure",
|
|
830
|
+
},
|
|
831
|
+
"BatchAddClusterNodesResponse": {
|
|
832
|
+
"members": [
|
|
833
|
+
{"name": "Successful", "shape": "NodeAdditionResultList", "type": "list"},
|
|
834
|
+
{"name": "Failed", "shape": "BatchAddClusterNodesErrorList", "type": "list"},
|
|
835
|
+
],
|
|
836
|
+
"type": "structure",
|
|
837
|
+
},
|
|
754
838
|
"BatchDataCaptureConfig": {
|
|
755
839
|
"members": [
|
|
756
840
|
{"name": "DestinationS3Uri", "shape": "S3Uri", "type": "string"},
|
|
@@ -759,6 +843,19 @@ SHAPE_DAG = {
|
|
|
759
843
|
],
|
|
760
844
|
"type": "structure",
|
|
761
845
|
},
|
|
846
|
+
"BatchDeleteClusterNodeLogicalIdsError": {
|
|
847
|
+
"members": [
|
|
848
|
+
{"name": "Code", "shape": "BatchDeleteClusterNodesErrorCode", "type": "string"},
|
|
849
|
+
{"name": "Message", "shape": "String", "type": "string"},
|
|
850
|
+
{"name": "NodeLogicalId", "shape": "ClusterNodeLogicalId", "type": "string"},
|
|
851
|
+
],
|
|
852
|
+
"type": "structure",
|
|
853
|
+
},
|
|
854
|
+
"BatchDeleteClusterNodeLogicalIdsErrorList": {
|
|
855
|
+
"member_shape": "BatchDeleteClusterNodeLogicalIdsError",
|
|
856
|
+
"member_type": "structure",
|
|
857
|
+
"type": "list",
|
|
858
|
+
},
|
|
762
859
|
"BatchDeleteClusterNodesError": {
|
|
763
860
|
"members": [
|
|
764
861
|
{"name": "Code", "shape": "BatchDeleteClusterNodesErrorCode", "type": "string"},
|
|
@@ -776,6 +873,7 @@ SHAPE_DAG = {
|
|
|
776
873
|
"members": [
|
|
777
874
|
{"name": "ClusterName", "shape": "ClusterNameOrArn", "type": "string"},
|
|
778
875
|
{"name": "NodeIds", "shape": "ClusterNodeIds", "type": "list"},
|
|
876
|
+
{"name": "NodeLogicalIds", "shape": "ClusterNodeLogicalIdList", "type": "list"},
|
|
779
877
|
],
|
|
780
878
|
"type": "structure",
|
|
781
879
|
},
|
|
@@ -783,6 +881,16 @@ SHAPE_DAG = {
|
|
|
783
881
|
"members": [
|
|
784
882
|
{"name": "Failed", "shape": "BatchDeleteClusterNodesErrorList", "type": "list"},
|
|
785
883
|
{"name": "Successful", "shape": "ClusterNodeIds", "type": "list"},
|
|
884
|
+
{
|
|
885
|
+
"name": "FailedNodeLogicalIds",
|
|
886
|
+
"shape": "BatchDeleteClusterNodeLogicalIdsErrorList",
|
|
887
|
+
"type": "list",
|
|
888
|
+
},
|
|
889
|
+
{
|
|
890
|
+
"name": "SuccessfulNodeLogicalIds",
|
|
891
|
+
"shape": "ClusterNodeLogicalIdList",
|
|
892
|
+
"type": "list",
|
|
893
|
+
},
|
|
786
894
|
],
|
|
787
895
|
"type": "structure",
|
|
788
896
|
},
|
|
@@ -1071,6 +1179,13 @@ SHAPE_DAG = {
|
|
|
1071
1179
|
],
|
|
1072
1180
|
"type": "structure",
|
|
1073
1181
|
},
|
|
1182
|
+
"CapacityReservation": {
|
|
1183
|
+
"members": [
|
|
1184
|
+
{"name": "Arn", "shape": "String", "type": "string"},
|
|
1185
|
+
{"name": "Type", "shape": "CapacityReservationType", "type": "string"},
|
|
1186
|
+
],
|
|
1187
|
+
"type": "structure",
|
|
1188
|
+
},
|
|
1074
1189
|
"CapacitySize": {
|
|
1075
1190
|
"members": [
|
|
1076
1191
|
{"name": "Type", "shape": "CapacitySizeType", "type": "string"},
|
|
@@ -1134,6 +1249,77 @@ SHAPE_DAG = {
|
|
|
1134
1249
|
"member_type": "structure",
|
|
1135
1250
|
"type": "list",
|
|
1136
1251
|
},
|
|
1252
|
+
"CfnCreateTemplateProvider": {
|
|
1253
|
+
"members": [
|
|
1254
|
+
{"name": "TemplateName", "shape": "CfnTemplateName", "type": "string"},
|
|
1255
|
+
{"name": "TemplateURL", "shape": "CfnTemplateURL", "type": "string"},
|
|
1256
|
+
{"name": "RoleARN", "shape": "RoleArn", "type": "string"},
|
|
1257
|
+
{"name": "Parameters", "shape": "CfnStackCreateParameters", "type": "list"},
|
|
1258
|
+
],
|
|
1259
|
+
"type": "structure",
|
|
1260
|
+
},
|
|
1261
|
+
"CfnStackCreateParameter": {
|
|
1262
|
+
"members": [
|
|
1263
|
+
{"name": "Key", "shape": "CfnStackParameterKey", "type": "string"},
|
|
1264
|
+
{"name": "Value", "shape": "CfnStackParameterValue", "type": "string"},
|
|
1265
|
+
],
|
|
1266
|
+
"type": "structure",
|
|
1267
|
+
},
|
|
1268
|
+
"CfnStackCreateParameters": {
|
|
1269
|
+
"member_shape": "CfnStackCreateParameter",
|
|
1270
|
+
"member_type": "structure",
|
|
1271
|
+
"type": "list",
|
|
1272
|
+
},
|
|
1273
|
+
"CfnStackDetail": {
|
|
1274
|
+
"members": [
|
|
1275
|
+
{"name": "Name", "shape": "CfnStackName", "type": "string"},
|
|
1276
|
+
{"name": "Id", "shape": "CfnStackId", "type": "string"},
|
|
1277
|
+
{"name": "StatusMessage", "shape": "CfnStackStatusMessage", "type": "string"},
|
|
1278
|
+
],
|
|
1279
|
+
"type": "structure",
|
|
1280
|
+
},
|
|
1281
|
+
"CfnStackParameter": {
|
|
1282
|
+
"members": [
|
|
1283
|
+
{"name": "Key", "shape": "CfnStackParameterKey", "type": "string"},
|
|
1284
|
+
{"name": "Value", "shape": "CfnStackParameterValue", "type": "string"},
|
|
1285
|
+
],
|
|
1286
|
+
"type": "structure",
|
|
1287
|
+
},
|
|
1288
|
+
"CfnStackParameters": {
|
|
1289
|
+
"member_shape": "CfnStackParameter",
|
|
1290
|
+
"member_type": "structure",
|
|
1291
|
+
"type": "list",
|
|
1292
|
+
},
|
|
1293
|
+
"CfnStackUpdateParameter": {
|
|
1294
|
+
"members": [
|
|
1295
|
+
{"name": "Key", "shape": "CfnStackParameterKey", "type": "string"},
|
|
1296
|
+
{"name": "Value", "shape": "CfnStackParameterValue", "type": "string"},
|
|
1297
|
+
],
|
|
1298
|
+
"type": "structure",
|
|
1299
|
+
},
|
|
1300
|
+
"CfnStackUpdateParameters": {
|
|
1301
|
+
"member_shape": "CfnStackUpdateParameter",
|
|
1302
|
+
"member_type": "structure",
|
|
1303
|
+
"type": "list",
|
|
1304
|
+
},
|
|
1305
|
+
"CfnTemplateProviderDetail": {
|
|
1306
|
+
"members": [
|
|
1307
|
+
{"name": "TemplateName", "shape": "CfnTemplateName", "type": "string"},
|
|
1308
|
+
{"name": "TemplateURL", "shape": "CfnTemplateURL", "type": "string"},
|
|
1309
|
+
{"name": "RoleARN", "shape": "RoleArn", "type": "string"},
|
|
1310
|
+
{"name": "Parameters", "shape": "CfnStackParameters", "type": "list"},
|
|
1311
|
+
{"name": "StackDetail", "shape": "CfnStackDetail", "type": "structure"},
|
|
1312
|
+
],
|
|
1313
|
+
"type": "structure",
|
|
1314
|
+
},
|
|
1315
|
+
"CfnUpdateTemplateProvider": {
|
|
1316
|
+
"members": [
|
|
1317
|
+
{"name": "TemplateName", "shape": "CfnTemplateName", "type": "string"},
|
|
1318
|
+
{"name": "TemplateURL", "shape": "CfnTemplateURL", "type": "string"},
|
|
1319
|
+
{"name": "Parameters", "shape": "CfnStackUpdateParameters", "type": "list"},
|
|
1320
|
+
],
|
|
1321
|
+
"type": "structure",
|
|
1322
|
+
},
|
|
1137
1323
|
"Channel": {
|
|
1138
1324
|
"members": [
|
|
1139
1325
|
{"name": "ChannelName", "shape": "ChannelName", "type": "string"},
|
|
@@ -1259,9 +1445,59 @@ SHAPE_DAG = {
|
|
|
1259
1445
|
],
|
|
1260
1446
|
"type": "structure",
|
|
1261
1447
|
},
|
|
1448
|
+
"ClusterAutoScalingConfig": {
|
|
1449
|
+
"members": [
|
|
1450
|
+
{"name": "Mode", "shape": "ClusterAutoScalingMode", "type": "string"},
|
|
1451
|
+
{"name": "AutoScalerType", "shape": "ClusterAutoScalerType", "type": "string"},
|
|
1452
|
+
],
|
|
1453
|
+
"type": "structure",
|
|
1454
|
+
},
|
|
1455
|
+
"ClusterAutoScalingConfigOutput": {
|
|
1456
|
+
"members": [
|
|
1457
|
+
{"name": "Mode", "shape": "ClusterAutoScalingMode", "type": "string"},
|
|
1458
|
+
{"name": "AutoScalerType", "shape": "ClusterAutoScalerType", "type": "string"},
|
|
1459
|
+
{"name": "Status", "shape": "ClusterAutoScalingStatus", "type": "string"},
|
|
1460
|
+
{"name": "FailureMessage", "shape": "String", "type": "string"},
|
|
1461
|
+
],
|
|
1462
|
+
"type": "structure",
|
|
1463
|
+
},
|
|
1262
1464
|
"ClusterEbsVolumeConfig": {
|
|
1263
1465
|
"members": [
|
|
1264
|
-
{"name": "VolumeSizeInGB", "shape": "ClusterEbsVolumeSizeInGB", "type": "integer"}
|
|
1466
|
+
{"name": "VolumeSizeInGB", "shape": "ClusterEbsVolumeSizeInGB", "type": "integer"},
|
|
1467
|
+
{"name": "VolumeKmsKeyId", "shape": "KmsKeyId", "type": "string"},
|
|
1468
|
+
{"name": "RootVolume", "shape": "Boolean", "type": "boolean"},
|
|
1469
|
+
],
|
|
1470
|
+
"type": "structure",
|
|
1471
|
+
},
|
|
1472
|
+
"ClusterEventDetail": {
|
|
1473
|
+
"members": [
|
|
1474
|
+
{"name": "EventId", "shape": "EventId", "type": "string"},
|
|
1475
|
+
{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"},
|
|
1476
|
+
{"name": "ClusterName", "shape": "ClusterName", "type": "string"},
|
|
1477
|
+
{"name": "InstanceGroupName", "shape": "ClusterInstanceGroupName", "type": "string"},
|
|
1478
|
+
{"name": "InstanceId", "shape": "String", "type": "string"},
|
|
1479
|
+
{"name": "ResourceType", "shape": "ClusterEventResourceType", "type": "string"},
|
|
1480
|
+
{"name": "EventTime", "shape": "Timestamp", "type": "timestamp"},
|
|
1481
|
+
{"name": "EventDetails", "shape": "EventDetails", "type": "structure"},
|
|
1482
|
+
{"name": "Description", "shape": "String", "type": "string"},
|
|
1483
|
+
],
|
|
1484
|
+
"type": "structure",
|
|
1485
|
+
},
|
|
1486
|
+
"ClusterEventSummaries": {
|
|
1487
|
+
"member_shape": "ClusterEventSummary",
|
|
1488
|
+
"member_type": "structure",
|
|
1489
|
+
"type": "list",
|
|
1490
|
+
},
|
|
1491
|
+
"ClusterEventSummary": {
|
|
1492
|
+
"members": [
|
|
1493
|
+
{"name": "EventId", "shape": "EventId", "type": "string"},
|
|
1494
|
+
{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"},
|
|
1495
|
+
{"name": "ClusterName", "shape": "ClusterName", "type": "string"},
|
|
1496
|
+
{"name": "InstanceGroupName", "shape": "ClusterInstanceGroupName", "type": "string"},
|
|
1497
|
+
{"name": "InstanceId", "shape": "String", "type": "string"},
|
|
1498
|
+
{"name": "ResourceType", "shape": "ClusterEventResourceType", "type": "string"},
|
|
1499
|
+
{"name": "EventTime", "shape": "Timestamp", "type": "timestamp"},
|
|
1500
|
+
{"name": "Description", "shape": "String", "type": "string"},
|
|
1265
1501
|
],
|
|
1266
1502
|
"type": "structure",
|
|
1267
1503
|
},
|
|
@@ -1293,6 +1529,8 @@ SHAPE_DAG = {
|
|
|
1293
1529
|
"shape": "ScheduledUpdateConfig",
|
|
1294
1530
|
"type": "structure",
|
|
1295
1531
|
},
|
|
1532
|
+
{"name": "CurrentImageId", "shape": "ImageId", "type": "string"},
|
|
1533
|
+
{"name": "DesiredImageId", "shape": "ImageId", "type": "string"},
|
|
1296
1534
|
],
|
|
1297
1535
|
"type": "structure",
|
|
1298
1536
|
},
|
|
@@ -1322,6 +1560,7 @@ SHAPE_DAG = {
|
|
|
1322
1560
|
"shape": "ScheduledUpdateConfig",
|
|
1323
1561
|
"type": "structure",
|
|
1324
1562
|
},
|
|
1563
|
+
{"name": "ImageId", "shape": "ImageId", "type": "string"},
|
|
1325
1564
|
],
|
|
1326
1565
|
"type": "structure",
|
|
1327
1566
|
},
|
|
@@ -1367,10 +1606,19 @@ SHAPE_DAG = {
|
|
|
1367
1606
|
],
|
|
1368
1607
|
"type": "structure",
|
|
1369
1608
|
},
|
|
1609
|
+
"ClusterMetadata": {
|
|
1610
|
+
"members": [
|
|
1611
|
+
{"name": "FailureMessage", "shape": "String", "type": "string"},
|
|
1612
|
+
{"name": "EksRoleAccessEntries", "shape": "EksRoleAccessEntries", "type": "list"},
|
|
1613
|
+
{"name": "SlrAccessEntry", "shape": "String", "type": "string"},
|
|
1614
|
+
],
|
|
1615
|
+
"type": "structure",
|
|
1616
|
+
},
|
|
1370
1617
|
"ClusterNodeDetails": {
|
|
1371
1618
|
"members": [
|
|
1372
1619
|
{"name": "InstanceGroupName", "shape": "ClusterInstanceGroupName", "type": "string"},
|
|
1373
1620
|
{"name": "InstanceId", "shape": "String", "type": "string"},
|
|
1621
|
+
{"name": "NodeLogicalId", "shape": "ClusterNodeLogicalId", "type": "string"},
|
|
1374
1622
|
{
|
|
1375
1623
|
"name": "InstanceStatus",
|
|
1376
1624
|
"shape": "ClusterInstanceStatusDetails",
|
|
@@ -1391,10 +1639,18 @@ SHAPE_DAG = {
|
|
|
1391
1639
|
{"name": "PrivatePrimaryIpv6", "shape": "ClusterPrivatePrimaryIpv6", "type": "string"},
|
|
1392
1640
|
{"name": "PrivateDnsHostname", "shape": "ClusterPrivateDnsHostname", "type": "string"},
|
|
1393
1641
|
{"name": "Placement", "shape": "ClusterInstancePlacement", "type": "structure"},
|
|
1642
|
+
{"name": "CurrentImageId", "shape": "ImageId", "type": "string"},
|
|
1643
|
+
{"name": "DesiredImageId", "shape": "ImageId", "type": "string"},
|
|
1644
|
+
{"name": "UltraServerInfo", "shape": "UltraServerInfo", "type": "structure"},
|
|
1394
1645
|
],
|
|
1395
1646
|
"type": "structure",
|
|
1396
1647
|
},
|
|
1397
1648
|
"ClusterNodeIds": {"member_shape": "ClusterNodeId", "member_type": "string", "type": "list"},
|
|
1649
|
+
"ClusterNodeLogicalIdList": {
|
|
1650
|
+
"member_shape": "ClusterNodeLogicalId",
|
|
1651
|
+
"member_type": "string",
|
|
1652
|
+
"type": "list",
|
|
1653
|
+
},
|
|
1398
1654
|
"ClusterNodeSummaries": {
|
|
1399
1655
|
"member_shape": "ClusterNodeSummary",
|
|
1400
1656
|
"member_type": "structure",
|
|
@@ -1404,6 +1660,7 @@ SHAPE_DAG = {
|
|
|
1404
1660
|
"members": [
|
|
1405
1661
|
{"name": "InstanceGroupName", "shape": "ClusterInstanceGroupName", "type": "string"},
|
|
1406
1662
|
{"name": "InstanceId", "shape": "String", "type": "string"},
|
|
1663
|
+
{"name": "NodeLogicalId", "shape": "String", "type": "string"},
|
|
1407
1664
|
{"name": "InstanceType", "shape": "ClusterInstanceType", "type": "string"},
|
|
1408
1665
|
{"name": "LaunchTime", "shape": "Timestamp", "type": "timestamp"},
|
|
1409
1666
|
{"name": "LastSoftwareUpdateTime", "shape": "Timestamp", "type": "timestamp"},
|
|
@@ -1412,6 +1669,7 @@ SHAPE_DAG = {
|
|
|
1412
1669
|
"shape": "ClusterInstanceStatusDetails",
|
|
1413
1670
|
"type": "structure",
|
|
1414
1671
|
},
|
|
1672
|
+
{"name": "UltraServerInfo", "shape": "UltraServerInfo", "type": "structure"},
|
|
1415
1673
|
],
|
|
1416
1674
|
"type": "structure",
|
|
1417
1675
|
},
|
|
@@ -1423,6 +1681,71 @@ SHAPE_DAG = {
|
|
|
1423
1681
|
"members": [{"name": "ClusterArn", "shape": "EksClusterArn", "type": "string"}],
|
|
1424
1682
|
"type": "structure",
|
|
1425
1683
|
},
|
|
1684
|
+
"ClusterRestrictedInstanceGroupDetails": {
|
|
1685
|
+
"members": [
|
|
1686
|
+
{"name": "CurrentCount", "shape": "ClusterNonNegativeInstanceCount", "type": "integer"},
|
|
1687
|
+
{"name": "TargetCount", "shape": "ClusterInstanceCount", "type": "integer"},
|
|
1688
|
+
{"name": "InstanceGroupName", "shape": "ClusterInstanceGroupName", "type": "string"},
|
|
1689
|
+
{"name": "InstanceType", "shape": "ClusterInstanceType", "type": "string"},
|
|
1690
|
+
{"name": "ExecutionRole", "shape": "RoleArn", "type": "string"},
|
|
1691
|
+
{"name": "ThreadsPerCore", "shape": "ClusterThreadsPerCore", "type": "integer"},
|
|
1692
|
+
{
|
|
1693
|
+
"name": "InstanceStorageConfigs",
|
|
1694
|
+
"shape": "ClusterInstanceStorageConfigs",
|
|
1695
|
+
"type": "list",
|
|
1696
|
+
},
|
|
1697
|
+
{"name": "OnStartDeepHealthChecks", "shape": "OnStartDeepHealthChecks", "type": "list"},
|
|
1698
|
+
{"name": "Status", "shape": "InstanceGroupStatus", "type": "string"},
|
|
1699
|
+
{"name": "TrainingPlanArn", "shape": "TrainingPlanArn", "type": "string"},
|
|
1700
|
+
{
|
|
1701
|
+
"name": "TrainingPlanStatus",
|
|
1702
|
+
"shape": "InstanceGroupTrainingPlanStatus",
|
|
1703
|
+
"type": "string",
|
|
1704
|
+
},
|
|
1705
|
+
{"name": "OverrideVpcConfig", "shape": "VpcConfig", "type": "structure"},
|
|
1706
|
+
{
|
|
1707
|
+
"name": "ScheduledUpdateConfig",
|
|
1708
|
+
"shape": "ScheduledUpdateConfig",
|
|
1709
|
+
"type": "structure",
|
|
1710
|
+
},
|
|
1711
|
+
{"name": "EnvironmentConfig", "shape": "EnvironmentConfigDetails", "type": "structure"},
|
|
1712
|
+
],
|
|
1713
|
+
"type": "structure",
|
|
1714
|
+
},
|
|
1715
|
+
"ClusterRestrictedInstanceGroupDetailsList": {
|
|
1716
|
+
"member_shape": "ClusterRestrictedInstanceGroupDetails",
|
|
1717
|
+
"member_type": "structure",
|
|
1718
|
+
"type": "list",
|
|
1719
|
+
},
|
|
1720
|
+
"ClusterRestrictedInstanceGroupSpecification": {
|
|
1721
|
+
"members": [
|
|
1722
|
+
{"name": "InstanceCount", "shape": "ClusterInstanceCount", "type": "integer"},
|
|
1723
|
+
{"name": "InstanceGroupName", "shape": "ClusterInstanceGroupName", "type": "string"},
|
|
1724
|
+
{"name": "InstanceType", "shape": "ClusterInstanceType", "type": "string"},
|
|
1725
|
+
{"name": "ExecutionRole", "shape": "RoleArn", "type": "string"},
|
|
1726
|
+
{"name": "ThreadsPerCore", "shape": "ClusterThreadsPerCore", "type": "integer"},
|
|
1727
|
+
{
|
|
1728
|
+
"name": "InstanceStorageConfigs",
|
|
1729
|
+
"shape": "ClusterInstanceStorageConfigs",
|
|
1730
|
+
"type": "list",
|
|
1731
|
+
},
|
|
1732
|
+
{"name": "OnStartDeepHealthChecks", "shape": "OnStartDeepHealthChecks", "type": "list"},
|
|
1733
|
+
{"name": "TrainingPlanArn", "shape": "TrainingPlanArn", "type": "string"},
|
|
1734
|
+
{"name": "OverrideVpcConfig", "shape": "VpcConfig", "type": "structure"},
|
|
1735
|
+
{
|
|
1736
|
+
"name": "ScheduledUpdateConfig",
|
|
1737
|
+
"shape": "ScheduledUpdateConfig",
|
|
1738
|
+
"type": "structure",
|
|
1739
|
+
},
|
|
1740
|
+
{"name": "EnvironmentConfig", "shape": "EnvironmentConfig", "type": "structure"},
|
|
1741
|
+
],
|
|
1742
|
+
"type": "structure",
|
|
1743
|
+
},
|
|
1744
|
+
"ClusterRestrictedInstanceGroupSpecifications": {
|
|
1745
|
+
"member_shape": "ClusterRestrictedInstanceGroupSpecification",
|
|
1746
|
+
"member_type": "structure",
|
|
1747
|
+
"type": "list",
|
|
1748
|
+
},
|
|
1426
1749
|
"ClusterSchedulerConfigSummary": {
|
|
1427
1750
|
"members": [
|
|
1428
1751
|
{
|
|
@@ -1464,6 +1787,17 @@ SHAPE_DAG = {
|
|
|
1464
1787
|
],
|
|
1465
1788
|
"type": "structure",
|
|
1466
1789
|
},
|
|
1790
|
+
"ClusterTieredStorageConfig": {
|
|
1791
|
+
"members": [
|
|
1792
|
+
{"name": "Mode", "shape": "ClusterConfigMode", "type": "string"},
|
|
1793
|
+
{
|
|
1794
|
+
"name": "InstanceMemoryAllocationPercentage",
|
|
1795
|
+
"shape": "ClusterInstanceMemoryAllocationPercentage",
|
|
1796
|
+
"type": "integer",
|
|
1797
|
+
},
|
|
1798
|
+
],
|
|
1799
|
+
"type": "structure",
|
|
1800
|
+
},
|
|
1467
1801
|
"CodeEditorAppImageConfig": {
|
|
1468
1802
|
"members": [
|
|
1469
1803
|
{"name": "FileSystemConfig", "shape": "FileSystemConfig", "type": "structure"},
|
|
@@ -1605,6 +1939,9 @@ SHAPE_DAG = {
|
|
|
1605
1939
|
"members": [
|
|
1606
1940
|
{"name": "InstanceType", "shape": "ClusterInstanceType", "type": "string"},
|
|
1607
1941
|
{"name": "Count", "shape": "InstanceCount", "type": "integer"},
|
|
1942
|
+
{"name": "Accelerators", "shape": "AcceleratorsAmount", "type": "integer"},
|
|
1943
|
+
{"name": "VCpu", "shape": "VCpuAmount", "type": "float"},
|
|
1944
|
+
{"name": "MemoryInGiB", "shape": "MemoryInGiBAmount", "type": "float"},
|
|
1608
1945
|
],
|
|
1609
1946
|
"type": "structure",
|
|
1610
1947
|
},
|
|
@@ -1927,10 +2264,27 @@ SHAPE_DAG = {
|
|
|
1927
2264
|
"shape": "ClusterInstanceGroupSpecifications",
|
|
1928
2265
|
"type": "list",
|
|
1929
2266
|
},
|
|
2267
|
+
{
|
|
2268
|
+
"name": "RestrictedInstanceGroups",
|
|
2269
|
+
"shape": "ClusterRestrictedInstanceGroupSpecifications",
|
|
2270
|
+
"type": "list",
|
|
2271
|
+
},
|
|
1930
2272
|
{"name": "VpcConfig", "shape": "VpcConfig", "type": "structure"},
|
|
1931
2273
|
{"name": "Tags", "shape": "TagList", "type": "list"},
|
|
1932
2274
|
{"name": "Orchestrator", "shape": "ClusterOrchestrator", "type": "structure"},
|
|
1933
2275
|
{"name": "NodeRecovery", "shape": "ClusterNodeRecovery", "type": "string"},
|
|
2276
|
+
{
|
|
2277
|
+
"name": "TieredStorageConfig",
|
|
2278
|
+
"shape": "ClusterTieredStorageConfig",
|
|
2279
|
+
"type": "structure",
|
|
2280
|
+
},
|
|
2281
|
+
{
|
|
2282
|
+
"name": "NodeProvisioningMode",
|
|
2283
|
+
"shape": "ClusterNodeProvisioningMode",
|
|
2284
|
+
"type": "string",
|
|
2285
|
+
},
|
|
2286
|
+
{"name": "ClusterRole", "shape": "RoleArn", "type": "string"},
|
|
2287
|
+
{"name": "AutoScaling", "shape": "ClusterAutoScalingConfig", "type": "structure"},
|
|
1934
2288
|
],
|
|
1935
2289
|
"type": "structure",
|
|
1936
2290
|
},
|
|
@@ -2229,6 +2583,25 @@ SHAPE_DAG = {
|
|
|
2229
2583
|
"members": [{"name": "FlowDefinitionArn", "shape": "FlowDefinitionArn", "type": "string"}],
|
|
2230
2584
|
"type": "structure",
|
|
2231
2585
|
},
|
|
2586
|
+
"CreateHubContentPresignedUrlsRequest": {
|
|
2587
|
+
"members": [
|
|
2588
|
+
{"name": "HubName", "shape": "HubNameOrArn", "type": "string"},
|
|
2589
|
+
{"name": "HubContentType", "shape": "HubContentType", "type": "string"},
|
|
2590
|
+
{"name": "HubContentName", "shape": "HubContentName", "type": "string"},
|
|
2591
|
+
{"name": "HubContentVersion", "shape": "HubContentVersion", "type": "string"},
|
|
2592
|
+
{"name": "AccessConfig", "shape": "PresignedUrlAccessConfig", "type": "structure"},
|
|
2593
|
+
{"name": "MaxResults", "shape": "MaxResults", "type": "integer"},
|
|
2594
|
+
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
2595
|
+
],
|
|
2596
|
+
"type": "structure",
|
|
2597
|
+
},
|
|
2598
|
+
"CreateHubContentPresignedUrlsResponse": {
|
|
2599
|
+
"members": [
|
|
2600
|
+
{"name": "AuthorizedUrlConfigs", "shape": "AuthorizedUrlConfigs", "type": "list"},
|
|
2601
|
+
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
2602
|
+
],
|
|
2603
|
+
"type": "structure",
|
|
2604
|
+
},
|
|
2232
2605
|
"CreateHubContentReferenceRequest": {
|
|
2233
2606
|
"members": [
|
|
2234
2607
|
{"name": "HubName", "shape": "HubNameOrArn", "type": "string"},
|
|
@@ -2728,6 +3101,7 @@ SHAPE_DAG = {
|
|
|
2728
3101
|
{"name": "InstanceType", "shape": "InstanceType", "type": "string"},
|
|
2729
3102
|
{"name": "SubnetId", "shape": "SubnetId", "type": "string"},
|
|
2730
3103
|
{"name": "SecurityGroupIds", "shape": "SecurityGroupIds", "type": "list"},
|
|
3104
|
+
{"name": "IpAddressType", "shape": "IPAddressType", "type": "string"},
|
|
2731
3105
|
{"name": "RoleArn", "shape": "RoleArn", "type": "string"},
|
|
2732
3106
|
{"name": "KmsKeyId", "shape": "KmsKeyId", "type": "string"},
|
|
2733
3107
|
{"name": "Tags", "shape": "TagList", "type": "list"},
|
|
@@ -2975,6 +3349,7 @@ SHAPE_DAG = {
|
|
|
2975
3349
|
"type": "structure",
|
|
2976
3350
|
},
|
|
2977
3351
|
{"name": "Tags", "shape": "TagList", "type": "list"},
|
|
3352
|
+
{"name": "TemplateProviders", "shape": "CreateTemplateProviderList", "type": "list"},
|
|
2978
3353
|
],
|
|
2979
3354
|
"type": "structure",
|
|
2980
3355
|
},
|
|
@@ -3032,6 +3407,21 @@ SHAPE_DAG = {
|
|
|
3032
3407
|
],
|
|
3033
3408
|
"type": "structure",
|
|
3034
3409
|
},
|
|
3410
|
+
"CreateTemplateProvider": {
|
|
3411
|
+
"members": [
|
|
3412
|
+
{
|
|
3413
|
+
"name": "CfnTemplateProvider",
|
|
3414
|
+
"shape": "CfnCreateTemplateProvider",
|
|
3415
|
+
"type": "structure",
|
|
3416
|
+
}
|
|
3417
|
+
],
|
|
3418
|
+
"type": "structure",
|
|
3419
|
+
},
|
|
3420
|
+
"CreateTemplateProviderList": {
|
|
3421
|
+
"member_shape": "CreateTemplateProvider",
|
|
3422
|
+
"member_type": "structure",
|
|
3423
|
+
"type": "list",
|
|
3424
|
+
},
|
|
3035
3425
|
"CreateTrainingJobRequest": {
|
|
3036
3426
|
"members": [
|
|
3037
3427
|
{"name": "TrainingJobName", "shape": "TrainingJobName", "type": "string"},
|
|
@@ -3090,6 +3480,11 @@ SHAPE_DAG = {
|
|
|
3090
3480
|
"members": [
|
|
3091
3481
|
{"name": "TrainingPlanName", "shape": "TrainingPlanName", "type": "string"},
|
|
3092
3482
|
{"name": "TrainingPlanOfferingId", "shape": "TrainingPlanOfferingId", "type": "string"},
|
|
3483
|
+
{
|
|
3484
|
+
"name": "SpareInstanceCountPerUltraServer",
|
|
3485
|
+
"shape": "SpareInstanceCountPerUltraServer",
|
|
3486
|
+
"type": "integer",
|
|
3487
|
+
},
|
|
3093
3488
|
{"name": "Tags", "shape": "TagList", "type": "list"},
|
|
3094
3489
|
],
|
|
3095
3490
|
"type": "structure",
|
|
@@ -3189,6 +3584,7 @@ SHAPE_DAG = {
|
|
|
3189
3584
|
"shape": "WorkforceVpcConfigRequest",
|
|
3190
3585
|
"type": "structure",
|
|
3191
3586
|
},
|
|
3587
|
+
{"name": "IpAddressType", "shape": "WorkforceIpAddressType", "type": "string"},
|
|
3192
3588
|
],
|
|
3193
3589
|
"type": "structure",
|
|
3194
3590
|
},
|
|
@@ -3225,6 +3621,7 @@ SHAPE_DAG = {
|
|
|
3225
3621
|
"members": [
|
|
3226
3622
|
{"name": "EFSFileSystem", "shape": "EFSFileSystem", "type": "structure"},
|
|
3227
3623
|
{"name": "FSxLustreFileSystem", "shape": "FSxLustreFileSystem", "type": "structure"},
|
|
3624
|
+
{"name": "S3FileSystem", "shape": "S3FileSystem", "type": "structure"},
|
|
3228
3625
|
],
|
|
3229
3626
|
"type": "structure",
|
|
3230
3627
|
},
|
|
@@ -3236,6 +3633,7 @@ SHAPE_DAG = {
|
|
|
3236
3633
|
"shape": "FSxLustreFileSystemConfig",
|
|
3237
3634
|
"type": "structure",
|
|
3238
3635
|
},
|
|
3636
|
+
{"name": "S3FileSystemConfig", "shape": "S3FileSystemConfig", "type": "structure"},
|
|
3239
3637
|
],
|
|
3240
3638
|
"type": "structure",
|
|
3241
3639
|
},
|
|
@@ -3815,6 +4213,10 @@ SHAPE_DAG = {
|
|
|
3815
4213
|
"members": [{"name": "PipelineArn", "shape": "PipelineArn", "type": "string"}],
|
|
3816
4214
|
"type": "structure",
|
|
3817
4215
|
},
|
|
4216
|
+
"DeleteProcessingJobRequest": {
|
|
4217
|
+
"members": [{"name": "ProcessingJobName", "shape": "ProcessingJobName", "type": "string"}],
|
|
4218
|
+
"type": "structure",
|
|
4219
|
+
},
|
|
3818
4220
|
"DeleteProjectInput": {
|
|
3819
4221
|
"members": [{"name": "ProjectName", "shape": "ProjectEntityName", "type": "string"}],
|
|
3820
4222
|
"type": "structure",
|
|
@@ -3854,6 +4256,10 @@ SHAPE_DAG = {
|
|
|
3854
4256
|
"type": "structure",
|
|
3855
4257
|
},
|
|
3856
4258
|
"DeleteTagsOutput": {"members": [], "type": "structure"},
|
|
4259
|
+
"DeleteTrainingJobRequest": {
|
|
4260
|
+
"members": [{"name": "TrainingJobName", "shape": "TrainingJobName", "type": "string"}],
|
|
4261
|
+
"type": "structure",
|
|
4262
|
+
},
|
|
3857
4263
|
"DeleteTrialComponentRequest": {
|
|
3858
4264
|
"members": [
|
|
3859
4265
|
{"name": "TrialComponentName", "shape": "ExperimentEntityName", "type": "string"}
|
|
@@ -4099,6 +4505,11 @@ SHAPE_DAG = {
|
|
|
4099
4505
|
{"name": "UserProfileName", "shape": "UserProfileName", "type": "string"},
|
|
4100
4506
|
{"name": "SpaceName", "shape": "SpaceName", "type": "string"},
|
|
4101
4507
|
{"name": "Status", "shape": "AppStatus", "type": "string"},
|
|
4508
|
+
{
|
|
4509
|
+
"name": "EffectiveTrustedIdentityPropagationStatus",
|
|
4510
|
+
"shape": "FeatureStatus",
|
|
4511
|
+
"type": "string",
|
|
4512
|
+
},
|
|
4102
4513
|
{"name": "RecoveryMode", "shape": "Boolean", "type": "boolean"},
|
|
4103
4514
|
{"name": "LastHealthCheckTimestamp", "shape": "Timestamp", "type": "timestamp"},
|
|
4104
4515
|
{"name": "LastUserActivityTimestamp", "shape": "Timestamp", "type": "timestamp"},
|
|
@@ -4231,10 +4642,22 @@ SHAPE_DAG = {
|
|
|
4231
4642
|
],
|
|
4232
4643
|
"type": "structure",
|
|
4233
4644
|
},
|
|
4645
|
+
"DescribeClusterEventRequest": {
|
|
4646
|
+
"members": [
|
|
4647
|
+
{"name": "EventId", "shape": "EventId", "type": "string"},
|
|
4648
|
+
{"name": "ClusterName", "shape": "ClusterNameOrArn", "type": "string"},
|
|
4649
|
+
],
|
|
4650
|
+
"type": "structure",
|
|
4651
|
+
},
|
|
4652
|
+
"DescribeClusterEventResponse": {
|
|
4653
|
+
"members": [{"name": "EventDetails", "shape": "ClusterEventDetail", "type": "structure"}],
|
|
4654
|
+
"type": "structure",
|
|
4655
|
+
},
|
|
4234
4656
|
"DescribeClusterNodeRequest": {
|
|
4235
4657
|
"members": [
|
|
4236
4658
|
{"name": "ClusterName", "shape": "ClusterNameOrArn", "type": "string"},
|
|
4237
4659
|
{"name": "NodeId", "shape": "ClusterNodeId", "type": "string"},
|
|
4660
|
+
{"name": "NodeLogicalId", "shape": "ClusterNodeLogicalId", "type": "string"},
|
|
4238
4661
|
],
|
|
4239
4662
|
"type": "structure",
|
|
4240
4663
|
},
|
|
@@ -4254,9 +4677,26 @@ SHAPE_DAG = {
|
|
|
4254
4677
|
{"name": "CreationTime", "shape": "Timestamp", "type": "timestamp"},
|
|
4255
4678
|
{"name": "FailureMessage", "shape": "String", "type": "string"},
|
|
4256
4679
|
{"name": "InstanceGroups", "shape": "ClusterInstanceGroupDetailsList", "type": "list"},
|
|
4680
|
+
{
|
|
4681
|
+
"name": "RestrictedInstanceGroups",
|
|
4682
|
+
"shape": "ClusterRestrictedInstanceGroupDetailsList",
|
|
4683
|
+
"type": "list",
|
|
4684
|
+
},
|
|
4257
4685
|
{"name": "VpcConfig", "shape": "VpcConfig", "type": "structure"},
|
|
4258
4686
|
{"name": "Orchestrator", "shape": "ClusterOrchestrator", "type": "structure"},
|
|
4687
|
+
{
|
|
4688
|
+
"name": "TieredStorageConfig",
|
|
4689
|
+
"shape": "ClusterTieredStorageConfig",
|
|
4690
|
+
"type": "structure",
|
|
4691
|
+
},
|
|
4259
4692
|
{"name": "NodeRecovery", "shape": "ClusterNodeRecovery", "type": "string"},
|
|
4693
|
+
{
|
|
4694
|
+
"name": "NodeProvisioningMode",
|
|
4695
|
+
"shape": "ClusterNodeProvisioningMode",
|
|
4696
|
+
"type": "string",
|
|
4697
|
+
},
|
|
4698
|
+
{"name": "ClusterRole", "shape": "RoleArn", "type": "string"},
|
|
4699
|
+
{"name": "AutoScaling", "shape": "ClusterAutoScalingConfigOutput", "type": "structure"},
|
|
4260
4700
|
],
|
|
4261
4701
|
"type": "structure",
|
|
4262
4702
|
},
|
|
@@ -5465,6 +5905,7 @@ SHAPE_DAG = {
|
|
|
5465
5905
|
{"name": "FailureReason", "shape": "FailureReason", "type": "string"},
|
|
5466
5906
|
{"name": "Url", "shape": "NotebookInstanceUrl", "type": "string"},
|
|
5467
5907
|
{"name": "InstanceType", "shape": "InstanceType", "type": "string"},
|
|
5908
|
+
{"name": "IpAddressType", "shape": "IPAddressType", "type": "string"},
|
|
5468
5909
|
{"name": "SubnetId", "shape": "SubnetId", "type": "string"},
|
|
5469
5910
|
{"name": "SecurityGroups", "shape": "SecurityGroupIds", "type": "list"},
|
|
5470
5911
|
{"name": "RoleArn", "shape": "RoleArn", "type": "string"},
|
|
@@ -5625,11 +6066,15 @@ SHAPE_DAG = {
|
|
|
5625
6066
|
"shape": "SelectiveExecutionConfig",
|
|
5626
6067
|
"type": "structure",
|
|
5627
6068
|
},
|
|
6069
|
+
{"name": "PipelineVersionId", "shape": "PipelineVersionId", "type": "long"},
|
|
5628
6070
|
],
|
|
5629
6071
|
"type": "structure",
|
|
5630
6072
|
},
|
|
5631
6073
|
"DescribePipelineRequest": {
|
|
5632
|
-
"members": [
|
|
6074
|
+
"members": [
|
|
6075
|
+
{"name": "PipelineName", "shape": "PipelineNameOrArn", "type": "string"},
|
|
6076
|
+
{"name": "PipelineVersionId", "shape": "PipelineVersionId", "type": "long"},
|
|
6077
|
+
],
|
|
5633
6078
|
"type": "structure",
|
|
5634
6079
|
},
|
|
5635
6080
|
"DescribePipelineResponse": {
|
|
@@ -5651,6 +6096,16 @@ SHAPE_DAG = {
|
|
|
5651
6096
|
"shape": "ParallelismConfiguration",
|
|
5652
6097
|
"type": "structure",
|
|
5653
6098
|
},
|
|
6099
|
+
{
|
|
6100
|
+
"name": "PipelineVersionDisplayName",
|
|
6101
|
+
"shape": "PipelineVersionName",
|
|
6102
|
+
"type": "string",
|
|
6103
|
+
},
|
|
6104
|
+
{
|
|
6105
|
+
"name": "PipelineVersionDescription",
|
|
6106
|
+
"shape": "PipelineVersionDescription",
|
|
6107
|
+
"type": "string",
|
|
6108
|
+
},
|
|
5654
6109
|
],
|
|
5655
6110
|
"type": "structure",
|
|
5656
6111
|
},
|
|
@@ -5713,6 +6168,11 @@ SHAPE_DAG = {
|
|
|
5713
6168
|
"type": "structure",
|
|
5714
6169
|
},
|
|
5715
6170
|
{"name": "ProjectStatus", "shape": "ProjectStatus", "type": "string"},
|
|
6171
|
+
{
|
|
6172
|
+
"name": "TemplateProviderDetails",
|
|
6173
|
+
"shape": "TemplateProviderDetailList",
|
|
6174
|
+
"type": "list",
|
|
6175
|
+
},
|
|
5716
6176
|
{"name": "CreatedBy", "shape": "UserContext", "type": "structure"},
|
|
5717
6177
|
{"name": "CreationTime", "shape": "Timestamp", "type": "timestamp"},
|
|
5718
6178
|
{"name": "LastModifiedTime", "shape": "Timestamp", "type": "timestamp"},
|
|
@@ -5720,6 +6180,34 @@ SHAPE_DAG = {
|
|
|
5720
6180
|
],
|
|
5721
6181
|
"type": "structure",
|
|
5722
6182
|
},
|
|
6183
|
+
"DescribeReservedCapacityRequest": {
|
|
6184
|
+
"members": [
|
|
6185
|
+
{"name": "ReservedCapacityArn", "shape": "ReservedCapacityArn", "type": "string"}
|
|
6186
|
+
],
|
|
6187
|
+
"type": "structure",
|
|
6188
|
+
},
|
|
6189
|
+
"DescribeReservedCapacityResponse": {
|
|
6190
|
+
"members": [
|
|
6191
|
+
{"name": "ReservedCapacityArn", "shape": "ReservedCapacityArn", "type": "string"},
|
|
6192
|
+
{"name": "ReservedCapacityType", "shape": "ReservedCapacityType", "type": "string"},
|
|
6193
|
+
{"name": "Status", "shape": "ReservedCapacityStatus", "type": "string"},
|
|
6194
|
+
{"name": "AvailabilityZone", "shape": "AvailabilityZone", "type": "string"},
|
|
6195
|
+
{"name": "DurationHours", "shape": "ReservedCapacityDurationHours", "type": "long"},
|
|
6196
|
+
{"name": "DurationMinutes", "shape": "ReservedCapacityDurationMinutes", "type": "long"},
|
|
6197
|
+
{"name": "StartTime", "shape": "Timestamp", "type": "timestamp"},
|
|
6198
|
+
{"name": "EndTime", "shape": "Timestamp", "type": "timestamp"},
|
|
6199
|
+
{"name": "InstanceType", "shape": "ReservedCapacityInstanceType", "type": "string"},
|
|
6200
|
+
{"name": "TotalInstanceCount", "shape": "TotalInstanceCount", "type": "integer"},
|
|
6201
|
+
{
|
|
6202
|
+
"name": "AvailableInstanceCount",
|
|
6203
|
+
"shape": "AvailableInstanceCount",
|
|
6204
|
+
"type": "integer",
|
|
6205
|
+
},
|
|
6206
|
+
{"name": "InUseInstanceCount", "shape": "InUseInstanceCount", "type": "integer"},
|
|
6207
|
+
{"name": "UltraServerSummary", "shape": "UltraServerSummary", "type": "structure"},
|
|
6208
|
+
],
|
|
6209
|
+
"type": "structure",
|
|
6210
|
+
},
|
|
5723
6211
|
"DescribeSpaceRequest": {
|
|
5724
6212
|
"members": [
|
|
5725
6213
|
{"name": "DomainId", "shape": "DomainId", "type": "string"},
|
|
@@ -5895,6 +6383,17 @@ SHAPE_DAG = {
|
|
|
5895
6383
|
"type": "integer",
|
|
5896
6384
|
},
|
|
5897
6385
|
{"name": "InUseInstanceCount", "shape": "InUseInstanceCount", "type": "integer"},
|
|
6386
|
+
{
|
|
6387
|
+
"name": "UnhealthyInstanceCount",
|
|
6388
|
+
"shape": "UnhealthyInstanceCount",
|
|
6389
|
+
"type": "integer",
|
|
6390
|
+
},
|
|
6391
|
+
{
|
|
6392
|
+
"name": "AvailableSpareInstanceCount",
|
|
6393
|
+
"shape": "AvailableSpareInstanceCount",
|
|
6394
|
+
"type": "integer",
|
|
6395
|
+
},
|
|
6396
|
+
{"name": "TotalUltraServerCount", "shape": "UltraServerCount", "type": "integer"},
|
|
5898
6397
|
{"name": "TargetResources", "shape": "SageMakerResourceNames", "type": "list"},
|
|
5899
6398
|
{
|
|
5900
6399
|
"name": "ReservedCapacitySummaries",
|
|
@@ -6047,6 +6546,25 @@ SHAPE_DAG = {
|
|
|
6047
6546
|
"member_type": "structure",
|
|
6048
6547
|
"type": "list",
|
|
6049
6548
|
},
|
|
6549
|
+
"DetachClusterNodeVolumeRequest": {
|
|
6550
|
+
"members": [
|
|
6551
|
+
{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"},
|
|
6552
|
+
{"name": "NodeId", "shape": "ClusterNodeId", "type": "string"},
|
|
6553
|
+
{"name": "VolumeId", "shape": "VolumeId", "type": "string"},
|
|
6554
|
+
],
|
|
6555
|
+
"type": "structure",
|
|
6556
|
+
},
|
|
6557
|
+
"DetachClusterNodeVolumeResponse": {
|
|
6558
|
+
"members": [
|
|
6559
|
+
{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"},
|
|
6560
|
+
{"name": "NodeId", "shape": "ClusterNodeId", "type": "string"},
|
|
6561
|
+
{"name": "VolumeId", "shape": "VolumeId", "type": "string"},
|
|
6562
|
+
{"name": "AttachTime", "shape": "Timestamp", "type": "timestamp"},
|
|
6563
|
+
{"name": "Status", "shape": "VolumeAttachmentStatus", "type": "string"},
|
|
6564
|
+
{"name": "DeviceName", "shape": "VolumeDeviceName", "type": "string"},
|
|
6565
|
+
],
|
|
6566
|
+
"type": "structure",
|
|
6567
|
+
},
|
|
6050
6568
|
"Device": {
|
|
6051
6569
|
"members": [
|
|
6052
6570
|
{"name": "DeviceName", "shape": "DeviceName", "type": "string"},
|
|
@@ -6151,6 +6669,7 @@ SHAPE_DAG = {
|
|
|
6151
6669
|
"members": [
|
|
6152
6670
|
{"name": "EnableDockerAccess", "shape": "FeatureStatus", "type": "string"},
|
|
6153
6671
|
{"name": "VpcOnlyTrustedAccounts", "shape": "VpcOnlyTrustedAccounts", "type": "list"},
|
|
6672
|
+
{"name": "RootlessDocker", "shape": "FeatureStatus", "type": "string"},
|
|
6154
6673
|
],
|
|
6155
6674
|
"type": "structure",
|
|
6156
6675
|
},
|
|
@@ -6185,6 +6704,11 @@ SHAPE_DAG = {
|
|
|
6185
6704
|
"shape": "ExecutionRoleIdentityConfig",
|
|
6186
6705
|
"type": "string",
|
|
6187
6706
|
},
|
|
6707
|
+
{
|
|
6708
|
+
"name": "TrustedIdentityPropagationSettings",
|
|
6709
|
+
"shape": "TrustedIdentityPropagationSettings",
|
|
6710
|
+
"type": "structure",
|
|
6711
|
+
},
|
|
6188
6712
|
{"name": "DockerSettings", "shape": "DockerSettings", "type": "structure"},
|
|
6189
6713
|
{"name": "AmazonQSettings", "shape": "AmazonQSettings", "type": "structure"},
|
|
6190
6714
|
{
|
|
@@ -6192,6 +6716,7 @@ SHAPE_DAG = {
|
|
|
6192
6716
|
"shape": "UnifiedStudioSettings",
|
|
6193
6717
|
"type": "structure",
|
|
6194
6718
|
},
|
|
6719
|
+
{"name": "IpAddressType", "shape": "IPAddressType", "type": "string"},
|
|
6195
6720
|
],
|
|
6196
6721
|
"type": "structure",
|
|
6197
6722
|
},
|
|
@@ -6208,6 +6733,11 @@ SHAPE_DAG = {
|
|
|
6208
6733
|
"type": "string",
|
|
6209
6734
|
},
|
|
6210
6735
|
{"name": "SecurityGroupIds", "shape": "DomainSecurityGroupIds", "type": "list"},
|
|
6736
|
+
{
|
|
6737
|
+
"name": "TrustedIdentityPropagationSettings",
|
|
6738
|
+
"shape": "TrustedIdentityPropagationSettings",
|
|
6739
|
+
"type": "structure",
|
|
6740
|
+
},
|
|
6211
6741
|
{"name": "DockerSettings", "shape": "DockerSettings", "type": "structure"},
|
|
6212
6742
|
{"name": "AmazonQSettings", "shape": "AmazonQSettings", "type": "structure"},
|
|
6213
6743
|
{
|
|
@@ -6215,6 +6745,7 @@ SHAPE_DAG = {
|
|
|
6215
6745
|
"shape": "UnifiedStudioSettings",
|
|
6216
6746
|
"type": "structure",
|
|
6217
6747
|
},
|
|
6748
|
+
{"name": "IpAddressType", "shape": "IPAddressType", "type": "string"},
|
|
6218
6749
|
],
|
|
6219
6750
|
"type": "structure",
|
|
6220
6751
|
},
|
|
@@ -6440,6 +6971,8 @@ SHAPE_DAG = {
|
|
|
6440
6971
|
"type": "structure",
|
|
6441
6972
|
},
|
|
6442
6973
|
"Edges": {"member_shape": "Edge", "member_type": "structure", "type": "list"},
|
|
6974
|
+
"EfaEnis": {"member_shape": "String", "member_type": "string", "type": "list"},
|
|
6975
|
+
"EksRoleAccessEntries": {"member_shape": "String", "member_type": "string", "type": "list"},
|
|
6443
6976
|
"EmrServerlessComputeConfig": {
|
|
6444
6977
|
"members": [{"name": "ExecutionRoleARN", "shape": "RoleArn", "type": "string"}],
|
|
6445
6978
|
"type": "structure",
|
|
@@ -6611,6 +7144,17 @@ SHAPE_DAG = {
|
|
|
6611
7144
|
"type": "list",
|
|
6612
7145
|
},
|
|
6613
7146
|
"Endpoints": {"member_shape": "EndpointInfo", "member_type": "structure", "type": "list"},
|
|
7147
|
+
"EnvironmentConfig": {
|
|
7148
|
+
"members": [{"name": "FSxLustreConfig", "shape": "FSxLustreConfig", "type": "structure"}],
|
|
7149
|
+
"type": "structure",
|
|
7150
|
+
},
|
|
7151
|
+
"EnvironmentConfigDetails": {
|
|
7152
|
+
"members": [
|
|
7153
|
+
{"name": "FSxLustreConfig", "shape": "FSxLustreConfig", "type": "structure"},
|
|
7154
|
+
{"name": "S3OutputPath", "shape": "S3Uri", "type": "string"},
|
|
7155
|
+
],
|
|
7156
|
+
"type": "structure",
|
|
7157
|
+
},
|
|
6614
7158
|
"EnvironmentMap": {
|
|
6615
7159
|
"key_shape": "EnvironmentKey",
|
|
6616
7160
|
"key_type": "string",
|
|
@@ -6644,6 +7188,23 @@ SHAPE_DAG = {
|
|
|
6644
7188
|
],
|
|
6645
7189
|
"type": "structure",
|
|
6646
7190
|
},
|
|
7191
|
+
"EventDetails": {
|
|
7192
|
+
"members": [{"name": "EventMetadata", "shape": "EventMetadata", "type": "structure"}],
|
|
7193
|
+
"type": "structure",
|
|
7194
|
+
},
|
|
7195
|
+
"EventMetadata": {
|
|
7196
|
+
"members": [
|
|
7197
|
+
{"name": "Cluster", "shape": "ClusterMetadata", "type": "structure"},
|
|
7198
|
+
{"name": "InstanceGroup", "shape": "InstanceGroupMetadata", "type": "structure"},
|
|
7199
|
+
{
|
|
7200
|
+
"name": "InstanceGroupScaling",
|
|
7201
|
+
"shape": "InstanceGroupScalingMetadata",
|
|
7202
|
+
"type": "structure",
|
|
7203
|
+
},
|
|
7204
|
+
{"name": "Instance", "shape": "InstanceMetadata", "type": "structure"},
|
|
7205
|
+
],
|
|
7206
|
+
"type": "structure",
|
|
7207
|
+
},
|
|
6647
7208
|
"ExecutionRoleArns": {"member_shape": "RoleArn", "member_type": "string", "type": "list"},
|
|
6648
7209
|
"Experiment": {
|
|
6649
7210
|
"members": [
|
|
@@ -6710,6 +7271,17 @@ SHAPE_DAG = {
|
|
|
6710
7271
|
],
|
|
6711
7272
|
"type": "structure",
|
|
6712
7273
|
},
|
|
7274
|
+
"FSxLustreConfig": {
|
|
7275
|
+
"members": [
|
|
7276
|
+
{"name": "SizeInGiB", "shape": "FSxLustreSizeInGiB", "type": "integer"},
|
|
7277
|
+
{
|
|
7278
|
+
"name": "PerUnitStorageThroughput",
|
|
7279
|
+
"shape": "FSxLustrePerUnitStorageThroughput",
|
|
7280
|
+
"type": "integer",
|
|
7281
|
+
},
|
|
7282
|
+
],
|
|
7283
|
+
"type": "structure",
|
|
7284
|
+
},
|
|
6713
7285
|
"FSxLustreFileSystem": {
|
|
6714
7286
|
"members": [{"name": "FileSystemId", "shape": "FileSystemId", "type": "string"}],
|
|
6715
7287
|
"type": "structure",
|
|
@@ -7801,6 +8373,14 @@ SHAPE_DAG = {
|
|
|
7801
8373
|
],
|
|
7802
8374
|
"type": "structure",
|
|
7803
8375
|
},
|
|
8376
|
+
"InferenceComponentDataCacheConfig": {
|
|
8377
|
+
"members": [{"name": "EnableCaching", "shape": "EnableCaching", "type": "boolean"}],
|
|
8378
|
+
"type": "structure",
|
|
8379
|
+
},
|
|
8380
|
+
"InferenceComponentDataCacheConfigSummary": {
|
|
8381
|
+
"members": [{"name": "EnableCaching", "shape": "EnableCaching", "type": "boolean"}],
|
|
8382
|
+
"type": "structure",
|
|
8383
|
+
},
|
|
7804
8384
|
"InferenceComponentDeploymentConfig": {
|
|
7805
8385
|
"members": [
|
|
7806
8386
|
{
|
|
@@ -7873,6 +8453,11 @@ SHAPE_DAG = {
|
|
|
7873
8453
|
"shape": "InferenceComponentName",
|
|
7874
8454
|
"type": "string",
|
|
7875
8455
|
},
|
|
8456
|
+
{
|
|
8457
|
+
"name": "DataCacheConfig",
|
|
8458
|
+
"shape": "InferenceComponentDataCacheConfig",
|
|
8459
|
+
"type": "structure",
|
|
8460
|
+
},
|
|
7876
8461
|
],
|
|
7877
8462
|
"type": "structure",
|
|
7878
8463
|
},
|
|
@@ -7899,6 +8484,11 @@ SHAPE_DAG = {
|
|
|
7899
8484
|
"shape": "InferenceComponentName",
|
|
7900
8485
|
"type": "string",
|
|
7901
8486
|
},
|
|
8487
|
+
{
|
|
8488
|
+
"name": "DataCacheConfig",
|
|
8489
|
+
"shape": "InferenceComponentDataCacheConfigSummary",
|
|
8490
|
+
"type": "structure",
|
|
8491
|
+
},
|
|
7902
8492
|
],
|
|
7903
8493
|
"type": "structure",
|
|
7904
8494
|
},
|
|
@@ -8091,12 +8681,42 @@ SHAPE_DAG = {
|
|
|
8091
8681
|
],
|
|
8092
8682
|
"type": "structure",
|
|
8093
8683
|
},
|
|
8684
|
+
"InstanceGroupMetadata": {
|
|
8685
|
+
"members": [
|
|
8686
|
+
{"name": "FailureMessage", "shape": "String", "type": "string"},
|
|
8687
|
+
{"name": "AvailabilityZoneId", "shape": "String", "type": "string"},
|
|
8688
|
+
{"name": "CapacityReservation", "shape": "CapacityReservation", "type": "structure"},
|
|
8689
|
+
{"name": "SubnetId", "shape": "String", "type": "string"},
|
|
8690
|
+
{"name": "SecurityGroupIds", "shape": "SecurityGroupIds", "type": "list"},
|
|
8691
|
+
{"name": "AmiOverride", "shape": "String", "type": "string"},
|
|
8692
|
+
],
|
|
8693
|
+
"type": "structure",
|
|
8694
|
+
},
|
|
8094
8695
|
"InstanceGroupNames": {
|
|
8095
8696
|
"member_shape": "InstanceGroupName",
|
|
8096
8697
|
"member_type": "string",
|
|
8097
8698
|
"type": "list",
|
|
8098
8699
|
},
|
|
8700
|
+
"InstanceGroupScalingMetadata": {
|
|
8701
|
+
"members": [
|
|
8702
|
+
{"name": "InstanceCount", "shape": "InstanceCount", "type": "integer"},
|
|
8703
|
+
{"name": "TargetCount", "shape": "TargetCount", "type": "integer"},
|
|
8704
|
+
{"name": "FailureMessage", "shape": "String", "type": "string"},
|
|
8705
|
+
],
|
|
8706
|
+
"type": "structure",
|
|
8707
|
+
},
|
|
8099
8708
|
"InstanceGroups": {"member_shape": "InstanceGroup", "member_type": "structure", "type": "list"},
|
|
8709
|
+
"InstanceMetadata": {
|
|
8710
|
+
"members": [
|
|
8711
|
+
{"name": "CustomerEni", "shape": "String", "type": "string"},
|
|
8712
|
+
{"name": "AdditionalEnis", "shape": "AdditionalEnis", "type": "structure"},
|
|
8713
|
+
{"name": "CapacityReservation", "shape": "CapacityReservation", "type": "structure"},
|
|
8714
|
+
{"name": "FailureMessage", "shape": "String", "type": "string"},
|
|
8715
|
+
{"name": "LcsExecutionState", "shape": "String", "type": "string"},
|
|
8716
|
+
{"name": "NodeLogicalId", "shape": "ClusterNodeLogicalId", "type": "string"},
|
|
8717
|
+
],
|
|
8718
|
+
"type": "structure",
|
|
8719
|
+
},
|
|
8100
8720
|
"InstanceMetadataServiceConfiguration": {
|
|
8101
8721
|
"members": [
|
|
8102
8722
|
{
|
|
@@ -8107,6 +8727,13 @@ SHAPE_DAG = {
|
|
|
8107
8727
|
],
|
|
8108
8728
|
"type": "structure",
|
|
8109
8729
|
},
|
|
8730
|
+
"InstancePlacementConfig": {
|
|
8731
|
+
"members": [
|
|
8732
|
+
{"name": "EnableMultipleJobs", "shape": "Boolean", "type": "boolean"},
|
|
8733
|
+
{"name": "PlacementSpecifications", "shape": "PlacementSpecifications", "type": "list"},
|
|
8734
|
+
],
|
|
8735
|
+
"type": "structure",
|
|
8736
|
+
},
|
|
8110
8737
|
"IntegerParameterRange": {
|
|
8111
8738
|
"members": [
|
|
8112
8739
|
{"name": "Name", "shape": "ParameterKey", "type": "string"},
|
|
@@ -8668,6 +9295,28 @@ SHAPE_DAG = {
|
|
|
8668
9295
|
],
|
|
8669
9296
|
"type": "structure",
|
|
8670
9297
|
},
|
|
9298
|
+
"ListClusterEventsRequest": {
|
|
9299
|
+
"members": [
|
|
9300
|
+
{"name": "ClusterName", "shape": "ClusterNameOrArn", "type": "string"},
|
|
9301
|
+
{"name": "InstanceGroupName", "shape": "ClusterInstanceGroupName", "type": "string"},
|
|
9302
|
+
{"name": "NodeId", "shape": "ClusterNodeId", "type": "string"},
|
|
9303
|
+
{"name": "EventTimeAfter", "shape": "Timestamp", "type": "timestamp"},
|
|
9304
|
+
{"name": "EventTimeBefore", "shape": "Timestamp", "type": "timestamp"},
|
|
9305
|
+
{"name": "SortBy", "shape": "EventSortBy", "type": "string"},
|
|
9306
|
+
{"name": "SortOrder", "shape": "SortOrder", "type": "string"},
|
|
9307
|
+
{"name": "ResourceType", "shape": "ClusterEventResourceType", "type": "string"},
|
|
9308
|
+
{"name": "MaxResults", "shape": "ClusterEventMaxResults", "type": "integer"},
|
|
9309
|
+
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
9310
|
+
],
|
|
9311
|
+
"type": "structure",
|
|
9312
|
+
},
|
|
9313
|
+
"ListClusterEventsResponse": {
|
|
9314
|
+
"members": [
|
|
9315
|
+
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
9316
|
+
{"name": "Events", "shape": "ClusterEventSummaries", "type": "list"},
|
|
9317
|
+
],
|
|
9318
|
+
"type": "structure",
|
|
9319
|
+
},
|
|
8671
9320
|
"ListClusterNodesRequest": {
|
|
8672
9321
|
"members": [
|
|
8673
9322
|
{"name": "ClusterName", "shape": "ClusterNameOrArn", "type": "string"},
|
|
@@ -8682,6 +9331,11 @@ SHAPE_DAG = {
|
|
|
8682
9331
|
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
8683
9332
|
{"name": "SortBy", "shape": "ClusterSortBy", "type": "string"},
|
|
8684
9333
|
{"name": "SortOrder", "shape": "SortOrder", "type": "string"},
|
|
9334
|
+
{
|
|
9335
|
+
"name": "IncludeNodeLogicalIds",
|
|
9336
|
+
"shape": "IncludeNodeLogicalIdsBoolean",
|
|
9337
|
+
"type": "boolean",
|
|
9338
|
+
},
|
|
8685
9339
|
],
|
|
8686
9340
|
"type": "structure",
|
|
8687
9341
|
},
|
|
@@ -9914,6 +10568,28 @@ SHAPE_DAG = {
|
|
|
9914
10568
|
],
|
|
9915
10569
|
"type": "structure",
|
|
9916
10570
|
},
|
|
10571
|
+
"ListPipelineVersionsRequest": {
|
|
10572
|
+
"members": [
|
|
10573
|
+
{"name": "PipelineName", "shape": "PipelineNameOrArn", "type": "string"},
|
|
10574
|
+
{"name": "CreatedAfter", "shape": "Timestamp", "type": "timestamp"},
|
|
10575
|
+
{"name": "CreatedBefore", "shape": "Timestamp", "type": "timestamp"},
|
|
10576
|
+
{"name": "SortOrder", "shape": "SortOrder", "type": "string"},
|
|
10577
|
+
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
10578
|
+
{"name": "MaxResults", "shape": "MaxResults", "type": "integer"},
|
|
10579
|
+
],
|
|
10580
|
+
"type": "structure",
|
|
10581
|
+
},
|
|
10582
|
+
"ListPipelineVersionsResponse": {
|
|
10583
|
+
"members": [
|
|
10584
|
+
{
|
|
10585
|
+
"name": "PipelineVersionSummaries",
|
|
10586
|
+
"shape": "PipelineVersionSummaryList",
|
|
10587
|
+
"type": "list",
|
|
10588
|
+
},
|
|
10589
|
+
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
10590
|
+
],
|
|
10591
|
+
"type": "structure",
|
|
10592
|
+
},
|
|
9917
10593
|
"ListPipelinesRequest": {
|
|
9918
10594
|
"members": [
|
|
9919
10595
|
{"name": "PipelineNamePrefix", "shape": "PipelineName", "type": "string"},
|
|
@@ -10225,6 +10901,21 @@ SHAPE_DAG = {
|
|
|
10225
10901
|
],
|
|
10226
10902
|
"type": "structure",
|
|
10227
10903
|
},
|
|
10904
|
+
"ListUltraServersByReservedCapacityRequest": {
|
|
10905
|
+
"members": [
|
|
10906
|
+
{"name": "ReservedCapacityArn", "shape": "ReservedCapacityArn", "type": "string"},
|
|
10907
|
+
{"name": "MaxResults", "shape": "MaxResults", "type": "integer"},
|
|
10908
|
+
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
10909
|
+
],
|
|
10910
|
+
"type": "structure",
|
|
10911
|
+
},
|
|
10912
|
+
"ListUltraServersByReservedCapacityResponse": {
|
|
10913
|
+
"members": [
|
|
10914
|
+
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
10915
|
+
{"name": "UltraServers", "shape": "UltraServers", "type": "list"},
|
|
10916
|
+
],
|
|
10917
|
+
"type": "structure",
|
|
10918
|
+
},
|
|
10228
10919
|
"ListUserProfilesRequest": {
|
|
10229
10920
|
"members": [
|
|
10230
10921
|
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
@@ -11506,6 +12197,19 @@ SHAPE_DAG = {
|
|
|
11506
12197
|
],
|
|
11507
12198
|
"type": "structure",
|
|
11508
12199
|
},
|
|
12200
|
+
"NodeAdditionResult": {
|
|
12201
|
+
"members": [
|
|
12202
|
+
{"name": "NodeLogicalId", "shape": "ClusterNodeLogicalId", "type": "string"},
|
|
12203
|
+
{"name": "InstanceGroupName", "shape": "ClusterInstanceGroupName", "type": "string"},
|
|
12204
|
+
{"name": "Status", "shape": "ClusterInstanceStatus", "type": "string"},
|
|
12205
|
+
],
|
|
12206
|
+
"type": "structure",
|
|
12207
|
+
},
|
|
12208
|
+
"NodeAdditionResultList": {
|
|
12209
|
+
"member_shape": "NodeAdditionResult",
|
|
12210
|
+
"member_type": "structure",
|
|
12211
|
+
"type": "list",
|
|
12212
|
+
},
|
|
11509
12213
|
"NotebookInstanceAcceleratorTypes": {
|
|
11510
12214
|
"member_shape": "NotebookInstanceAcceleratorType",
|
|
11511
12215
|
"member_type": "string",
|
|
@@ -12084,6 +12788,12 @@ SHAPE_DAG = {
|
|
|
12084
12788
|
"type": "structure",
|
|
12085
12789
|
},
|
|
12086
12790
|
{"name": "PipelineParameters", "shape": "ParameterList", "type": "list"},
|
|
12791
|
+
{"name": "PipelineVersionId", "shape": "PipelineVersionId", "type": "long"},
|
|
12792
|
+
{
|
|
12793
|
+
"name": "PipelineVersionDisplayName",
|
|
12794
|
+
"shape": "PipelineVersionName",
|
|
12795
|
+
"type": "string",
|
|
12796
|
+
},
|
|
12087
12797
|
],
|
|
12088
12798
|
"type": "structure",
|
|
12089
12799
|
},
|
|
@@ -12186,10 +12896,93 @@ SHAPE_DAG = {
|
|
|
12186
12896
|
"member_type": "structure",
|
|
12187
12897
|
"type": "list",
|
|
12188
12898
|
},
|
|
12899
|
+
"PipelineVersion": {
|
|
12900
|
+
"members": [
|
|
12901
|
+
{"name": "PipelineArn", "shape": "PipelineArn", "type": "string"},
|
|
12902
|
+
{"name": "PipelineVersionId", "shape": "PipelineVersionId", "type": "long"},
|
|
12903
|
+
{
|
|
12904
|
+
"name": "PipelineVersionDisplayName",
|
|
12905
|
+
"shape": "PipelineVersionName",
|
|
12906
|
+
"type": "string",
|
|
12907
|
+
},
|
|
12908
|
+
{
|
|
12909
|
+
"name": "PipelineVersionDescription",
|
|
12910
|
+
"shape": "PipelineVersionDescription",
|
|
12911
|
+
"type": "string",
|
|
12912
|
+
},
|
|
12913
|
+
{"name": "CreationTime", "shape": "Timestamp", "type": "timestamp"},
|
|
12914
|
+
{"name": "LastModifiedTime", "shape": "Timestamp", "type": "timestamp"},
|
|
12915
|
+
{"name": "CreatedBy", "shape": "UserContext", "type": "structure"},
|
|
12916
|
+
{"name": "LastModifiedBy", "shape": "UserContext", "type": "structure"},
|
|
12917
|
+
{
|
|
12918
|
+
"name": "LastExecutedPipelineExecutionArn",
|
|
12919
|
+
"shape": "PipelineExecutionArn",
|
|
12920
|
+
"type": "string",
|
|
12921
|
+
},
|
|
12922
|
+
{
|
|
12923
|
+
"name": "LastExecutedPipelineExecutionDisplayName",
|
|
12924
|
+
"shape": "PipelineExecutionName",
|
|
12925
|
+
"type": "string",
|
|
12926
|
+
},
|
|
12927
|
+
{
|
|
12928
|
+
"name": "LastExecutedPipelineExecutionStatus",
|
|
12929
|
+
"shape": "PipelineExecutionStatus",
|
|
12930
|
+
"type": "string",
|
|
12931
|
+
},
|
|
12932
|
+
],
|
|
12933
|
+
"type": "structure",
|
|
12934
|
+
},
|
|
12935
|
+
"PipelineVersionSummary": {
|
|
12936
|
+
"members": [
|
|
12937
|
+
{"name": "PipelineArn", "shape": "PipelineArn", "type": "string"},
|
|
12938
|
+
{"name": "PipelineVersionId", "shape": "PipelineVersionId", "type": "long"},
|
|
12939
|
+
{"name": "CreationTime", "shape": "Timestamp", "type": "timestamp"},
|
|
12940
|
+
{
|
|
12941
|
+
"name": "PipelineVersionDescription",
|
|
12942
|
+
"shape": "PipelineVersionDescription",
|
|
12943
|
+
"type": "string",
|
|
12944
|
+
},
|
|
12945
|
+
{
|
|
12946
|
+
"name": "PipelineVersionDisplayName",
|
|
12947
|
+
"shape": "PipelineVersionName",
|
|
12948
|
+
"type": "string",
|
|
12949
|
+
},
|
|
12950
|
+
{
|
|
12951
|
+
"name": "LastExecutionPipelineExecutionArn",
|
|
12952
|
+
"shape": "PipelineExecutionArn",
|
|
12953
|
+
"type": "string",
|
|
12954
|
+
},
|
|
12955
|
+
],
|
|
12956
|
+
"type": "structure",
|
|
12957
|
+
},
|
|
12958
|
+
"PipelineVersionSummaryList": {
|
|
12959
|
+
"member_shape": "PipelineVersionSummary",
|
|
12960
|
+
"member_type": "structure",
|
|
12961
|
+
"type": "list",
|
|
12962
|
+
},
|
|
12963
|
+
"PlacementSpecification": {
|
|
12964
|
+
"members": [
|
|
12965
|
+
{"name": "UltraServerId", "shape": "String256", "type": "string"},
|
|
12966
|
+
{"name": "InstanceCount", "shape": "TrainingInstanceCount", "type": "integer"},
|
|
12967
|
+
],
|
|
12968
|
+
"type": "structure",
|
|
12969
|
+
},
|
|
12970
|
+
"PlacementSpecifications": {
|
|
12971
|
+
"member_shape": "PlacementSpecification",
|
|
12972
|
+
"member_type": "structure",
|
|
12973
|
+
"type": "list",
|
|
12974
|
+
},
|
|
12189
12975
|
"PredefinedMetricSpecification": {
|
|
12190
12976
|
"members": [{"name": "PredefinedMetricType", "shape": "String", "type": "string"}],
|
|
12191
12977
|
"type": "structure",
|
|
12192
12978
|
},
|
|
12979
|
+
"PresignedUrlAccessConfig": {
|
|
12980
|
+
"members": [
|
|
12981
|
+
{"name": "AcceptEula", "shape": "Boolean", "type": "boolean"},
|
|
12982
|
+
{"name": "ExpectedS3Url", "shape": "S3ModelUri", "type": "string"},
|
|
12983
|
+
],
|
|
12984
|
+
"type": "structure",
|
|
12985
|
+
},
|
|
12193
12986
|
"PriorityClass": {
|
|
12194
12987
|
"members": [
|
|
12195
12988
|
{"name": "Name", "shape": "ClusterSchedulerPriorityClassName", "type": "string"},
|
|
@@ -12643,6 +13436,11 @@ SHAPE_DAG = {
|
|
|
12643
13436
|
{"name": "ProjectStatus", "shape": "ProjectStatus", "type": "string"},
|
|
12644
13437
|
{"name": "CreatedBy", "shape": "UserContext", "type": "structure"},
|
|
12645
13438
|
{"name": "CreationTime", "shape": "Timestamp", "type": "timestamp"},
|
|
13439
|
+
{
|
|
13440
|
+
"name": "TemplateProviderDetails",
|
|
13441
|
+
"shape": "TemplateProviderDetailList",
|
|
13442
|
+
"type": "list",
|
|
13443
|
+
},
|
|
12646
13444
|
{"name": "Tags", "shape": "TagList", "type": "list"},
|
|
12647
13445
|
{"name": "LastModifiedTime", "shape": "Timestamp", "type": "timestamp"},
|
|
12648
13446
|
{"name": "LastModifiedBy", "shape": "UserContext", "type": "structure"},
|
|
@@ -13111,6 +13909,9 @@ SHAPE_DAG = {
|
|
|
13111
13909
|
},
|
|
13112
13910
|
"ReservedCapacityOffering": {
|
|
13113
13911
|
"members": [
|
|
13912
|
+
{"name": "ReservedCapacityType", "shape": "ReservedCapacityType", "type": "string"},
|
|
13913
|
+
{"name": "UltraServerType", "shape": "UltraServerType", "type": "string"},
|
|
13914
|
+
{"name": "UltraServerCount", "shape": "UltraServerCount", "type": "integer"},
|
|
13114
13915
|
{"name": "InstanceType", "shape": "ReservedCapacityInstanceType", "type": "string"},
|
|
13115
13916
|
{"name": "InstanceCount", "shape": "ReservedCapacityInstanceCount", "type": "integer"},
|
|
13116
13917
|
{"name": "AvailabilityZone", "shape": "AvailabilityZone", "type": "string"},
|
|
@@ -13134,6 +13935,9 @@ SHAPE_DAG = {
|
|
|
13134
13935
|
"ReservedCapacitySummary": {
|
|
13135
13936
|
"members": [
|
|
13136
13937
|
{"name": "ReservedCapacityArn", "shape": "ReservedCapacityArn", "type": "string"},
|
|
13938
|
+
{"name": "ReservedCapacityType", "shape": "ReservedCapacityType", "type": "string"},
|
|
13939
|
+
{"name": "UltraServerType", "shape": "UltraServerType", "type": "string"},
|
|
13940
|
+
{"name": "UltraServerCount", "shape": "UltraServerCount", "type": "integer"},
|
|
13137
13941
|
{"name": "InstanceType", "shape": "ReservedCapacityInstanceType", "type": "string"},
|
|
13138
13942
|
{"name": "TotalInstanceCount", "shape": "TotalInstanceCount", "type": "integer"},
|
|
13139
13943
|
{"name": "Status", "shape": "ReservedCapacityStatus", "type": "string"},
|
|
@@ -13184,6 +13988,11 @@ SHAPE_DAG = {
|
|
|
13184
13988
|
},
|
|
13185
13989
|
{"name": "InstanceGroups", "shape": "InstanceGroups", "type": "list"},
|
|
13186
13990
|
{"name": "TrainingPlanArn", "shape": "TrainingPlanArn", "type": "string"},
|
|
13991
|
+
{
|
|
13992
|
+
"name": "InstancePlacementConfig",
|
|
13993
|
+
"shape": "InstancePlacementConfig",
|
|
13994
|
+
"type": "structure",
|
|
13995
|
+
},
|
|
13187
13996
|
],
|
|
13188
13997
|
"type": "structure",
|
|
13189
13998
|
},
|
|
@@ -13334,6 +14143,17 @@ SHAPE_DAG = {
|
|
|
13334
14143
|
],
|
|
13335
14144
|
"type": "structure",
|
|
13336
14145
|
},
|
|
14146
|
+
"S3FileSystem": {
|
|
14147
|
+
"members": [{"name": "S3Uri", "shape": "S3SchemaUri", "type": "string"}],
|
|
14148
|
+
"type": "structure",
|
|
14149
|
+
},
|
|
14150
|
+
"S3FileSystemConfig": {
|
|
14151
|
+
"members": [
|
|
14152
|
+
{"name": "MountPath", "shape": "String1024", "type": "string"},
|
|
14153
|
+
{"name": "S3Uri", "shape": "S3SchemaUri", "type": "string"},
|
|
14154
|
+
],
|
|
14155
|
+
"type": "structure",
|
|
14156
|
+
},
|
|
13337
14157
|
"S3ModelDataSource": {
|
|
13338
14158
|
"members": [
|
|
13339
14159
|
{"name": "S3Uri", "shape": "S3ModelUri", "type": "string"},
|
|
@@ -13447,6 +14267,7 @@ SHAPE_DAG = {
|
|
|
13447
14267
|
{"name": "ModelPackageGroup", "shape": "ModelPackageGroup", "type": "structure"},
|
|
13448
14268
|
{"name": "Pipeline", "shape": "Pipeline", "type": "structure"},
|
|
13449
14269
|
{"name": "PipelineExecution", "shape": "PipelineExecution", "type": "structure"},
|
|
14270
|
+
{"name": "PipelineVersion", "shape": "PipelineVersion", "type": "structure"},
|
|
13450
14271
|
{"name": "FeatureGroup", "shape": "FeatureGroup", "type": "structure"},
|
|
13451
14272
|
{"name": "FeatureMetadata", "shape": "FeatureMetadata", "type": "structure"},
|
|
13452
14273
|
{"name": "Project", "shape": "Project", "type": "structure"},
|
|
@@ -13494,6 +14315,8 @@ SHAPE_DAG = {
|
|
|
13494
14315
|
"members": [
|
|
13495
14316
|
{"name": "InstanceType", "shape": "ReservedCapacityInstanceType", "type": "string"},
|
|
13496
14317
|
{"name": "InstanceCount", "shape": "ReservedCapacityInstanceCount", "type": "integer"},
|
|
14318
|
+
{"name": "UltraServerType", "shape": "UltraServerType", "type": "string"},
|
|
14319
|
+
{"name": "UltraServerCount", "shape": "UltraServerCount", "type": "integer"},
|
|
13497
14320
|
{"name": "StartTimeAfter", "shape": "Timestamp", "type": "timestamp"},
|
|
13498
14321
|
{"name": "EndTimeBefore", "shape": "Timestamp", "type": "timestamp"},
|
|
13499
14322
|
{"name": "DurationHours", "shape": "TrainingPlanDurationHoursInput", "type": "long"},
|
|
@@ -13764,12 +14587,14 @@ SHAPE_DAG = {
|
|
|
13764
14587
|
{"name": "SpaceStorageSettings", "shape": "SpaceStorageSettings", "type": "structure"},
|
|
13765
14588
|
{"name": "SpaceManagedResources", "shape": "FeatureStatus", "type": "string"},
|
|
13766
14589
|
{"name": "CustomFileSystems", "shape": "CustomFileSystems", "type": "list"},
|
|
14590
|
+
{"name": "RemoteAccess", "shape": "FeatureStatus", "type": "string"},
|
|
13767
14591
|
],
|
|
13768
14592
|
"type": "structure",
|
|
13769
14593
|
},
|
|
13770
14594
|
"SpaceSettingsSummary": {
|
|
13771
14595
|
"members": [
|
|
13772
14596
|
{"name": "AppType", "shape": "AppType", "type": "string"},
|
|
14597
|
+
{"name": "RemoteAccess", "shape": "FeatureStatus", "type": "string"},
|
|
13773
14598
|
{"name": "SpaceStorageSettings", "shape": "SpaceStorageSettings", "type": "structure"},
|
|
13774
14599
|
],
|
|
13775
14600
|
"type": "structure",
|
|
@@ -13860,6 +14685,7 @@ SHAPE_DAG = {
|
|
|
13860
14685
|
"shape": "SelectiveExecutionConfig",
|
|
13861
14686
|
"type": "structure",
|
|
13862
14687
|
},
|
|
14688
|
+
{"name": "PipelineVersionId", "shape": "PipelineVersionId", "type": "long"},
|
|
13863
14689
|
],
|
|
13864
14690
|
"type": "structure",
|
|
13865
14691
|
},
|
|
@@ -13869,6 +14695,20 @@ SHAPE_DAG = {
|
|
|
13869
14695
|
],
|
|
13870
14696
|
"type": "structure",
|
|
13871
14697
|
},
|
|
14698
|
+
"StartSessionRequest": {
|
|
14699
|
+
"members": [
|
|
14700
|
+
{"name": "ResourceIdentifier", "shape": "ResourceIdentifier", "type": "string"}
|
|
14701
|
+
],
|
|
14702
|
+
"type": "structure",
|
|
14703
|
+
},
|
|
14704
|
+
"StartSessionResponse": {
|
|
14705
|
+
"members": [
|
|
14706
|
+
{"name": "SessionId", "shape": "SessionId", "type": "string"},
|
|
14707
|
+
{"name": "StreamUrl", "shape": "StreamUrl", "type": "string"},
|
|
14708
|
+
{"name": "TokenValue", "shape": "TokenValue", "type": "string"},
|
|
14709
|
+
],
|
|
14710
|
+
"type": "structure",
|
|
14711
|
+
},
|
|
13872
14712
|
"StopAutoMLJobRequest": {
|
|
13873
14713
|
"members": [{"name": "AutoMLJobName", "shape": "AutoMLJobName", "type": "string"}],
|
|
13874
14714
|
"type": "structure",
|
|
@@ -14110,6 +14950,21 @@ SHAPE_DAG = {
|
|
|
14110
14950
|
"type": "structure",
|
|
14111
14951
|
},
|
|
14112
14952
|
"TaskKeywords": {"member_shape": "TaskKeyword", "member_type": "string", "type": "list"},
|
|
14953
|
+
"TemplateProviderDetail": {
|
|
14954
|
+
"members": [
|
|
14955
|
+
{
|
|
14956
|
+
"name": "CfnTemplateProviderDetail",
|
|
14957
|
+
"shape": "CfnTemplateProviderDetail",
|
|
14958
|
+
"type": "structure",
|
|
14959
|
+
}
|
|
14960
|
+
],
|
|
14961
|
+
"type": "structure",
|
|
14962
|
+
},
|
|
14963
|
+
"TemplateProviderDetailList": {
|
|
14964
|
+
"member_shape": "TemplateProviderDetail",
|
|
14965
|
+
"member_type": "structure",
|
|
14966
|
+
"type": "list",
|
|
14967
|
+
},
|
|
14113
14968
|
"TensorBoardAppSettings": {
|
|
14114
14969
|
"members": [{"name": "DefaultResourceSpec", "shape": "ResourceSpec", "type": "structure"}],
|
|
14115
14970
|
"type": "structure",
|
|
@@ -14483,6 +15338,7 @@ SHAPE_DAG = {
|
|
|
14483
15338
|
"type": "integer",
|
|
14484
15339
|
},
|
|
14485
15340
|
{"name": "InUseInstanceCount", "shape": "InUseInstanceCount", "type": "integer"},
|
|
15341
|
+
{"name": "TotalUltraServerCount", "shape": "UltraServerCount", "type": "integer"},
|
|
14486
15342
|
{"name": "TargetResources", "shape": "SageMakerResourceNames", "type": "list"},
|
|
14487
15343
|
{
|
|
14488
15344
|
"name": "ReservedCapacitySummaries",
|
|
@@ -14829,6 +15685,10 @@ SHAPE_DAG = {
|
|
|
14829
15685
|
],
|
|
14830
15686
|
"type": "structure",
|
|
14831
15687
|
},
|
|
15688
|
+
"TrustedIdentityPropagationSettings": {
|
|
15689
|
+
"members": [{"name": "Status", "shape": "FeatureStatus", "type": "string"}],
|
|
15690
|
+
"type": "structure",
|
|
15691
|
+
},
|
|
14832
15692
|
"TtlDuration": {
|
|
14833
15693
|
"members": [
|
|
14834
15694
|
{"name": "Unit", "shape": "TtlDurationUnit", "type": "string"},
|
|
@@ -14882,6 +15742,61 @@ SHAPE_DAG = {
|
|
|
14882
15742
|
],
|
|
14883
15743
|
"type": "structure",
|
|
14884
15744
|
},
|
|
15745
|
+
"UltraServer": {
|
|
15746
|
+
"members": [
|
|
15747
|
+
{"name": "UltraServerId", "shape": "NonEmptyString256", "type": "string"},
|
|
15748
|
+
{"name": "UltraServerType", "shape": "UltraServerType", "type": "string"},
|
|
15749
|
+
{"name": "AvailabilityZone", "shape": "AvailabilityZone", "type": "string"},
|
|
15750
|
+
{"name": "InstanceType", "shape": "ReservedCapacityInstanceType", "type": "string"},
|
|
15751
|
+
{"name": "TotalInstanceCount", "shape": "TotalInstanceCount", "type": "integer"},
|
|
15752
|
+
{
|
|
15753
|
+
"name": "ConfiguredSpareInstanceCount",
|
|
15754
|
+
"shape": "ConfiguredSpareInstanceCount",
|
|
15755
|
+
"type": "integer",
|
|
15756
|
+
},
|
|
15757
|
+
{
|
|
15758
|
+
"name": "AvailableInstanceCount",
|
|
15759
|
+
"shape": "AvailableInstanceCount",
|
|
15760
|
+
"type": "integer",
|
|
15761
|
+
},
|
|
15762
|
+
{"name": "InUseInstanceCount", "shape": "InUseInstanceCount", "type": "integer"},
|
|
15763
|
+
{
|
|
15764
|
+
"name": "AvailableSpareInstanceCount",
|
|
15765
|
+
"shape": "AvailableSpareInstanceCount",
|
|
15766
|
+
"type": "integer",
|
|
15767
|
+
},
|
|
15768
|
+
{
|
|
15769
|
+
"name": "UnhealthyInstanceCount",
|
|
15770
|
+
"shape": "UnhealthyInstanceCount",
|
|
15771
|
+
"type": "integer",
|
|
15772
|
+
},
|
|
15773
|
+
{"name": "HealthStatus", "shape": "UltraServerHealthStatus", "type": "string"},
|
|
15774
|
+
],
|
|
15775
|
+
"type": "structure",
|
|
15776
|
+
},
|
|
15777
|
+
"UltraServerInfo": {
|
|
15778
|
+
"members": [{"name": "Id", "shape": "String", "type": "string"}],
|
|
15779
|
+
"type": "structure",
|
|
15780
|
+
},
|
|
15781
|
+
"UltraServerSummary": {
|
|
15782
|
+
"members": [
|
|
15783
|
+
{"name": "UltraServerType", "shape": "UltraServerType", "type": "string"},
|
|
15784
|
+
{"name": "InstanceType", "shape": "ReservedCapacityInstanceType", "type": "string"},
|
|
15785
|
+
{"name": "UltraServerCount", "shape": "UltraServerCount", "type": "integer"},
|
|
15786
|
+
{
|
|
15787
|
+
"name": "AvailableSpareInstanceCount",
|
|
15788
|
+
"shape": "AvailableSpareInstanceCount",
|
|
15789
|
+
"type": "integer",
|
|
15790
|
+
},
|
|
15791
|
+
{
|
|
15792
|
+
"name": "UnhealthyInstanceCount",
|
|
15793
|
+
"shape": "UnhealthyInstanceCount",
|
|
15794
|
+
"type": "integer",
|
|
15795
|
+
},
|
|
15796
|
+
],
|
|
15797
|
+
"type": "structure",
|
|
15798
|
+
},
|
|
15799
|
+
"UltraServers": {"member_shape": "UltraServer", "member_type": "structure", "type": "list"},
|
|
14885
15800
|
"UnifiedStudioSettings": {
|
|
14886
15801
|
"members": [
|
|
14887
15802
|
{"name": "StudioWebPortalAccess", "shape": "FeatureStatus", "type": "string"},
|
|
@@ -14972,12 +15887,24 @@ SHAPE_DAG = {
|
|
|
14972
15887
|
"shape": "ClusterInstanceGroupSpecifications",
|
|
14973
15888
|
"type": "list",
|
|
14974
15889
|
},
|
|
15890
|
+
{
|
|
15891
|
+
"name": "RestrictedInstanceGroups",
|
|
15892
|
+
"shape": "ClusterRestrictedInstanceGroupSpecifications",
|
|
15893
|
+
"type": "list",
|
|
15894
|
+
},
|
|
15895
|
+
{
|
|
15896
|
+
"name": "TieredStorageConfig",
|
|
15897
|
+
"shape": "ClusterTieredStorageConfig",
|
|
15898
|
+
"type": "structure",
|
|
15899
|
+
},
|
|
14975
15900
|
{"name": "NodeRecovery", "shape": "ClusterNodeRecovery", "type": "string"},
|
|
14976
15901
|
{
|
|
14977
15902
|
"name": "InstanceGroupsToDelete",
|
|
14978
15903
|
"shape": "ClusterInstanceGroupsToDelete",
|
|
14979
15904
|
"type": "list",
|
|
14980
15905
|
},
|
|
15906
|
+
{"name": "ClusterRole", "shape": "RoleArn", "type": "string"},
|
|
15907
|
+
{"name": "AutoScaling", "shape": "ClusterAutoScalingConfig", "type": "structure"},
|
|
14981
15908
|
],
|
|
14982
15909
|
"type": "structure",
|
|
14983
15910
|
},
|
|
@@ -15029,6 +15956,7 @@ SHAPE_DAG = {
|
|
|
15029
15956
|
"type": "list",
|
|
15030
15957
|
},
|
|
15031
15958
|
{"name": "DeploymentConfig", "shape": "DeploymentConfiguration", "type": "structure"},
|
|
15959
|
+
{"name": "ImageId", "shape": "ImageId", "type": "string"},
|
|
15032
15960
|
],
|
|
15033
15961
|
"type": "structure",
|
|
15034
15962
|
},
|
|
@@ -15450,6 +16378,8 @@ SHAPE_DAG = {
|
|
|
15450
16378
|
"members": [
|
|
15451
16379
|
{"name": "NotebookInstanceName", "shape": "NotebookInstanceName", "type": "string"},
|
|
15452
16380
|
{"name": "InstanceType", "shape": "InstanceType", "type": "string"},
|
|
16381
|
+
{"name": "IpAddressType", "shape": "IPAddressType", "type": "string"},
|
|
16382
|
+
{"name": "PlatformIdentifier", "shape": "PlatformIdentifier", "type": "string"},
|
|
15453
16383
|
{"name": "RoleArn", "shape": "RoleArn", "type": "string"},
|
|
15454
16384
|
{
|
|
15455
16385
|
"name": "LifecycleConfigName",
|
|
@@ -15583,7 +16513,34 @@ SHAPE_DAG = {
|
|
|
15583
16513
|
"type": "structure",
|
|
15584
16514
|
},
|
|
15585
16515
|
"UpdatePipelineResponse": {
|
|
15586
|
-
"members": [
|
|
16516
|
+
"members": [
|
|
16517
|
+
{"name": "PipelineArn", "shape": "PipelineArn", "type": "string"},
|
|
16518
|
+
{"name": "PipelineVersionId", "shape": "PipelineVersionId", "type": "long"},
|
|
16519
|
+
],
|
|
16520
|
+
"type": "structure",
|
|
16521
|
+
},
|
|
16522
|
+
"UpdatePipelineVersionRequest": {
|
|
16523
|
+
"members": [
|
|
16524
|
+
{"name": "PipelineArn", "shape": "PipelineArn", "type": "string"},
|
|
16525
|
+
{"name": "PipelineVersionId", "shape": "PipelineVersionId", "type": "long"},
|
|
16526
|
+
{
|
|
16527
|
+
"name": "PipelineVersionDisplayName",
|
|
16528
|
+
"shape": "PipelineVersionName",
|
|
16529
|
+
"type": "string",
|
|
16530
|
+
},
|
|
16531
|
+
{
|
|
16532
|
+
"name": "PipelineVersionDescription",
|
|
16533
|
+
"shape": "PipelineVersionDescription",
|
|
16534
|
+
"type": "string",
|
|
16535
|
+
},
|
|
16536
|
+
],
|
|
16537
|
+
"type": "structure",
|
|
16538
|
+
},
|
|
16539
|
+
"UpdatePipelineVersionResponse": {
|
|
16540
|
+
"members": [
|
|
16541
|
+
{"name": "PipelineArn", "shape": "PipelineArn", "type": "string"},
|
|
16542
|
+
{"name": "PipelineVersionId", "shape": "PipelineVersionId", "type": "long"},
|
|
16543
|
+
],
|
|
15587
16544
|
"type": "structure",
|
|
15588
16545
|
},
|
|
15589
16546
|
"UpdateProjectInput": {
|
|
@@ -15596,6 +16553,11 @@ SHAPE_DAG = {
|
|
|
15596
16553
|
"type": "structure",
|
|
15597
16554
|
},
|
|
15598
16555
|
{"name": "Tags", "shape": "TagList", "type": "list"},
|
|
16556
|
+
{
|
|
16557
|
+
"name": "TemplateProvidersToUpdate",
|
|
16558
|
+
"shape": "UpdateTemplateProviderList",
|
|
16559
|
+
"type": "list",
|
|
16560
|
+
},
|
|
15599
16561
|
],
|
|
15600
16562
|
"type": "structure",
|
|
15601
16563
|
},
|
|
@@ -15616,6 +16578,21 @@ SHAPE_DAG = {
|
|
|
15616
16578
|
"members": [{"name": "SpaceArn", "shape": "SpaceArn", "type": "string"}],
|
|
15617
16579
|
"type": "structure",
|
|
15618
16580
|
},
|
|
16581
|
+
"UpdateTemplateProvider": {
|
|
16582
|
+
"members": [
|
|
16583
|
+
{
|
|
16584
|
+
"name": "CfnTemplateProvider",
|
|
16585
|
+
"shape": "CfnUpdateTemplateProvider",
|
|
16586
|
+
"type": "structure",
|
|
16587
|
+
}
|
|
16588
|
+
],
|
|
16589
|
+
"type": "structure",
|
|
16590
|
+
},
|
|
16591
|
+
"UpdateTemplateProviderList": {
|
|
16592
|
+
"member_shape": "UpdateTemplateProvider",
|
|
16593
|
+
"member_type": "structure",
|
|
16594
|
+
"type": "list",
|
|
16595
|
+
},
|
|
15619
16596
|
"UpdateTrainingJobRequest": {
|
|
15620
16597
|
"members": [
|
|
15621
16598
|
{"name": "TrainingJobName", "shape": "TrainingJobName", "type": "string"},
|
|
@@ -15695,6 +16672,7 @@ SHAPE_DAG = {
|
|
|
15695
16672
|
"shape": "WorkforceVpcConfigRequest",
|
|
15696
16673
|
"type": "structure",
|
|
15697
16674
|
},
|
|
16675
|
+
{"name": "IpAddressType", "shape": "WorkforceIpAddressType", "type": "string"},
|
|
15698
16676
|
],
|
|
15699
16677
|
"type": "structure",
|
|
15700
16678
|
},
|
|
@@ -15903,6 +16881,7 @@ SHAPE_DAG = {
|
|
|
15903
16881
|
},
|
|
15904
16882
|
{"name": "Status", "shape": "WorkforceStatus", "type": "string"},
|
|
15905
16883
|
{"name": "FailureReason", "shape": "WorkforceFailureReason", "type": "string"},
|
|
16884
|
+
{"name": "IpAddressType", "shape": "WorkforceIpAddressType", "type": "string"},
|
|
15906
16885
|
],
|
|
15907
16886
|
"type": "structure",
|
|
15908
16887
|
},
|