aws-sdk-sagemaker 1.97.0 → 1.101.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +306 -46
- data/lib/aws-sdk-sagemaker/client_api.rb +145 -0
- data/lib/aws-sdk-sagemaker/types.rb +502 -61
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +5 -5
|
@@ -291,6 +291,8 @@ module Aws::SageMaker
|
|
|
291
291
|
CreateProcessingJobResponse = Shapes::StructureShape.new(name: 'CreateProcessingJobResponse')
|
|
292
292
|
CreateProjectInput = Shapes::StructureShape.new(name: 'CreateProjectInput')
|
|
293
293
|
CreateProjectOutput = Shapes::StructureShape.new(name: 'CreateProjectOutput')
|
|
294
|
+
CreateStudioLifecycleConfigRequest = Shapes::StructureShape.new(name: 'CreateStudioLifecycleConfigRequest')
|
|
295
|
+
CreateStudioLifecycleConfigResponse = Shapes::StructureShape.new(name: 'CreateStudioLifecycleConfigResponse')
|
|
294
296
|
CreateTrainingJobRequest = Shapes::StructureShape.new(name: 'CreateTrainingJobRequest')
|
|
295
297
|
CreateTrainingJobResponse = Shapes::StructureShape.new(name: 'CreateTrainingJobResponse')
|
|
296
298
|
CreateTransformJobRequest = Shapes::StructureShape.new(name: 'CreateTransformJobRequest')
|
|
@@ -371,6 +373,7 @@ module Aws::SageMaker
|
|
|
371
373
|
DeletePipelineRequest = Shapes::StructureShape.new(name: 'DeletePipelineRequest')
|
|
372
374
|
DeletePipelineResponse = Shapes::StructureShape.new(name: 'DeletePipelineResponse')
|
|
373
375
|
DeleteProjectInput = Shapes::StructureShape.new(name: 'DeleteProjectInput')
|
|
376
|
+
DeleteStudioLifecycleConfigRequest = Shapes::StructureShape.new(name: 'DeleteStudioLifecycleConfigRequest')
|
|
374
377
|
DeleteTagsInput = Shapes::StructureShape.new(name: 'DeleteTagsInput')
|
|
375
378
|
DeleteTagsOutput = Shapes::StructureShape.new(name: 'DeleteTagsOutput')
|
|
376
379
|
DeleteTrialComponentRequest = Shapes::StructureShape.new(name: 'DeleteTrialComponentRequest')
|
|
@@ -462,6 +465,8 @@ module Aws::SageMaker
|
|
|
462
465
|
DescribeProcessingJobResponse = Shapes::StructureShape.new(name: 'DescribeProcessingJobResponse')
|
|
463
466
|
DescribeProjectInput = Shapes::StructureShape.new(name: 'DescribeProjectInput')
|
|
464
467
|
DescribeProjectOutput = Shapes::StructureShape.new(name: 'DescribeProjectOutput')
|
|
468
|
+
DescribeStudioLifecycleConfigRequest = Shapes::StructureShape.new(name: 'DescribeStudioLifecycleConfigRequest')
|
|
469
|
+
DescribeStudioLifecycleConfigResponse = Shapes::StructureShape.new(name: 'DescribeStudioLifecycleConfigResponse')
|
|
465
470
|
DescribeSubscribedWorkteamRequest = Shapes::StructureShape.new(name: 'DescribeSubscribedWorkteamRequest')
|
|
466
471
|
DescribeSubscribedWorkteamResponse = Shapes::StructureShape.new(name: 'DescribeSubscribedWorkteamResponse')
|
|
467
472
|
DescribeTrainingJobRequest = Shapes::StructureShape.new(name: 'DescribeTrainingJobRequest')
|
|
@@ -745,6 +750,7 @@ module Aws::SageMaker
|
|
|
745
750
|
LambdaFunctionArn = Shapes::StringShape.new(name: 'LambdaFunctionArn')
|
|
746
751
|
LambdaStepMetadata = Shapes::StructureShape.new(name: 'LambdaStepMetadata')
|
|
747
752
|
LastModifiedTime = Shapes::TimestampShape.new(name: 'LastModifiedTime')
|
|
753
|
+
LifecycleConfigArns = Shapes::ListShape.new(name: 'LifecycleConfigArns')
|
|
748
754
|
LineageEntityParameters = Shapes::MapShape.new(name: 'LineageEntityParameters')
|
|
749
755
|
ListActionsRequest = Shapes::StructureShape.new(name: 'ListActionsRequest')
|
|
750
756
|
ListActionsResponse = Shapes::StructureShape.new(name: 'ListActionsResponse')
|
|
@@ -838,6 +844,8 @@ module Aws::SageMaker
|
|
|
838
844
|
ListProcessingJobsResponse = Shapes::StructureShape.new(name: 'ListProcessingJobsResponse')
|
|
839
845
|
ListProjectsInput = Shapes::StructureShape.new(name: 'ListProjectsInput')
|
|
840
846
|
ListProjectsOutput = Shapes::StructureShape.new(name: 'ListProjectsOutput')
|
|
847
|
+
ListStudioLifecycleConfigsRequest = Shapes::StructureShape.new(name: 'ListStudioLifecycleConfigsRequest')
|
|
848
|
+
ListStudioLifecycleConfigsResponse = Shapes::StructureShape.new(name: 'ListStudioLifecycleConfigsResponse')
|
|
841
849
|
ListSubscribedWorkteamsRequest = Shapes::StructureShape.new(name: 'ListSubscribedWorkteamsRequest')
|
|
842
850
|
ListSubscribedWorkteamsResponse = Shapes::StructureShape.new(name: 'ListSubscribedWorkteamsResponse')
|
|
843
851
|
ListTagsInput = Shapes::StructureShape.new(name: 'ListTagsInput')
|
|
@@ -1130,6 +1138,7 @@ module Aws::SageMaker
|
|
|
1130
1138
|
ProfilingIntervalInMilliseconds = Shapes::IntegerShape.new(name: 'ProfilingIntervalInMilliseconds')
|
|
1131
1139
|
ProfilingParameters = Shapes::MapShape.new(name: 'ProfilingParameters')
|
|
1132
1140
|
ProfilingStatus = Shapes::StringShape.new(name: 'ProfilingStatus')
|
|
1141
|
+
Project = Shapes::StructureShape.new(name: 'Project')
|
|
1133
1142
|
ProjectArn = Shapes::StringShape.new(name: 'ProjectArn')
|
|
1134
1143
|
ProjectEntityName = Shapes::StringShape.new(name: 'ProjectEntityName')
|
|
1135
1144
|
ProjectId = Shapes::StringShape.new(name: 'ProjectId')
|
|
@@ -1184,6 +1193,8 @@ module Aws::SageMaker
|
|
|
1184
1193
|
ResponseMIMETypes = Shapes::ListShape.new(name: 'ResponseMIMETypes')
|
|
1185
1194
|
RetentionPolicy = Shapes::StructureShape.new(name: 'RetentionPolicy')
|
|
1186
1195
|
RetentionType = Shapes::StringShape.new(name: 'RetentionType')
|
|
1196
|
+
RetryPipelineExecutionRequest = Shapes::StructureShape.new(name: 'RetryPipelineExecutionRequest')
|
|
1197
|
+
RetryPipelineExecutionResponse = Shapes::StructureShape.new(name: 'RetryPipelineExecutionResponse')
|
|
1187
1198
|
RetryStrategy = Shapes::StructureShape.new(name: 'RetryStrategy')
|
|
1188
1199
|
RoleArn = Shapes::StringShape.new(name: 'RoleArn')
|
|
1189
1200
|
RootAccess = Shapes::StringShape.new(name: 'RootAccess')
|
|
@@ -1272,6 +1283,13 @@ module Aws::SageMaker
|
|
|
1272
1283
|
String256 = Shapes::StringShape.new(name: 'String256')
|
|
1273
1284
|
String64 = Shapes::StringShape.new(name: 'String64')
|
|
1274
1285
|
StringParameterValue = Shapes::StringShape.new(name: 'StringParameterValue')
|
|
1286
|
+
StudioLifecycleConfigAppType = Shapes::StringShape.new(name: 'StudioLifecycleConfigAppType')
|
|
1287
|
+
StudioLifecycleConfigArn = Shapes::StringShape.new(name: 'StudioLifecycleConfigArn')
|
|
1288
|
+
StudioLifecycleConfigContent = Shapes::StringShape.new(name: 'StudioLifecycleConfigContent')
|
|
1289
|
+
StudioLifecycleConfigDetails = Shapes::StructureShape.new(name: 'StudioLifecycleConfigDetails')
|
|
1290
|
+
StudioLifecycleConfigName = Shapes::StringShape.new(name: 'StudioLifecycleConfigName')
|
|
1291
|
+
StudioLifecycleConfigSortKey = Shapes::StringShape.new(name: 'StudioLifecycleConfigSortKey')
|
|
1292
|
+
StudioLifecycleConfigsList = Shapes::ListShape.new(name: 'StudioLifecycleConfigsList')
|
|
1275
1293
|
SubnetId = Shapes::StringShape.new(name: 'SubnetId')
|
|
1276
1294
|
Subnets = Shapes::ListShape.new(name: 'Subnets')
|
|
1277
1295
|
SubscribedWorkteam = Shapes::StructureShape.new(name: 'SubscribedWorkteam')
|
|
@@ -2321,6 +2339,15 @@ module Aws::SageMaker
|
|
|
2321
2339
|
CreateProjectOutput.add_member(:project_id, Shapes::ShapeRef.new(shape: ProjectId, required: true, location_name: "ProjectId"))
|
|
2322
2340
|
CreateProjectOutput.struct_class = Types::CreateProjectOutput
|
|
2323
2341
|
|
|
2342
|
+
CreateStudioLifecycleConfigRequest.add_member(:studio_lifecycle_config_name, Shapes::ShapeRef.new(shape: StudioLifecycleConfigName, required: true, location_name: "StudioLifecycleConfigName"))
|
|
2343
|
+
CreateStudioLifecycleConfigRequest.add_member(:studio_lifecycle_config_content, Shapes::ShapeRef.new(shape: StudioLifecycleConfigContent, required: true, location_name: "StudioLifecycleConfigContent"))
|
|
2344
|
+
CreateStudioLifecycleConfigRequest.add_member(:studio_lifecycle_config_app_type, Shapes::ShapeRef.new(shape: StudioLifecycleConfigAppType, required: true, location_name: "StudioLifecycleConfigAppType"))
|
|
2345
|
+
CreateStudioLifecycleConfigRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
|
2346
|
+
CreateStudioLifecycleConfigRequest.struct_class = Types::CreateStudioLifecycleConfigRequest
|
|
2347
|
+
|
|
2348
|
+
CreateStudioLifecycleConfigResponse.add_member(:studio_lifecycle_config_arn, Shapes::ShapeRef.new(shape: StudioLifecycleConfigArn, location_name: "StudioLifecycleConfigArn"))
|
|
2349
|
+
CreateStudioLifecycleConfigResponse.struct_class = Types::CreateStudioLifecycleConfigResponse
|
|
2350
|
+
|
|
2324
2351
|
CreateTrainingJobRequest.add_member(:training_job_name, Shapes::ShapeRef.new(shape: TrainingJobName, required: true, location_name: "TrainingJobName"))
|
|
2325
2352
|
CreateTrainingJobRequest.add_member(:hyper_parameters, Shapes::ShapeRef.new(shape: HyperParameters, location_name: "HyperParameters"))
|
|
2326
2353
|
CreateTrainingJobRequest.add_member(:algorithm_specification, Shapes::ShapeRef.new(shape: AlgorithmSpecification, required: true, location_name: "AlgorithmSpecification"))
|
|
@@ -2638,6 +2665,9 @@ module Aws::SageMaker
|
|
|
2638
2665
|
DeleteProjectInput.add_member(:project_name, Shapes::ShapeRef.new(shape: ProjectEntityName, required: true, location_name: "ProjectName"))
|
|
2639
2666
|
DeleteProjectInput.struct_class = Types::DeleteProjectInput
|
|
2640
2667
|
|
|
2668
|
+
DeleteStudioLifecycleConfigRequest.add_member(:studio_lifecycle_config_name, Shapes::ShapeRef.new(shape: StudioLifecycleConfigName, required: true, location_name: "StudioLifecycleConfigName"))
|
|
2669
|
+
DeleteStudioLifecycleConfigRequest.struct_class = Types::DeleteStudioLifecycleConfigRequest
|
|
2670
|
+
|
|
2641
2671
|
DeleteTagsInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "ResourceArn"))
|
|
2642
2672
|
DeleteTagsInput.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location_name: "TagKeys"))
|
|
2643
2673
|
DeleteTagsInput.struct_class = Types::DeleteTagsInput
|
|
@@ -3311,6 +3341,17 @@ module Aws::SageMaker
|
|
|
3311
3341
|
DescribeProjectOutput.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
|
|
3312
3342
|
DescribeProjectOutput.struct_class = Types::DescribeProjectOutput
|
|
3313
3343
|
|
|
3344
|
+
DescribeStudioLifecycleConfigRequest.add_member(:studio_lifecycle_config_name, Shapes::ShapeRef.new(shape: StudioLifecycleConfigName, required: true, location_name: "StudioLifecycleConfigName"))
|
|
3345
|
+
DescribeStudioLifecycleConfigRequest.struct_class = Types::DescribeStudioLifecycleConfigRequest
|
|
3346
|
+
|
|
3347
|
+
DescribeStudioLifecycleConfigResponse.add_member(:studio_lifecycle_config_arn, Shapes::ShapeRef.new(shape: StudioLifecycleConfigArn, location_name: "StudioLifecycleConfigArn"))
|
|
3348
|
+
DescribeStudioLifecycleConfigResponse.add_member(:studio_lifecycle_config_name, Shapes::ShapeRef.new(shape: StudioLifecycleConfigName, location_name: "StudioLifecycleConfigName"))
|
|
3349
|
+
DescribeStudioLifecycleConfigResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
|
3350
|
+
DescribeStudioLifecycleConfigResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
|
3351
|
+
DescribeStudioLifecycleConfigResponse.add_member(:studio_lifecycle_config_content, Shapes::ShapeRef.new(shape: StudioLifecycleConfigContent, location_name: "StudioLifecycleConfigContent"))
|
|
3352
|
+
DescribeStudioLifecycleConfigResponse.add_member(:studio_lifecycle_config_app_type, Shapes::ShapeRef.new(shape: StudioLifecycleConfigAppType, location_name: "StudioLifecycleConfigAppType"))
|
|
3353
|
+
DescribeStudioLifecycleConfigResponse.struct_class = Types::DescribeStudioLifecycleConfigResponse
|
|
3354
|
+
|
|
3314
3355
|
DescribeSubscribedWorkteamRequest.add_member(:workteam_arn, Shapes::ShapeRef.new(shape: WorkteamArn, required: true, location_name: "WorkteamArn"))
|
|
3315
3356
|
DescribeSubscribedWorkteamRequest.struct_class = Types::DescribeSubscribedWorkteamRequest
|
|
3316
3357
|
|
|
@@ -3958,10 +3999,12 @@ module Aws::SageMaker
|
|
|
3958
3999
|
JsonContentTypes.member = Shapes::ShapeRef.new(shape: JsonContentType)
|
|
3959
4000
|
|
|
3960
4001
|
JupyterServerAppSettings.add_member(:default_resource_spec, Shapes::ShapeRef.new(shape: ResourceSpec, location_name: "DefaultResourceSpec"))
|
|
4002
|
+
JupyterServerAppSettings.add_member(:lifecycle_config_arns, Shapes::ShapeRef.new(shape: LifecycleConfigArns, location_name: "LifecycleConfigArns"))
|
|
3961
4003
|
JupyterServerAppSettings.struct_class = Types::JupyterServerAppSettings
|
|
3962
4004
|
|
|
3963
4005
|
KernelGatewayAppSettings.add_member(:default_resource_spec, Shapes::ShapeRef.new(shape: ResourceSpec, location_name: "DefaultResourceSpec"))
|
|
3964
4006
|
KernelGatewayAppSettings.add_member(:custom_images, Shapes::ShapeRef.new(shape: CustomImages, location_name: "CustomImages"))
|
|
4007
|
+
KernelGatewayAppSettings.add_member(:lifecycle_config_arns, Shapes::ShapeRef.new(shape: LifecycleConfigArns, location_name: "LifecycleConfigArns"))
|
|
3965
4008
|
KernelGatewayAppSettings.struct_class = Types::KernelGatewayAppSettings
|
|
3966
4009
|
|
|
3967
4010
|
KernelGatewayImageConfig.add_member(:kernel_specs, Shapes::ShapeRef.new(shape: KernelSpecs, required: true, location_name: "KernelSpecs"))
|
|
@@ -4054,6 +4097,8 @@ module Aws::SageMaker
|
|
|
4054
4097
|
LambdaStepMetadata.add_member(:output_parameters, Shapes::ShapeRef.new(shape: OutputParameterList, location_name: "OutputParameters"))
|
|
4055
4098
|
LambdaStepMetadata.struct_class = Types::LambdaStepMetadata
|
|
4056
4099
|
|
|
4100
|
+
LifecycleConfigArns.member = Shapes::ShapeRef.new(shape: StudioLifecycleConfigArn)
|
|
4101
|
+
|
|
4057
4102
|
LineageEntityParameters.key = Shapes::ShapeRef.new(shape: StringParameterValue)
|
|
4058
4103
|
LineageEntityParameters.value = Shapes::ShapeRef.new(shape: StringParameterValue)
|
|
4059
4104
|
|
|
@@ -4669,6 +4714,22 @@ module Aws::SageMaker
|
|
|
4669
4714
|
ListProjectsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
4670
4715
|
ListProjectsOutput.struct_class = Types::ListProjectsOutput
|
|
4671
4716
|
|
|
4717
|
+
ListStudioLifecycleConfigsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
|
4718
|
+
ListStudioLifecycleConfigsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
4719
|
+
ListStudioLifecycleConfigsRequest.add_member(:name_contains, Shapes::ShapeRef.new(shape: StudioLifecycleConfigName, location_name: "NameContains"))
|
|
4720
|
+
ListStudioLifecycleConfigsRequest.add_member(:app_type_equals, Shapes::ShapeRef.new(shape: StudioLifecycleConfigAppType, location_name: "AppTypeEquals"))
|
|
4721
|
+
ListStudioLifecycleConfigsRequest.add_member(:creation_time_before, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTimeBefore"))
|
|
4722
|
+
ListStudioLifecycleConfigsRequest.add_member(:creation_time_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTimeAfter"))
|
|
4723
|
+
ListStudioLifecycleConfigsRequest.add_member(:modified_time_before, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ModifiedTimeBefore"))
|
|
4724
|
+
ListStudioLifecycleConfigsRequest.add_member(:modified_time_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ModifiedTimeAfter"))
|
|
4725
|
+
ListStudioLifecycleConfigsRequest.add_member(:sort_by, Shapes::ShapeRef.new(shape: StudioLifecycleConfigSortKey, location_name: "SortBy"))
|
|
4726
|
+
ListStudioLifecycleConfigsRequest.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location_name: "SortOrder"))
|
|
4727
|
+
ListStudioLifecycleConfigsRequest.struct_class = Types::ListStudioLifecycleConfigsRequest
|
|
4728
|
+
|
|
4729
|
+
ListStudioLifecycleConfigsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
4730
|
+
ListStudioLifecycleConfigsResponse.add_member(:studio_lifecycle_configs, Shapes::ShapeRef.new(shape: StudioLifecycleConfigsList, location_name: "StudioLifecycleConfigs"))
|
|
4731
|
+
ListStudioLifecycleConfigsResponse.struct_class = Types::ListStudioLifecycleConfigsResponse
|
|
4732
|
+
|
|
4672
4733
|
ListSubscribedWorkteamsRequest.add_member(:name_contains, Shapes::ShapeRef.new(shape: WorkteamName, location_name: "NameContains"))
|
|
4673
4734
|
ListSubscribedWorkteamsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
4674
4735
|
ListSubscribedWorkteamsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
|
@@ -5494,6 +5555,18 @@ module Aws::SageMaker
|
|
|
5494
5555
|
ProfilingParameters.key = Shapes::ShapeRef.new(shape: ConfigKey)
|
|
5495
5556
|
ProfilingParameters.value = Shapes::ShapeRef.new(shape: ConfigValue)
|
|
5496
5557
|
|
|
5558
|
+
Project.add_member(:project_arn, Shapes::ShapeRef.new(shape: ProjectArn, location_name: "ProjectArn"))
|
|
5559
|
+
Project.add_member(:project_name, Shapes::ShapeRef.new(shape: ProjectEntityName, location_name: "ProjectName"))
|
|
5560
|
+
Project.add_member(:project_id, Shapes::ShapeRef.new(shape: ProjectId, location_name: "ProjectId"))
|
|
5561
|
+
Project.add_member(:project_description, Shapes::ShapeRef.new(shape: EntityDescription, location_name: "ProjectDescription"))
|
|
5562
|
+
Project.add_member(:service_catalog_provisioning_details, Shapes::ShapeRef.new(shape: ServiceCatalogProvisioningDetails, location_name: "ServiceCatalogProvisioningDetails"))
|
|
5563
|
+
Project.add_member(:service_catalog_provisioned_product_details, Shapes::ShapeRef.new(shape: ServiceCatalogProvisionedProductDetails, location_name: "ServiceCatalogProvisionedProductDetails"))
|
|
5564
|
+
Project.add_member(:project_status, Shapes::ShapeRef.new(shape: ProjectStatus, location_name: "ProjectStatus"))
|
|
5565
|
+
Project.add_member(:created_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "CreatedBy"))
|
|
5566
|
+
Project.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
|
5567
|
+
Project.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
|
5568
|
+
Project.struct_class = Types::Project
|
|
5569
|
+
|
|
5497
5570
|
ProjectSummary.add_member(:project_name, Shapes::ShapeRef.new(shape: ProjectEntityName, required: true, location_name: "ProjectName"))
|
|
5498
5571
|
ProjectSummary.add_member(:project_description, Shapes::ShapeRef.new(shape: EntityDescription, location_name: "ProjectDescription"))
|
|
5499
5572
|
ProjectSummary.add_member(:project_arn, Shapes::ShapeRef.new(shape: ProjectArn, required: true, location_name: "ProjectArn"))
|
|
@@ -5598,6 +5671,7 @@ module Aws::SageMaker
|
|
|
5598
5671
|
ResourceSpec.add_member(:sage_maker_image_arn, Shapes::ShapeRef.new(shape: ImageArn, location_name: "SageMakerImageArn"))
|
|
5599
5672
|
ResourceSpec.add_member(:sage_maker_image_version_arn, Shapes::ShapeRef.new(shape: ImageVersionArn, location_name: "SageMakerImageVersionArn"))
|
|
5600
5673
|
ResourceSpec.add_member(:instance_type, Shapes::ShapeRef.new(shape: AppInstanceType, location_name: "InstanceType"))
|
|
5674
|
+
ResourceSpec.add_member(:lifecycle_config_arn, Shapes::ShapeRef.new(shape: StudioLifecycleConfigArn, location_name: "LifecycleConfigArn"))
|
|
5601
5675
|
ResourceSpec.struct_class = Types::ResourceSpec
|
|
5602
5676
|
|
|
5603
5677
|
ResponseMIMETypes.member = Shapes::ShapeRef.new(shape: ResponseMIMEType)
|
|
@@ -5605,6 +5679,13 @@ module Aws::SageMaker
|
|
|
5605
5679
|
RetentionPolicy.add_member(:home_efs_file_system, Shapes::ShapeRef.new(shape: RetentionType, location_name: "HomeEfsFileSystem"))
|
|
5606
5680
|
RetentionPolicy.struct_class = Types::RetentionPolicy
|
|
5607
5681
|
|
|
5682
|
+
RetryPipelineExecutionRequest.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, required: true, location_name: "PipelineExecutionArn"))
|
|
5683
|
+
RetryPipelineExecutionRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: IdempotencyToken, required: true, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
|
5684
|
+
RetryPipelineExecutionRequest.struct_class = Types::RetryPipelineExecutionRequest
|
|
5685
|
+
|
|
5686
|
+
RetryPipelineExecutionResponse.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, location_name: "PipelineExecutionArn"))
|
|
5687
|
+
RetryPipelineExecutionResponse.struct_class = Types::RetryPipelineExecutionResponse
|
|
5688
|
+
|
|
5608
5689
|
RetryStrategy.add_member(:maximum_retry_attempts, Shapes::ShapeRef.new(shape: MaximumRetryAttempts, required: true, location_name: "MaximumRetryAttempts"))
|
|
5609
5690
|
RetryStrategy.struct_class = Types::RetryStrategy
|
|
5610
5691
|
|
|
@@ -5643,6 +5724,7 @@ module Aws::SageMaker
|
|
|
5643
5724
|
SearchRecord.add_member(:pipeline, Shapes::ShapeRef.new(shape: Pipeline, location_name: "Pipeline"))
|
|
5644
5725
|
SearchRecord.add_member(:pipeline_execution, Shapes::ShapeRef.new(shape: PipelineExecution, location_name: "PipelineExecution"))
|
|
5645
5726
|
SearchRecord.add_member(:feature_group, Shapes::ShapeRef.new(shape: FeatureGroup, location_name: "FeatureGroup"))
|
|
5727
|
+
SearchRecord.add_member(:project, Shapes::ShapeRef.new(shape: Project, location_name: "Project"))
|
|
5646
5728
|
SearchRecord.struct_class = Types::SearchRecord
|
|
5647
5729
|
|
|
5648
5730
|
SearchRequest.add_member(:resource, Shapes::ShapeRef.new(shape: ResourceType, required: true, location_name: "Resource"))
|
|
@@ -5772,6 +5854,15 @@ module Aws::SageMaker
|
|
|
5772
5854
|
StoppingCondition.add_member(:max_wait_time_in_seconds, Shapes::ShapeRef.new(shape: MaxWaitTimeInSeconds, location_name: "MaxWaitTimeInSeconds"))
|
|
5773
5855
|
StoppingCondition.struct_class = Types::StoppingCondition
|
|
5774
5856
|
|
|
5857
|
+
StudioLifecycleConfigDetails.add_member(:studio_lifecycle_config_arn, Shapes::ShapeRef.new(shape: StudioLifecycleConfigArn, location_name: "StudioLifecycleConfigArn"))
|
|
5858
|
+
StudioLifecycleConfigDetails.add_member(:studio_lifecycle_config_name, Shapes::ShapeRef.new(shape: StudioLifecycleConfigName, location_name: "StudioLifecycleConfigName"))
|
|
5859
|
+
StudioLifecycleConfigDetails.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
|
5860
|
+
StudioLifecycleConfigDetails.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
|
5861
|
+
StudioLifecycleConfigDetails.add_member(:studio_lifecycle_config_app_type, Shapes::ShapeRef.new(shape: StudioLifecycleConfigAppType, location_name: "StudioLifecycleConfigAppType"))
|
|
5862
|
+
StudioLifecycleConfigDetails.struct_class = Types::StudioLifecycleConfigDetails
|
|
5863
|
+
|
|
5864
|
+
StudioLifecycleConfigsList.member = Shapes::ShapeRef.new(shape: StudioLifecycleConfigDetails)
|
|
5865
|
+
|
|
5775
5866
|
Subnets.member = Shapes::ShapeRef.new(shape: SubnetId)
|
|
5776
5867
|
|
|
5777
5868
|
SubscribedWorkteam.add_member(:workteam_arn, Shapes::ShapeRef.new(shape: WorkteamArn, required: true, location_name: "WorkteamArn"))
|
|
@@ -6773,6 +6864,15 @@ module Aws::SageMaker
|
|
|
6773
6864
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
|
6774
6865
|
end)
|
|
6775
6866
|
|
|
6867
|
+
api.add_operation(:create_studio_lifecycle_config, Seahorse::Model::Operation.new.tap do |o|
|
|
6868
|
+
o.name = "CreateStudioLifecycleConfig"
|
|
6869
|
+
o.http_method = "POST"
|
|
6870
|
+
o.http_request_uri = "/"
|
|
6871
|
+
o.input = Shapes::ShapeRef.new(shape: CreateStudioLifecycleConfigRequest)
|
|
6872
|
+
o.output = Shapes::ShapeRef.new(shape: CreateStudioLifecycleConfigResponse)
|
|
6873
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
|
6874
|
+
end)
|
|
6875
|
+
|
|
6776
6876
|
api.add_operation(:create_training_job, Seahorse::Model::Operation.new.tap do |o|
|
|
6777
6877
|
o.name = "CreateTrainingJob"
|
|
6778
6878
|
o.http_method = "POST"
|
|
@@ -7118,6 +7218,16 @@ module Aws::SageMaker
|
|
|
7118
7218
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
7119
7219
|
end)
|
|
7120
7220
|
|
|
7221
|
+
api.add_operation(:delete_studio_lifecycle_config, Seahorse::Model::Operation.new.tap do |o|
|
|
7222
|
+
o.name = "DeleteStudioLifecycleConfig"
|
|
7223
|
+
o.http_method = "POST"
|
|
7224
|
+
o.http_request_uri = "/"
|
|
7225
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteStudioLifecycleConfigRequest)
|
|
7226
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
|
7227
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
|
7228
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
|
7229
|
+
end)
|
|
7230
|
+
|
|
7121
7231
|
api.add_operation(:delete_tags, Seahorse::Model::Operation.new.tap do |o|
|
|
7122
7232
|
o.name = "DeleteTags"
|
|
7123
7233
|
o.http_method = "POST"
|
|
@@ -7511,6 +7621,15 @@ module Aws::SageMaker
|
|
|
7511
7621
|
o.output = Shapes::ShapeRef.new(shape: DescribeProjectOutput)
|
|
7512
7622
|
end)
|
|
7513
7623
|
|
|
7624
|
+
api.add_operation(:describe_studio_lifecycle_config, Seahorse::Model::Operation.new.tap do |o|
|
|
7625
|
+
o.name = "DescribeStudioLifecycleConfig"
|
|
7626
|
+
o.http_method = "POST"
|
|
7627
|
+
o.http_request_uri = "/"
|
|
7628
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeStudioLifecycleConfigRequest)
|
|
7629
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeStudioLifecycleConfigResponse)
|
|
7630
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
|
7631
|
+
end)
|
|
7632
|
+
|
|
7514
7633
|
api.add_operation(:describe_subscribed_workteam, Seahorse::Model::Operation.new.tap do |o|
|
|
7515
7634
|
o.name = "DescribeSubscribedWorkteam"
|
|
7516
7635
|
o.http_method = "POST"
|
|
@@ -8249,6 +8368,21 @@ module Aws::SageMaker
|
|
|
8249
8368
|
)
|
|
8250
8369
|
end)
|
|
8251
8370
|
|
|
8371
|
+
api.add_operation(:list_studio_lifecycle_configs, Seahorse::Model::Operation.new.tap do |o|
|
|
8372
|
+
o.name = "ListStudioLifecycleConfigs"
|
|
8373
|
+
o.http_method = "POST"
|
|
8374
|
+
o.http_request_uri = "/"
|
|
8375
|
+
o.input = Shapes::ShapeRef.new(shape: ListStudioLifecycleConfigsRequest)
|
|
8376
|
+
o.output = Shapes::ShapeRef.new(shape: ListStudioLifecycleConfigsResponse)
|
|
8377
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
|
|
8378
|
+
o[:pager] = Aws::Pager.new(
|
|
8379
|
+
limit_key: "max_results",
|
|
8380
|
+
tokens: {
|
|
8381
|
+
"next_token" => "next_token"
|
|
8382
|
+
}
|
|
8383
|
+
)
|
|
8384
|
+
end)
|
|
8385
|
+
|
|
8252
8386
|
api.add_operation(:list_subscribed_workteams, Seahorse::Model::Operation.new.tap do |o|
|
|
8253
8387
|
o.name = "ListSubscribedWorkteams"
|
|
8254
8388
|
o.http_method = "POST"
|
|
@@ -8418,6 +8552,17 @@ module Aws::SageMaker
|
|
|
8418
8552
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
|
8419
8553
|
end)
|
|
8420
8554
|
|
|
8555
|
+
api.add_operation(:retry_pipeline_execution, Seahorse::Model::Operation.new.tap do |o|
|
|
8556
|
+
o.name = "RetryPipelineExecution"
|
|
8557
|
+
o.http_method = "POST"
|
|
8558
|
+
o.http_request_uri = "/"
|
|
8559
|
+
o.input = Shapes::ShapeRef.new(shape: RetryPipelineExecutionRequest)
|
|
8560
|
+
o.output = Shapes::ShapeRef.new(shape: RetryPipelineExecutionResponse)
|
|
8561
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
|
8562
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
|
8563
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
8564
|
+
end)
|
|
8565
|
+
|
|
8421
8566
|
api.add_operation(:search, Seahorse::Model::Operation.new.tap do |o|
|
|
8422
8567
|
o.name = "Search"
|
|
8423
8568
|
o.http_method = "POST"
|
|
@@ -1622,7 +1622,7 @@ module Aws::SageMaker
|
|
|
1622
1622
|
#
|
|
1623
1623
|
# @!attribute [rw] created_by
|
|
1624
1624
|
# Information about the user who created or modified an experiment,
|
|
1625
|
-
# trial,
|
|
1625
|
+
# trial, trial component, or project.
|
|
1626
1626
|
# @return [Types::UserContext]
|
|
1627
1627
|
#
|
|
1628
1628
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AssociationSummary AWS API Documentation
|
|
@@ -3842,6 +3842,7 @@ module Aws::SageMaker
|
|
|
3842
3842
|
# sage_maker_image_arn: "ImageArn",
|
|
3843
3843
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
|
3844
3844
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
|
3845
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
|
3845
3846
|
# },
|
|
3846
3847
|
# }
|
|
3847
3848
|
#
|
|
@@ -4200,7 +4201,7 @@ module Aws::SageMaker
|
|
|
4200
4201
|
# },
|
|
4201
4202
|
# output_config: { # required
|
|
4202
4203
|
# s3_output_location: "S3Uri", # required
|
|
4203
|
-
# target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, ml_eia2, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv22, amba_cv25, x86_win32, x86_win64, coreml, jacinto_tda4vm
|
|
4204
|
+
# target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, ml_eia2, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv22, amba_cv25, x86_win32, x86_win64, coreml, jacinto_tda4vm, imx8mplus
|
|
4204
4205
|
# target_platform: {
|
|
4205
4206
|
# os: "ANDROID", # required, accepts ANDROID, LINUX
|
|
4206
4207
|
# arch: "X86_64", # required, accepts X86_64, X86, ARM64, ARM_EABI, ARM_EABIHF
|
|
@@ -4641,13 +4642,16 @@ module Aws::SageMaker
|
|
|
4641
4642
|
# sage_maker_image_arn: "ImageArn",
|
|
4642
4643
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
|
4643
4644
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
|
4645
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
|
4644
4646
|
# },
|
|
4647
|
+
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
|
4645
4648
|
# },
|
|
4646
4649
|
# kernel_gateway_app_settings: {
|
|
4647
4650
|
# default_resource_spec: {
|
|
4648
4651
|
# sage_maker_image_arn: "ImageArn",
|
|
4649
4652
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
|
4650
4653
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
|
4654
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
|
4651
4655
|
# },
|
|
4652
4656
|
# custom_images: [
|
|
4653
4657
|
# {
|
|
@@ -4656,12 +4660,14 @@ module Aws::SageMaker
|
|
|
4656
4660
|
# app_image_config_name: "AppImageConfigName", # required
|
|
4657
4661
|
# },
|
|
4658
4662
|
# ],
|
|
4663
|
+
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
|
4659
4664
|
# },
|
|
4660
4665
|
# tensor_board_app_settings: {
|
|
4661
4666
|
# default_resource_spec: {
|
|
4662
4667
|
# sage_maker_image_arn: "ImageArn",
|
|
4663
4668
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
|
4664
4669
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
|
4670
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
|
4665
4671
|
# },
|
|
4666
4672
|
# },
|
|
4667
4673
|
# },
|
|
@@ -4732,9 +4738,8 @@ module Aws::SageMaker
|
|
|
4732
4738
|
#
|
|
4733
4739
|
# @!attribute [rw] kms_key_id
|
|
4734
4740
|
# SageMaker uses Amazon Web Services KMS to encrypt the EFS volume
|
|
4735
|
-
# attached to the domain with an Amazon Web Services managed
|
|
4736
|
-
#
|
|
4737
|
-
# managed CMK.
|
|
4741
|
+
# attached to the domain with an Amazon Web Services managed key by
|
|
4742
|
+
# default. For more control, specify a customer managed key.
|
|
4738
4743
|
# @return [String]
|
|
4739
4744
|
#
|
|
4740
4745
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateDomainRequest AWS API Documentation
|
|
@@ -4823,8 +4828,8 @@ module Aws::SageMaker
|
|
|
4823
4828
|
# @return [Types::EdgeOutputConfig]
|
|
4824
4829
|
#
|
|
4825
4830
|
# @!attribute [rw] resource_key
|
|
4826
|
-
# The
|
|
4827
|
-
# runs on.
|
|
4831
|
+
# The Amazon Web Services KMS key to use when encrypting the EBS
|
|
4832
|
+
# volume the edge packaging job runs on.
|
|
4828
4833
|
# @return [String]
|
|
4829
4834
|
#
|
|
4830
4835
|
# @!attribute [rw] tags
|
|
@@ -7975,6 +7980,63 @@ module Aws::SageMaker
|
|
|
7975
7980
|
include Aws::Structure
|
|
7976
7981
|
end
|
|
7977
7982
|
|
|
7983
|
+
# @note When making an API call, you may pass CreateStudioLifecycleConfigRequest
|
|
7984
|
+
# data as a hash:
|
|
7985
|
+
#
|
|
7986
|
+
# {
|
|
7987
|
+
# studio_lifecycle_config_name: "StudioLifecycleConfigName", # required
|
|
7988
|
+
# studio_lifecycle_config_content: "StudioLifecycleConfigContent", # required
|
|
7989
|
+
# studio_lifecycle_config_app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway
|
|
7990
|
+
# tags: [
|
|
7991
|
+
# {
|
|
7992
|
+
# key: "TagKey", # required
|
|
7993
|
+
# value: "TagValue", # required
|
|
7994
|
+
# },
|
|
7995
|
+
# ],
|
|
7996
|
+
# }
|
|
7997
|
+
#
|
|
7998
|
+
# @!attribute [rw] studio_lifecycle_config_name
|
|
7999
|
+
# The name of the Studio Lifecycle Configuration to create.
|
|
8000
|
+
# @return [String]
|
|
8001
|
+
#
|
|
8002
|
+
# @!attribute [rw] studio_lifecycle_config_content
|
|
8003
|
+
# The content of your Studio Lifecycle Configuration script. This
|
|
8004
|
+
# content must be base64 encoded.
|
|
8005
|
+
# @return [String]
|
|
8006
|
+
#
|
|
8007
|
+
# @!attribute [rw] studio_lifecycle_config_app_type
|
|
8008
|
+
# The App type that the Lifecycle Configuration is attached to.
|
|
8009
|
+
# @return [String]
|
|
8010
|
+
#
|
|
8011
|
+
# @!attribute [rw] tags
|
|
8012
|
+
# Tags to be associated with the Lifecycle Configuration. Each tag
|
|
8013
|
+
# consists of a key and an optional value. Tag keys must be unique per
|
|
8014
|
+
# resource. Tags are searchable using the Search API.
|
|
8015
|
+
# @return [Array<Types::Tag>]
|
|
8016
|
+
#
|
|
8017
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateStudioLifecycleConfigRequest AWS API Documentation
|
|
8018
|
+
#
|
|
8019
|
+
class CreateStudioLifecycleConfigRequest < Struct.new(
|
|
8020
|
+
:studio_lifecycle_config_name,
|
|
8021
|
+
:studio_lifecycle_config_content,
|
|
8022
|
+
:studio_lifecycle_config_app_type,
|
|
8023
|
+
:tags)
|
|
8024
|
+
SENSITIVE = []
|
|
8025
|
+
include Aws::Structure
|
|
8026
|
+
end
|
|
8027
|
+
|
|
8028
|
+
# @!attribute [rw] studio_lifecycle_config_arn
|
|
8029
|
+
# The ARN of your created Lifecycle Configuration.
|
|
8030
|
+
# @return [String]
|
|
8031
|
+
#
|
|
8032
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateStudioLifecycleConfigResponse AWS API Documentation
|
|
8033
|
+
#
|
|
8034
|
+
class CreateStudioLifecycleConfigResponse < Struct.new(
|
|
8035
|
+
:studio_lifecycle_config_arn)
|
|
8036
|
+
SENSITIVE = []
|
|
8037
|
+
include Aws::Structure
|
|
8038
|
+
end
|
|
8039
|
+
|
|
7978
8040
|
# @note When making an API call, you may pass CreateTrainingJobRequest
|
|
7979
8041
|
# data as a hash:
|
|
7980
8042
|
#
|
|
@@ -8812,13 +8874,16 @@ module Aws::SageMaker
|
|
|
8812
8874
|
# sage_maker_image_arn: "ImageArn",
|
|
8813
8875
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
|
8814
8876
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
|
8877
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
|
8815
8878
|
# },
|
|
8879
|
+
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
|
8816
8880
|
# },
|
|
8817
8881
|
# kernel_gateway_app_settings: {
|
|
8818
8882
|
# default_resource_spec: {
|
|
8819
8883
|
# sage_maker_image_arn: "ImageArn",
|
|
8820
8884
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
|
8821
8885
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
|
8886
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
|
8822
8887
|
# },
|
|
8823
8888
|
# custom_images: [
|
|
8824
8889
|
# {
|
|
@@ -8827,12 +8892,14 @@ module Aws::SageMaker
|
|
|
8827
8892
|
# app_image_config_name: "AppImageConfigName", # required
|
|
8828
8893
|
# },
|
|
8829
8894
|
# ],
|
|
8895
|
+
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
|
8830
8896
|
# },
|
|
8831
8897
|
# tensor_board_app_settings: {
|
|
8832
8898
|
# default_resource_spec: {
|
|
8833
8899
|
# sage_maker_image_arn: "ImageArn",
|
|
8834
8900
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
|
8835
8901
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
|
8902
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
|
8836
8903
|
# },
|
|
8837
8904
|
# },
|
|
8838
8905
|
# },
|
|
@@ -10519,6 +10586,25 @@ module Aws::SageMaker
|
|
|
10519
10586
|
include Aws::Structure
|
|
10520
10587
|
end
|
|
10521
10588
|
|
|
10589
|
+
# @note When making an API call, you may pass DeleteStudioLifecycleConfigRequest
|
|
10590
|
+
# data as a hash:
|
|
10591
|
+
#
|
|
10592
|
+
# {
|
|
10593
|
+
# studio_lifecycle_config_name: "StudioLifecycleConfigName", # required
|
|
10594
|
+
# }
|
|
10595
|
+
#
|
|
10596
|
+
# @!attribute [rw] studio_lifecycle_config_name
|
|
10597
|
+
# The name of the Studio Lifecycle Configuration to delete.
|
|
10598
|
+
# @return [String]
|
|
10599
|
+
#
|
|
10600
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteStudioLifecycleConfigRequest AWS API Documentation
|
|
10601
|
+
#
|
|
10602
|
+
class DeleteStudioLifecycleConfigRequest < Struct.new(
|
|
10603
|
+
:studio_lifecycle_config_name)
|
|
10604
|
+
SENSITIVE = []
|
|
10605
|
+
include Aws::Structure
|
|
10606
|
+
end
|
|
10607
|
+
|
|
10522
10608
|
# @note When making an API call, you may pass DeleteTagsInput
|
|
10523
10609
|
# data as a hash:
|
|
10524
10610
|
#
|
|
@@ -10850,7 +10936,7 @@ module Aws::SageMaker
|
|
|
10850
10936
|
#
|
|
10851
10937
|
# @!attribute [rw] created_by
|
|
10852
10938
|
# Information about the user who created or modified an experiment,
|
|
10853
|
-
# trial,
|
|
10939
|
+
# trial, trial component, or project.
|
|
10854
10940
|
# @return [Types::UserContext]
|
|
10855
10941
|
#
|
|
10856
10942
|
# @!attribute [rw] last_modified_time
|
|
@@ -10859,7 +10945,7 @@ module Aws::SageMaker
|
|
|
10859
10945
|
#
|
|
10860
10946
|
# @!attribute [rw] last_modified_by
|
|
10861
10947
|
# Information about the user who created or modified an experiment,
|
|
10862
|
-
# trial,
|
|
10948
|
+
# trial, trial component, or project.
|
|
10863
10949
|
# @return [Types::UserContext]
|
|
10864
10950
|
#
|
|
10865
10951
|
# @!attribute [rw] metadata_properties
|
|
@@ -11165,7 +11251,7 @@ module Aws::SageMaker
|
|
|
11165
11251
|
#
|
|
11166
11252
|
# @!attribute [rw] created_by
|
|
11167
11253
|
# Information about the user who created or modified an experiment,
|
|
11168
|
-
# trial,
|
|
11254
|
+
# trial, trial component, or project.
|
|
11169
11255
|
# @return [Types::UserContext]
|
|
11170
11256
|
#
|
|
11171
11257
|
# @!attribute [rw] last_modified_time
|
|
@@ -11174,7 +11260,7 @@ module Aws::SageMaker
|
|
|
11174
11260
|
#
|
|
11175
11261
|
# @!attribute [rw] last_modified_by
|
|
11176
11262
|
# Information about the user who created or modified an experiment,
|
|
11177
|
-
# trial,
|
|
11263
|
+
# trial, trial component, or project.
|
|
11178
11264
|
# @return [Types::UserContext]
|
|
11179
11265
|
#
|
|
11180
11266
|
# @!attribute [rw] metadata_properties
|
|
@@ -11576,7 +11662,7 @@ module Aws::SageMaker
|
|
|
11576
11662
|
#
|
|
11577
11663
|
# @!attribute [rw] created_by
|
|
11578
11664
|
# Information about the user who created or modified an experiment,
|
|
11579
|
-
# trial,
|
|
11665
|
+
# trial, trial component, or project.
|
|
11580
11666
|
# @return [Types::UserContext]
|
|
11581
11667
|
#
|
|
11582
11668
|
# @!attribute [rw] last_modified_time
|
|
@@ -11585,7 +11671,7 @@ module Aws::SageMaker
|
|
|
11585
11671
|
#
|
|
11586
11672
|
# @!attribute [rw] last_modified_by
|
|
11587
11673
|
# Information about the user who created or modified an experiment,
|
|
11588
|
-
# trial,
|
|
11674
|
+
# trial, trial component, or project.
|
|
11589
11675
|
# @return [Types::UserContext]
|
|
11590
11676
|
#
|
|
11591
11677
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeContextResponse AWS API Documentation
|
|
@@ -11945,7 +12031,7 @@ module Aws::SageMaker
|
|
|
11945
12031
|
# @return [String]
|
|
11946
12032
|
#
|
|
11947
12033
|
# @!attribute [rw] kms_key_id
|
|
11948
|
-
# The Amazon Web Services KMS customer managed
|
|
12034
|
+
# The Amazon Web Services KMS customer managed key used to encrypt the
|
|
11949
12035
|
# EFS volume attached to the domain.
|
|
11950
12036
|
# @return [String]
|
|
11951
12037
|
#
|
|
@@ -12023,7 +12109,8 @@ module Aws::SageMaker
|
|
|
12023
12109
|
# @return [Types::EdgeOutputConfig]
|
|
12024
12110
|
#
|
|
12025
12111
|
# @!attribute [rw] resource_key
|
|
12026
|
-
# The
|
|
12112
|
+
# The Amazon Web Services KMS key to use when encrypting the EBS
|
|
12113
|
+
# volume the job run on.
|
|
12027
12114
|
# @return [String]
|
|
12028
12115
|
#
|
|
12029
12116
|
# @!attribute [rw] edge_packaging_job_status
|
|
@@ -13332,7 +13419,7 @@ module Aws::SageMaker
|
|
|
13332
13419
|
#
|
|
13333
13420
|
# @!attribute [rw] created_by
|
|
13334
13421
|
# Information about the user who created or modified an experiment,
|
|
13335
|
-
# trial,
|
|
13422
|
+
# trial, trial component, or project.
|
|
13336
13423
|
# @return [Types::UserContext]
|
|
13337
13424
|
#
|
|
13338
13425
|
# @!attribute [rw] model_package_group_status
|
|
@@ -13434,7 +13521,7 @@ module Aws::SageMaker
|
|
|
13434
13521
|
#
|
|
13435
13522
|
# @!attribute [rw] created_by
|
|
13436
13523
|
# Information about the user who created or modified an experiment,
|
|
13437
|
-
# trial,
|
|
13524
|
+
# trial, trial component, or project.
|
|
13438
13525
|
# @return [Types::UserContext]
|
|
13439
13526
|
#
|
|
13440
13527
|
# @!attribute [rw] metadata_properties
|
|
@@ -13452,7 +13539,7 @@ module Aws::SageMaker
|
|
|
13452
13539
|
#
|
|
13453
13540
|
# @!attribute [rw] last_modified_by
|
|
13454
13541
|
# Information about the user who created or modified an experiment,
|
|
13455
|
-
# trial,
|
|
13542
|
+
# trial, trial component, or project.
|
|
13456
13543
|
# @return [Types::UserContext]
|
|
13457
13544
|
#
|
|
13458
13545
|
# @!attribute [rw] approval_description
|
|
@@ -14011,12 +14098,12 @@ module Aws::SageMaker
|
|
|
14011
14098
|
#
|
|
14012
14099
|
# @!attribute [rw] created_by
|
|
14013
14100
|
# Information about the user who created or modified an experiment,
|
|
14014
|
-
# trial,
|
|
14101
|
+
# trial, trial component, or project.
|
|
14015
14102
|
# @return [Types::UserContext]
|
|
14016
14103
|
#
|
|
14017
14104
|
# @!attribute [rw] last_modified_by
|
|
14018
14105
|
# Information about the user who created or modified an experiment,
|
|
14019
|
-
# trial,
|
|
14106
|
+
# trial, trial component, or project.
|
|
14020
14107
|
# @return [Types::UserContext]
|
|
14021
14108
|
#
|
|
14022
14109
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipelineExecutionResponse AWS API Documentation
|
|
@@ -14098,12 +14185,12 @@ module Aws::SageMaker
|
|
|
14098
14185
|
#
|
|
14099
14186
|
# @!attribute [rw] created_by
|
|
14100
14187
|
# Information about the user who created or modified an experiment,
|
|
14101
|
-
# trial,
|
|
14188
|
+
# trial, trial component, or project.
|
|
14102
14189
|
# @return [Types::UserContext]
|
|
14103
14190
|
#
|
|
14104
14191
|
# @!attribute [rw] last_modified_by
|
|
14105
14192
|
# Information about the user who created or modified an experiment,
|
|
14106
|
-
# trial,
|
|
14193
|
+
# trial, trial component, or project.
|
|
14107
14194
|
# @return [Types::UserContext]
|
|
14108
14195
|
#
|
|
14109
14196
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipelineResponse AWS API Documentation
|
|
@@ -14318,7 +14405,7 @@ module Aws::SageMaker
|
|
|
14318
14405
|
#
|
|
14319
14406
|
# @!attribute [rw] created_by
|
|
14320
14407
|
# Information about the user who created or modified an experiment,
|
|
14321
|
-
# trial,
|
|
14408
|
+
# trial, trial component, or project.
|
|
14322
14409
|
# @return [Types::UserContext]
|
|
14323
14410
|
#
|
|
14324
14411
|
# @!attribute [rw] creation_time
|
|
@@ -14341,6 +14428,63 @@ module Aws::SageMaker
|
|
|
14341
14428
|
include Aws::Structure
|
|
14342
14429
|
end
|
|
14343
14430
|
|
|
14431
|
+
# @note When making an API call, you may pass DescribeStudioLifecycleConfigRequest
|
|
14432
|
+
# data as a hash:
|
|
14433
|
+
#
|
|
14434
|
+
# {
|
|
14435
|
+
# studio_lifecycle_config_name: "StudioLifecycleConfigName", # required
|
|
14436
|
+
# }
|
|
14437
|
+
#
|
|
14438
|
+
# @!attribute [rw] studio_lifecycle_config_name
|
|
14439
|
+
# The name of the Studio Lifecycle Configuration to describe.
|
|
14440
|
+
# @return [String]
|
|
14441
|
+
#
|
|
14442
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeStudioLifecycleConfigRequest AWS API Documentation
|
|
14443
|
+
#
|
|
14444
|
+
class DescribeStudioLifecycleConfigRequest < Struct.new(
|
|
14445
|
+
:studio_lifecycle_config_name)
|
|
14446
|
+
SENSITIVE = []
|
|
14447
|
+
include Aws::Structure
|
|
14448
|
+
end
|
|
14449
|
+
|
|
14450
|
+
# @!attribute [rw] studio_lifecycle_config_arn
|
|
14451
|
+
# The ARN of the Lifecycle Configuration to describe.
|
|
14452
|
+
# @return [String]
|
|
14453
|
+
#
|
|
14454
|
+
# @!attribute [rw] studio_lifecycle_config_name
|
|
14455
|
+
# The name of the Studio Lifecycle Configuration that is described.
|
|
14456
|
+
# @return [String]
|
|
14457
|
+
#
|
|
14458
|
+
# @!attribute [rw] creation_time
|
|
14459
|
+
# The creation time of the Studio Lifecycle Configuration.
|
|
14460
|
+
# @return [Time]
|
|
14461
|
+
#
|
|
14462
|
+
# @!attribute [rw] last_modified_time
|
|
14463
|
+
# This value is equivalent to CreationTime because Studio Lifecycle
|
|
14464
|
+
# Configurations are immutable.
|
|
14465
|
+
# @return [Time]
|
|
14466
|
+
#
|
|
14467
|
+
# @!attribute [rw] studio_lifecycle_config_content
|
|
14468
|
+
# The content of your Studio Lifecycle Configuration script.
|
|
14469
|
+
# @return [String]
|
|
14470
|
+
#
|
|
14471
|
+
# @!attribute [rw] studio_lifecycle_config_app_type
|
|
14472
|
+
# The App type that the Lifecycle Configuration is attached to.
|
|
14473
|
+
# @return [String]
|
|
14474
|
+
#
|
|
14475
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeStudioLifecycleConfigResponse AWS API Documentation
|
|
14476
|
+
#
|
|
14477
|
+
class DescribeStudioLifecycleConfigResponse < Struct.new(
|
|
14478
|
+
:studio_lifecycle_config_arn,
|
|
14479
|
+
:studio_lifecycle_config_name,
|
|
14480
|
+
:creation_time,
|
|
14481
|
+
:last_modified_time,
|
|
14482
|
+
:studio_lifecycle_config_content,
|
|
14483
|
+
:studio_lifecycle_config_app_type)
|
|
14484
|
+
SENSITIVE = []
|
|
14485
|
+
include Aws::Structure
|
|
14486
|
+
end
|
|
14487
|
+
|
|
14344
14488
|
# @note When making an API call, you may pass DescribeSubscribedWorkteamRequest
|
|
14345
14489
|
# data as a hash:
|
|
14346
14490
|
#
|
|
@@ -14983,7 +15127,7 @@ module Aws::SageMaker
|
|
|
14983
15127
|
# @return [Time]
|
|
14984
15128
|
#
|
|
14985
15129
|
# @!attribute [rw] created_by
|
|
14986
|
-
# Who created the component.
|
|
15130
|
+
# Who created the trial component.
|
|
14987
15131
|
# @return [Types::UserContext]
|
|
14988
15132
|
#
|
|
14989
15133
|
# @!attribute [rw] last_modified_time
|
|
@@ -16091,8 +16235,7 @@ module Aws::SageMaker
|
|
|
16091
16235
|
# @return [Time]
|
|
16092
16236
|
#
|
|
16093
16237
|
# @!attribute [rw] created_by
|
|
16094
|
-
#
|
|
16095
|
-
# trial, or trial component.
|
|
16238
|
+
# Who created the experiment.
|
|
16096
16239
|
# @return [Types::UserContext]
|
|
16097
16240
|
#
|
|
16098
16241
|
# @!attribute [rw] last_modified_time
|
|
@@ -16101,7 +16244,7 @@ module Aws::SageMaker
|
|
|
16101
16244
|
#
|
|
16102
16245
|
# @!attribute [rw] last_modified_by
|
|
16103
16246
|
# Information about the user who created or modified an experiment,
|
|
16104
|
-
# trial,
|
|
16247
|
+
# trial, trial component, or project.
|
|
16105
16248
|
# @return [Types::UserContext]
|
|
16106
16249
|
#
|
|
16107
16250
|
# @!attribute [rw] tags
|
|
@@ -16927,7 +17070,7 @@ module Aws::SageMaker
|
|
|
16927
17070
|
# data as a hash:
|
|
16928
17071
|
#
|
|
16929
17072
|
# {
|
|
16930
|
-
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup
|
|
17073
|
+
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, Project
|
|
16931
17074
|
# suggestion_query: {
|
|
16932
17075
|
# property_name_query: {
|
|
16933
17076
|
# property_name_hint: "PropertyNameHint", # required
|
|
@@ -19584,7 +19727,9 @@ module Aws::SageMaker
|
|
|
19584
19727
|
# sage_maker_image_arn: "ImageArn",
|
|
19585
19728
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
|
19586
19729
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
|
19730
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
|
19587
19731
|
# },
|
|
19732
|
+
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
|
19588
19733
|
# }
|
|
19589
19734
|
#
|
|
19590
19735
|
# @!attribute [rw] default_resource_spec
|
|
@@ -19592,10 +19737,16 @@ module Aws::SageMaker
|
|
|
19592
19737
|
# default SageMaker image used by the JupyterServer app.
|
|
19593
19738
|
# @return [Types::ResourceSpec]
|
|
19594
19739
|
#
|
|
19740
|
+
# @!attribute [rw] lifecycle_config_arns
|
|
19741
|
+
# The Amazon Resource Name (ARN) of the Lifecycle Configurations
|
|
19742
|
+
# attached to the JupyterServerApp.
|
|
19743
|
+
# @return [Array<String>]
|
|
19744
|
+
#
|
|
19595
19745
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/JupyterServerAppSettings AWS API Documentation
|
|
19596
19746
|
#
|
|
19597
19747
|
class JupyterServerAppSettings < Struct.new(
|
|
19598
|
-
:default_resource_spec
|
|
19748
|
+
:default_resource_spec,
|
|
19749
|
+
:lifecycle_config_arns)
|
|
19599
19750
|
SENSITIVE = []
|
|
19600
19751
|
include Aws::Structure
|
|
19601
19752
|
end
|
|
@@ -19610,6 +19761,7 @@ module Aws::SageMaker
|
|
|
19610
19761
|
# sage_maker_image_arn: "ImageArn",
|
|
19611
19762
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
|
19612
19763
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
|
19764
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
|
19613
19765
|
# },
|
|
19614
19766
|
# custom_images: [
|
|
19615
19767
|
# {
|
|
@@ -19618,6 +19770,7 @@ module Aws::SageMaker
|
|
|
19618
19770
|
# app_image_config_name: "AppImageConfigName", # required
|
|
19619
19771
|
# },
|
|
19620
19772
|
# ],
|
|
19773
|
+
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
|
19621
19774
|
# }
|
|
19622
19775
|
#
|
|
19623
19776
|
# @!attribute [rw] default_resource_spec
|
|
@@ -19630,11 +19783,17 @@ module Aws::SageMaker
|
|
|
19630
19783
|
# KernelGateway app.
|
|
19631
19784
|
# @return [Array<Types::CustomImage>]
|
|
19632
19785
|
#
|
|
19786
|
+
# @!attribute [rw] lifecycle_config_arns
|
|
19787
|
+
# The Amazon Resource Name (ARN) of the Lifecycle Configurations
|
|
19788
|
+
# attached to the the user profile or domain.
|
|
19789
|
+
# @return [Array<String>]
|
|
19790
|
+
#
|
|
19633
19791
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/KernelGatewayAppSettings AWS API Documentation
|
|
19634
19792
|
#
|
|
19635
19793
|
class KernelGatewayAppSettings < Struct.new(
|
|
19636
19794
|
:default_resource_spec,
|
|
19637
|
-
:custom_images
|
|
19795
|
+
:custom_images,
|
|
19796
|
+
:lifecycle_config_arns)
|
|
19638
19797
|
SENSITIVE = []
|
|
19639
19798
|
include Aws::Structure
|
|
19640
19799
|
end
|
|
@@ -20079,10 +20238,10 @@ module Aws::SageMaker
|
|
|
20079
20238
|
# You can only specify a `VolumeKmsKeyId` when you create a labeling
|
|
20080
20239
|
# job with automated data labeling enabled using the API operation
|
|
20081
20240
|
# `CreateLabelingJob`. You cannot specify an Amazon Web Services KMS
|
|
20082
|
-
#
|
|
20083
|
-
#
|
|
20084
|
-
#
|
|
20085
|
-
#
|
|
20241
|
+
# key to encrypt the storage volume used for automated data labeling
|
|
20242
|
+
# model training and inference when you create a labeling job using
|
|
20243
|
+
# the console. To learn more, see [Output Data and Storage Volume
|
|
20244
|
+
# Encryption][1].
|
|
20086
20245
|
#
|
|
20087
20246
|
# The `VolumeKmsKeyId` can be any of the following formats:
|
|
20088
20247
|
#
|
|
@@ -23092,8 +23251,8 @@ module Aws::SageMaker
|
|
|
23092
23251
|
# @return [Integer]
|
|
23093
23252
|
#
|
|
23094
23253
|
# @!attribute [rw] name_contains
|
|
23095
|
-
# A string in the
|
|
23096
|
-
#
|
|
23254
|
+
# A string in the model name. This filter returns only models whose
|
|
23255
|
+
# name contains the specified string.
|
|
23097
23256
|
# @return [String]
|
|
23098
23257
|
#
|
|
23099
23258
|
# @!attribute [rw] creation_time_before
|
|
@@ -24078,6 +24237,107 @@ module Aws::SageMaker
|
|
|
24078
24237
|
include Aws::Structure
|
|
24079
24238
|
end
|
|
24080
24239
|
|
|
24240
|
+
# @note When making an API call, you may pass ListStudioLifecycleConfigsRequest
|
|
24241
|
+
# data as a hash:
|
|
24242
|
+
#
|
|
24243
|
+
# {
|
|
24244
|
+
# max_results: 1,
|
|
24245
|
+
# next_token: "NextToken",
|
|
24246
|
+
# name_contains: "StudioLifecycleConfigName",
|
|
24247
|
+
# app_type_equals: "JupyterServer", # accepts JupyterServer, KernelGateway
|
|
24248
|
+
# creation_time_before: Time.now,
|
|
24249
|
+
# creation_time_after: Time.now,
|
|
24250
|
+
# modified_time_before: Time.now,
|
|
24251
|
+
# modified_time_after: Time.now,
|
|
24252
|
+
# sort_by: "CreationTime", # accepts CreationTime, LastModifiedTime, Name
|
|
24253
|
+
# sort_order: "Ascending", # accepts Ascending, Descending
|
|
24254
|
+
# }
|
|
24255
|
+
#
|
|
24256
|
+
# @!attribute [rw] max_results
|
|
24257
|
+
# The maximum number of Studio Lifecycle Configurations to return in
|
|
24258
|
+
# the response. The default value is 10.
|
|
24259
|
+
# @return [Integer]
|
|
24260
|
+
#
|
|
24261
|
+
# @!attribute [rw] next_token
|
|
24262
|
+
# If the previous call to ListStudioLifecycleConfigs didn't return
|
|
24263
|
+
# the full set of Lifecycle Configurations, the call returns a token
|
|
24264
|
+
# for getting the next set of Lifecycle Configurations.
|
|
24265
|
+
# @return [String]
|
|
24266
|
+
#
|
|
24267
|
+
# @!attribute [rw] name_contains
|
|
24268
|
+
# A string in the Lifecycle Configuration name. This filter returns
|
|
24269
|
+
# only Lifecycle Configurations whose name contains the specified
|
|
24270
|
+
# string.
|
|
24271
|
+
# @return [String]
|
|
24272
|
+
#
|
|
24273
|
+
# @!attribute [rw] app_type_equals
|
|
24274
|
+
# A parameter to search for the App Type to which the Lifecycle
|
|
24275
|
+
# Configuration is attached.
|
|
24276
|
+
# @return [String]
|
|
24277
|
+
#
|
|
24278
|
+
# @!attribute [rw] creation_time_before
|
|
24279
|
+
# A filter that returns only Lifecycle Configurations created on or
|
|
24280
|
+
# before the specified time.
|
|
24281
|
+
# @return [Time]
|
|
24282
|
+
#
|
|
24283
|
+
# @!attribute [rw] creation_time_after
|
|
24284
|
+
# A filter that returns only Lifecycle Configurations created on or
|
|
24285
|
+
# after the specified time.
|
|
24286
|
+
# @return [Time]
|
|
24287
|
+
#
|
|
24288
|
+
# @!attribute [rw] modified_time_before
|
|
24289
|
+
# A filter that returns only Lifecycle Configurations modified before
|
|
24290
|
+
# the specified time.
|
|
24291
|
+
# @return [Time]
|
|
24292
|
+
#
|
|
24293
|
+
# @!attribute [rw] modified_time_after
|
|
24294
|
+
# A filter that returns only Lifecycle Configurations modified after
|
|
24295
|
+
# the specified time.
|
|
24296
|
+
# @return [Time]
|
|
24297
|
+
#
|
|
24298
|
+
# @!attribute [rw] sort_by
|
|
24299
|
+
# The property used to sort results. The default value is
|
|
24300
|
+
# CreationTime.
|
|
24301
|
+
# @return [String]
|
|
24302
|
+
#
|
|
24303
|
+
# @!attribute [rw] sort_order
|
|
24304
|
+
# The sort order. The default value is Descending.
|
|
24305
|
+
# @return [String]
|
|
24306
|
+
#
|
|
24307
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListStudioLifecycleConfigsRequest AWS API Documentation
|
|
24308
|
+
#
|
|
24309
|
+
class ListStudioLifecycleConfigsRequest < Struct.new(
|
|
24310
|
+
:max_results,
|
|
24311
|
+
:next_token,
|
|
24312
|
+
:name_contains,
|
|
24313
|
+
:app_type_equals,
|
|
24314
|
+
:creation_time_before,
|
|
24315
|
+
:creation_time_after,
|
|
24316
|
+
:modified_time_before,
|
|
24317
|
+
:modified_time_after,
|
|
24318
|
+
:sort_by,
|
|
24319
|
+
:sort_order)
|
|
24320
|
+
SENSITIVE = []
|
|
24321
|
+
include Aws::Structure
|
|
24322
|
+
end
|
|
24323
|
+
|
|
24324
|
+
# @!attribute [rw] next_token
|
|
24325
|
+
# A token for getting the next set of actions, if there are any.
|
|
24326
|
+
# @return [String]
|
|
24327
|
+
#
|
|
24328
|
+
# @!attribute [rw] studio_lifecycle_configs
|
|
24329
|
+
# A list of Lifecycle Configurations and their properties.
|
|
24330
|
+
# @return [Array<Types::StudioLifecycleConfigDetails>]
|
|
24331
|
+
#
|
|
24332
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListStudioLifecycleConfigsResponse AWS API Documentation
|
|
24333
|
+
#
|
|
24334
|
+
class ListStudioLifecycleConfigsResponse < Struct.new(
|
|
24335
|
+
:next_token,
|
|
24336
|
+
:studio_lifecycle_configs)
|
|
24337
|
+
SENSITIVE = []
|
|
24338
|
+
include Aws::Structure
|
|
24339
|
+
end
|
|
24340
|
+
|
|
24081
24341
|
# @note When making an API call, you may pass ListSubscribedWorkteamsRequest
|
|
24082
24342
|
# data as a hash:
|
|
24083
24343
|
#
|
|
@@ -25563,7 +25823,7 @@ module Aws::SageMaker
|
|
|
25563
25823
|
#
|
|
25564
25824
|
# @!attribute [rw] created_by
|
|
25565
25825
|
# Information about the user who created or modified an experiment,
|
|
25566
|
-
# trial,
|
|
25826
|
+
# trial, trial component, or project.
|
|
25567
25827
|
# @return [Types::UserContext]
|
|
25568
25828
|
#
|
|
25569
25829
|
# @!attribute [rw] metadata_properties
|
|
@@ -25581,7 +25841,7 @@ module Aws::SageMaker
|
|
|
25581
25841
|
#
|
|
25582
25842
|
# @!attribute [rw] last_modified_by
|
|
25583
25843
|
# Information about the user who created or modified an experiment,
|
|
25584
|
-
# trial,
|
|
25844
|
+
# trial, trial component, or project.
|
|
25585
25845
|
# @return [Types::UserContext]
|
|
25586
25846
|
#
|
|
25587
25847
|
# @!attribute [rw] approval_description
|
|
@@ -25720,7 +25980,7 @@ module Aws::SageMaker
|
|
|
25720
25980
|
#
|
|
25721
25981
|
# @!attribute [rw] created_by
|
|
25722
25982
|
# Information about the user who created or modified an experiment,
|
|
25723
|
-
# trial,
|
|
25983
|
+
# trial, trial component, or project.
|
|
25724
25984
|
# @return [Types::UserContext]
|
|
25725
25985
|
#
|
|
25726
25986
|
# @!attribute [rw] model_package_group_status
|
|
@@ -27861,7 +28121,7 @@ module Aws::SageMaker
|
|
|
27861
28121
|
#
|
|
27862
28122
|
# {
|
|
27863
28123
|
# s3_output_location: "S3Uri", # required
|
|
27864
|
-
# target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, ml_eia2, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv22, amba_cv25, x86_win32, x86_win64, coreml, jacinto_tda4vm
|
|
28124
|
+
# target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, ml_eia2, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv22, amba_cv25, x86_win32, x86_win64, coreml, jacinto_tda4vm, imx8mplus
|
|
27865
28125
|
# target_platform: {
|
|
27866
28126
|
# os: "ANDROID", # required, accepts ANDROID, LINUX
|
|
27867
28127
|
# arch: "X86_64", # required, accepts X86_64, X86, ARM64, ARM_EABI, ARM_EABIHF
|
|
@@ -28102,7 +28362,7 @@ module Aws::SageMaker
|
|
|
28102
28362
|
#
|
|
28103
28363
|
# `"arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias"`
|
|
28104
28364
|
#
|
|
28105
|
-
# If you use a KMS key ID or an alias of your
|
|
28365
|
+
# If you use a KMS key ID or an alias of your KMS key, the Amazon
|
|
28106
28366
|
# SageMaker execution role must include permissions to call
|
|
28107
28367
|
# `kms:Encrypt`. If you don't provide a KMS key ID, Amazon SageMaker
|
|
28108
28368
|
# uses the default KMS key for Amazon S3 for your role's account.
|
|
@@ -28393,12 +28653,12 @@ module Aws::SageMaker
|
|
|
28393
28653
|
#
|
|
28394
28654
|
# @!attribute [rw] created_by
|
|
28395
28655
|
# Information about the user who created or modified an experiment,
|
|
28396
|
-
# trial,
|
|
28656
|
+
# trial, trial component, or project.
|
|
28397
28657
|
# @return [Types::UserContext]
|
|
28398
28658
|
#
|
|
28399
28659
|
# @!attribute [rw] last_modified_by
|
|
28400
28660
|
# Information about the user who created or modified an experiment,
|
|
28401
|
-
# trial,
|
|
28661
|
+
# trial, trial component, or project.
|
|
28402
28662
|
# @return [Types::UserContext]
|
|
28403
28663
|
#
|
|
28404
28664
|
# @!attribute [rw] tags
|
|
@@ -28465,12 +28725,12 @@ module Aws::SageMaker
|
|
|
28465
28725
|
#
|
|
28466
28726
|
# @!attribute [rw] created_by
|
|
28467
28727
|
# Information about the user who created or modified an experiment,
|
|
28468
|
-
# trial,
|
|
28728
|
+
# trial, trial component, or project.
|
|
28469
28729
|
# @return [Types::UserContext]
|
|
28470
28730
|
#
|
|
28471
28731
|
# @!attribute [rw] last_modified_by
|
|
28472
28732
|
# Information about the user who created or modified an experiment,
|
|
28473
|
-
# trial,
|
|
28733
|
+
# trial, trial component, or project.
|
|
28474
28734
|
# @return [Types::UserContext]
|
|
28475
28735
|
#
|
|
28476
28736
|
# @!attribute [rw] pipeline_parameters
|
|
@@ -29477,7 +29737,7 @@ module Aws::SageMaker
|
|
|
29477
29737
|
#
|
|
29478
29738
|
# `"arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias"`
|
|
29479
29739
|
#
|
|
29480
|
-
# If you use a KMS key ID or an alias of your
|
|
29740
|
+
# If you use a KMS key ID or an alias of your KMS key, the Amazon
|
|
29481
29741
|
# SageMaker execution role must include permissions to call
|
|
29482
29742
|
# `kms:Encrypt`. If you don't provide a KMS key ID, Amazon SageMaker
|
|
29483
29743
|
# uses the default KMS key for Amazon S3 for your role's account.
|
|
@@ -29761,6 +30021,84 @@ module Aws::SageMaker
|
|
|
29761
30021
|
include Aws::Structure
|
|
29762
30022
|
end
|
|
29763
30023
|
|
|
30024
|
+
# The properties of a project as returned by the Search API.
|
|
30025
|
+
#
|
|
30026
|
+
# @!attribute [rw] project_arn
|
|
30027
|
+
# The Amazon Resource Name (ARN) of the project.
|
|
30028
|
+
# @return [String]
|
|
30029
|
+
#
|
|
30030
|
+
# @!attribute [rw] project_name
|
|
30031
|
+
# The name of the project.
|
|
30032
|
+
# @return [String]
|
|
30033
|
+
#
|
|
30034
|
+
# @!attribute [rw] project_id
|
|
30035
|
+
# The ID of the project.
|
|
30036
|
+
# @return [String]
|
|
30037
|
+
#
|
|
30038
|
+
# @!attribute [rw] project_description
|
|
30039
|
+
# The description of the project.
|
|
30040
|
+
# @return [String]
|
|
30041
|
+
#
|
|
30042
|
+
# @!attribute [rw] service_catalog_provisioning_details
|
|
30043
|
+
# Details that you specify to provision a service catalog product. For
|
|
30044
|
+
# information about service catalog, see [What is Amazon Web Services
|
|
30045
|
+
# Service Catalog][1].
|
|
30046
|
+
#
|
|
30047
|
+
#
|
|
30048
|
+
#
|
|
30049
|
+
# [1]: https://docs.aws.amazon.com/servicecatalog/latest/adminguide/introduction.html
|
|
30050
|
+
# @return [Types::ServiceCatalogProvisioningDetails]
|
|
30051
|
+
#
|
|
30052
|
+
# @!attribute [rw] service_catalog_provisioned_product_details
|
|
30053
|
+
# Details of a provisioned service catalog product. For information
|
|
30054
|
+
# about service catalog, see [What is Amazon Web Services Service
|
|
30055
|
+
# Catalog][1].
|
|
30056
|
+
#
|
|
30057
|
+
#
|
|
30058
|
+
#
|
|
30059
|
+
# [1]: https://docs.aws.amazon.com/servicecatalog/latest/adminguide/introduction.html
|
|
30060
|
+
# @return [Types::ServiceCatalogProvisionedProductDetails]
|
|
30061
|
+
#
|
|
30062
|
+
# @!attribute [rw] project_status
|
|
30063
|
+
# The status of the project.
|
|
30064
|
+
# @return [String]
|
|
30065
|
+
#
|
|
30066
|
+
# @!attribute [rw] created_by
|
|
30067
|
+
# Who created the project.
|
|
30068
|
+
# @return [Types::UserContext]
|
|
30069
|
+
#
|
|
30070
|
+
# @!attribute [rw] creation_time
|
|
30071
|
+
# A timestamp specifying when the project was created.
|
|
30072
|
+
# @return [Time]
|
|
30073
|
+
#
|
|
30074
|
+
# @!attribute [rw] tags
|
|
30075
|
+
# An array of key-value pairs. You can use tags to categorize your
|
|
30076
|
+
# Amazon Web Services resources in different ways, for example, by
|
|
30077
|
+
# purpose, owner, or environment. For more information, see [Tagging
|
|
30078
|
+
# Amazon Web Services Resources][1].
|
|
30079
|
+
#
|
|
30080
|
+
#
|
|
30081
|
+
#
|
|
30082
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
|
30083
|
+
# @return [Array<Types::Tag>]
|
|
30084
|
+
#
|
|
30085
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Project AWS API Documentation
|
|
30086
|
+
#
|
|
30087
|
+
class Project < Struct.new(
|
|
30088
|
+
:project_arn,
|
|
30089
|
+
:project_name,
|
|
30090
|
+
:project_id,
|
|
30091
|
+
:project_description,
|
|
30092
|
+
:service_catalog_provisioning_details,
|
|
30093
|
+
:service_catalog_provisioned_product_details,
|
|
30094
|
+
:project_status,
|
|
30095
|
+
:created_by,
|
|
30096
|
+
:creation_time,
|
|
30097
|
+
:tags)
|
|
30098
|
+
SENSITIVE = []
|
|
30099
|
+
include Aws::Structure
|
|
30100
|
+
end
|
|
30101
|
+
|
|
29764
30102
|
# Information about a project.
|
|
29765
30103
|
#
|
|
29766
30104
|
# @!attribute [rw] project_name
|
|
@@ -30620,6 +30958,7 @@ module Aws::SageMaker
|
|
|
30620
30958
|
# sage_maker_image_arn: "ImageArn",
|
|
30621
30959
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
|
30622
30960
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
|
30961
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
|
30623
30962
|
# }
|
|
30624
30963
|
#
|
|
30625
30964
|
# @!attribute [rw] sage_maker_image_arn
|
|
@@ -30634,12 +30973,18 @@ module Aws::SageMaker
|
|
|
30634
30973
|
# The instance type that the image version runs on.
|
|
30635
30974
|
# @return [String]
|
|
30636
30975
|
#
|
|
30976
|
+
# @!attribute [rw] lifecycle_config_arn
|
|
30977
|
+
# The Amazon Resource Name (ARN) of the Lifecycle Configuration
|
|
30978
|
+
# attached to the Resource.
|
|
30979
|
+
# @return [String]
|
|
30980
|
+
#
|
|
30637
30981
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ResourceSpec AWS API Documentation
|
|
30638
30982
|
#
|
|
30639
30983
|
class ResourceSpec < Struct.new(
|
|
30640
30984
|
:sage_maker_image_arn,
|
|
30641
30985
|
:sage_maker_image_version_arn,
|
|
30642
|
-
:instance_type
|
|
30986
|
+
:instance_type,
|
|
30987
|
+
:lifecycle_config_arn)
|
|
30643
30988
|
SENSITIVE = []
|
|
30644
30989
|
include Aws::Structure
|
|
30645
30990
|
end
|
|
@@ -30669,6 +31014,48 @@ module Aws::SageMaker
|
|
|
30669
31014
|
include Aws::Structure
|
|
30670
31015
|
end
|
|
30671
31016
|
|
|
31017
|
+
# @note When making an API call, you may pass RetryPipelineExecutionRequest
|
|
31018
|
+
# data as a hash:
|
|
31019
|
+
#
|
|
31020
|
+
# {
|
|
31021
|
+
# pipeline_execution_arn: "PipelineExecutionArn", # required
|
|
31022
|
+
# client_request_token: "IdempotencyToken", # required
|
|
31023
|
+
# }
|
|
31024
|
+
#
|
|
31025
|
+
# @!attribute [rw] pipeline_execution_arn
|
|
31026
|
+
# The Amazon Resource Name (ARN) of the pipeline execution.
|
|
31027
|
+
# @return [String]
|
|
31028
|
+
#
|
|
31029
|
+
# @!attribute [rw] client_request_token
|
|
31030
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
31031
|
+
# idempotency of the operation. An idempotent operation completes no
|
|
31032
|
+
# more than once.
|
|
31033
|
+
#
|
|
31034
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
31035
|
+
# not need to pass this option.
|
|
31036
|
+
# @return [String]
|
|
31037
|
+
#
|
|
31038
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RetryPipelineExecutionRequest AWS API Documentation
|
|
31039
|
+
#
|
|
31040
|
+
class RetryPipelineExecutionRequest < Struct.new(
|
|
31041
|
+
:pipeline_execution_arn,
|
|
31042
|
+
:client_request_token)
|
|
31043
|
+
SENSITIVE = []
|
|
31044
|
+
include Aws::Structure
|
|
31045
|
+
end
|
|
31046
|
+
|
|
31047
|
+
# @!attribute [rw] pipeline_execution_arn
|
|
31048
|
+
# The Amazon Resource Name (ARN) of the pipeline execution.
|
|
31049
|
+
# @return [String]
|
|
31050
|
+
#
|
|
31051
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RetryPipelineExecutionResponse AWS API Documentation
|
|
31052
|
+
#
|
|
31053
|
+
class RetryPipelineExecutionResponse < Struct.new(
|
|
31054
|
+
:pipeline_execution_arn)
|
|
31055
|
+
SENSITIVE = []
|
|
31056
|
+
include Aws::Structure
|
|
31057
|
+
end
|
|
31058
|
+
|
|
30672
31059
|
# The retry strategy to use when a training job fails due to an
|
|
30673
31060
|
# `InternalServerError`. `RetryStrategy` is specified as part of the
|
|
30674
31061
|
# `CreateTrainingJob` and `CreateHyperParameterTuningJob` requests. You
|
|
@@ -31070,6 +31457,10 @@ module Aws::SageMaker
|
|
|
31070
31457
|
# composed of features and values per features.
|
|
31071
31458
|
# @return [Types::FeatureGroup]
|
|
31072
31459
|
#
|
|
31460
|
+
# @!attribute [rw] project
|
|
31461
|
+
# The properties of a project.
|
|
31462
|
+
# @return [Types::Project]
|
|
31463
|
+
#
|
|
31073
31464
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SearchRecord AWS API Documentation
|
|
31074
31465
|
#
|
|
31075
31466
|
class SearchRecord < Struct.new(
|
|
@@ -31082,7 +31473,8 @@ module Aws::SageMaker
|
|
|
31082
31473
|
:model_package_group,
|
|
31083
31474
|
:pipeline,
|
|
31084
31475
|
:pipeline_execution,
|
|
31085
|
-
:feature_group
|
|
31476
|
+
:feature_group,
|
|
31477
|
+
:project)
|
|
31086
31478
|
SENSITIVE = []
|
|
31087
31479
|
include Aws::Structure
|
|
31088
31480
|
end
|
|
@@ -31091,7 +31483,7 @@ module Aws::SageMaker
|
|
|
31091
31483
|
# data as a hash:
|
|
31092
31484
|
#
|
|
31093
31485
|
# {
|
|
31094
|
-
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup
|
|
31486
|
+
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, Project
|
|
31095
31487
|
# search_expression: {
|
|
31096
31488
|
# filters: [
|
|
31097
31489
|
# {
|
|
@@ -31460,7 +31852,7 @@ module Aws::SageMaker
|
|
|
31460
31852
|
end
|
|
31461
31853
|
|
|
31462
31854
|
# Details that you specify to provision a service catalog product. For
|
|
31463
|
-
# information about service catalog, see
|
|
31855
|
+
# information about service catalog, see [What is Amazon Web Services
|
|
31464
31856
|
# Service Catalog][1].
|
|
31465
31857
|
#
|
|
31466
31858
|
#
|
|
@@ -31768,7 +32160,7 @@ module Aws::SageMaker
|
|
|
31768
32160
|
# @!attribute [rw] client_request_token
|
|
31769
32161
|
# A unique, case-sensitive identifier that you provide to ensure the
|
|
31770
32162
|
# idempotency of the operation. An idempotent operation completes no
|
|
31771
|
-
# more than
|
|
32163
|
+
# more than once.
|
|
31772
32164
|
#
|
|
31773
32165
|
# **A suitable default value is auto-generated.** You should normally
|
|
31774
32166
|
# not need to pass this option.
|
|
@@ -31946,7 +32338,7 @@ module Aws::SageMaker
|
|
|
31946
32338
|
# @!attribute [rw] client_request_token
|
|
31947
32339
|
# A unique, case-sensitive identifier that you provide to ensure the
|
|
31948
32340
|
# idempotency of the operation. An idempotent operation completes no
|
|
31949
|
-
# more than
|
|
32341
|
+
# more than once.
|
|
31950
32342
|
#
|
|
31951
32343
|
# **A suitable default value is auto-generated.** You should normally
|
|
31952
32344
|
# not need to pass this option.
|
|
@@ -32099,6 +32491,41 @@ module Aws::SageMaker
|
|
|
32099
32491
|
include Aws::Structure
|
|
32100
32492
|
end
|
|
32101
32493
|
|
|
32494
|
+
# Details of the Studio Lifecycle Configuration.
|
|
32495
|
+
#
|
|
32496
|
+
# @!attribute [rw] studio_lifecycle_config_arn
|
|
32497
|
+
# The Amazon Resource Name (ARN) of the Lifecycle Configuration.
|
|
32498
|
+
# @return [String]
|
|
32499
|
+
#
|
|
32500
|
+
# @!attribute [rw] studio_lifecycle_config_name
|
|
32501
|
+
# The name of the Studio Lifecycle Configuration.
|
|
32502
|
+
# @return [String]
|
|
32503
|
+
#
|
|
32504
|
+
# @!attribute [rw] creation_time
|
|
32505
|
+
# The creation time of the Studio Lifecycle Configuration.
|
|
32506
|
+
# @return [Time]
|
|
32507
|
+
#
|
|
32508
|
+
# @!attribute [rw] last_modified_time
|
|
32509
|
+
# This value is equivalent to CreationTime because Studio Lifecycle
|
|
32510
|
+
# Configurations are immutable.
|
|
32511
|
+
# @return [Time]
|
|
32512
|
+
#
|
|
32513
|
+
# @!attribute [rw] studio_lifecycle_config_app_type
|
|
32514
|
+
# The App type to which the Lifecycle Configuration is attached.
|
|
32515
|
+
# @return [String]
|
|
32516
|
+
#
|
|
32517
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StudioLifecycleConfigDetails AWS API Documentation
|
|
32518
|
+
#
|
|
32519
|
+
class StudioLifecycleConfigDetails < Struct.new(
|
|
32520
|
+
:studio_lifecycle_config_arn,
|
|
32521
|
+
:studio_lifecycle_config_name,
|
|
32522
|
+
:creation_time,
|
|
32523
|
+
:last_modified_time,
|
|
32524
|
+
:studio_lifecycle_config_app_type)
|
|
32525
|
+
SENSITIVE = []
|
|
32526
|
+
include Aws::Structure
|
|
32527
|
+
end
|
|
32528
|
+
|
|
32102
32529
|
# Describes a work team of a vendor that does the a labelling job.
|
|
32103
32530
|
#
|
|
32104
32531
|
# @!attribute [rw] workteam_arn
|
|
@@ -32274,6 +32701,7 @@ module Aws::SageMaker
|
|
|
32274
32701
|
# sage_maker_image_arn: "ImageArn",
|
|
32275
32702
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
|
32276
32703
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
|
32704
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
|
32277
32705
|
# },
|
|
32278
32706
|
# }
|
|
32279
32707
|
#
|
|
@@ -33722,8 +34150,7 @@ module Aws::SageMaker
|
|
|
33722
34150
|
# @return [Time]
|
|
33723
34151
|
#
|
|
33724
34152
|
# @!attribute [rw] created_by
|
|
33725
|
-
#
|
|
33726
|
-
# trial, or trial component.
|
|
34153
|
+
# Who created the trial.
|
|
33727
34154
|
# @return [Types::UserContext]
|
|
33728
34155
|
#
|
|
33729
34156
|
# @!attribute [rw] last_modified_time
|
|
@@ -33732,7 +34159,7 @@ module Aws::SageMaker
|
|
|
33732
34159
|
#
|
|
33733
34160
|
# @!attribute [rw] last_modified_by
|
|
33734
34161
|
# Information about the user who created or modified an experiment,
|
|
33735
|
-
# trial,
|
|
34162
|
+
# trial, trial component, or project.
|
|
33736
34163
|
# @return [Types::UserContext]
|
|
33737
34164
|
#
|
|
33738
34165
|
# @!attribute [rw] metadata_properties
|
|
@@ -33806,8 +34233,7 @@ module Aws::SageMaker
|
|
|
33806
34233
|
# @return [Time]
|
|
33807
34234
|
#
|
|
33808
34235
|
# @!attribute [rw] created_by
|
|
33809
|
-
#
|
|
33810
|
-
# trial, or trial component.
|
|
34236
|
+
# Who created the trial component.
|
|
33811
34237
|
# @return [Types::UserContext]
|
|
33812
34238
|
#
|
|
33813
34239
|
# @!attribute [rw] last_modified_time
|
|
@@ -33816,7 +34242,7 @@ module Aws::SageMaker
|
|
|
33816
34242
|
#
|
|
33817
34243
|
# @!attribute [rw] last_modified_by
|
|
33818
34244
|
# Information about the user who created or modified an experiment,
|
|
33819
|
-
# trial,
|
|
34245
|
+
# trial, trial component, or project.
|
|
33820
34246
|
# @return [Types::UserContext]
|
|
33821
34247
|
#
|
|
33822
34248
|
# @!attribute [rw] parameters
|
|
@@ -34027,7 +34453,7 @@ module Aws::SageMaker
|
|
|
34027
34453
|
#
|
|
34028
34454
|
# @!attribute [rw] created_by
|
|
34029
34455
|
# Information about the user who created or modified an experiment,
|
|
34030
|
-
# trial,
|
|
34456
|
+
# trial, trial component, or project.
|
|
34031
34457
|
# @return [Types::UserContext]
|
|
34032
34458
|
#
|
|
34033
34459
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TrialComponentSimpleSummary AWS API Documentation
|
|
@@ -34167,7 +34593,7 @@ module Aws::SageMaker
|
|
|
34167
34593
|
# @return [Time]
|
|
34168
34594
|
#
|
|
34169
34595
|
# @!attribute [rw] created_by
|
|
34170
|
-
# Who created the component.
|
|
34596
|
+
# Who created the trial component.
|
|
34171
34597
|
# @return [Types::UserContext]
|
|
34172
34598
|
#
|
|
34173
34599
|
# @!attribute [rw] last_modified_time
|
|
@@ -34819,13 +35245,16 @@ module Aws::SageMaker
|
|
|
34819
35245
|
# sage_maker_image_arn: "ImageArn",
|
|
34820
35246
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
|
34821
35247
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
|
35248
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
|
34822
35249
|
# },
|
|
35250
|
+
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
|
34823
35251
|
# },
|
|
34824
35252
|
# kernel_gateway_app_settings: {
|
|
34825
35253
|
# default_resource_spec: {
|
|
34826
35254
|
# sage_maker_image_arn: "ImageArn",
|
|
34827
35255
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
|
34828
35256
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
|
35257
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
|
34829
35258
|
# },
|
|
34830
35259
|
# custom_images: [
|
|
34831
35260
|
# {
|
|
@@ -34834,12 +35263,14 @@ module Aws::SageMaker
|
|
|
34834
35263
|
# app_image_config_name: "AppImageConfigName", # required
|
|
34835
35264
|
# },
|
|
34836
35265
|
# ],
|
|
35266
|
+
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
|
34837
35267
|
# },
|
|
34838
35268
|
# tensor_board_app_settings: {
|
|
34839
35269
|
# default_resource_spec: {
|
|
34840
35270
|
# sage_maker_image_arn: "ImageArn",
|
|
34841
35271
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
|
34842
35272
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
|
35273
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
|
34843
35274
|
# },
|
|
34844
35275
|
# },
|
|
34845
35276
|
# },
|
|
@@ -35821,13 +36252,16 @@ module Aws::SageMaker
|
|
|
35821
36252
|
# sage_maker_image_arn: "ImageArn",
|
|
35822
36253
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
|
35823
36254
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
|
36255
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
|
35824
36256
|
# },
|
|
36257
|
+
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
|
35825
36258
|
# },
|
|
35826
36259
|
# kernel_gateway_app_settings: {
|
|
35827
36260
|
# default_resource_spec: {
|
|
35828
36261
|
# sage_maker_image_arn: "ImageArn",
|
|
35829
36262
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
|
35830
36263
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
|
36264
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
|
35831
36265
|
# },
|
|
35832
36266
|
# custom_images: [
|
|
35833
36267
|
# {
|
|
@@ -35836,12 +36270,14 @@ module Aws::SageMaker
|
|
|
35836
36270
|
# app_image_config_name: "AppImageConfigName", # required
|
|
35837
36271
|
# },
|
|
35838
36272
|
# ],
|
|
36273
|
+
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
|
35839
36274
|
# },
|
|
35840
36275
|
# tensor_board_app_settings: {
|
|
35841
36276
|
# default_resource_spec: {
|
|
35842
36277
|
# sage_maker_image_arn: "ImageArn",
|
|
35843
36278
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
|
35844
36279
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
|
36280
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
|
35845
36281
|
# },
|
|
35846
36282
|
# },
|
|
35847
36283
|
# },
|
|
@@ -36044,7 +36480,7 @@ module Aws::SageMaker
|
|
|
36044
36480
|
end
|
|
36045
36481
|
|
|
36046
36482
|
# Information about the user who created or modified an experiment,
|
|
36047
|
-
# trial,
|
|
36483
|
+
# trial, trial component, or project.
|
|
36048
36484
|
#
|
|
36049
36485
|
# @!attribute [rw] user_profile_arn
|
|
36050
36486
|
# The Amazon Resource Name (ARN) of the user's profile.
|
|
@@ -36128,13 +36564,16 @@ module Aws::SageMaker
|
|
|
36128
36564
|
# sage_maker_image_arn: "ImageArn",
|
|
36129
36565
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
|
36130
36566
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
|
36567
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
|
36131
36568
|
# },
|
|
36569
|
+
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
|
36132
36570
|
# },
|
|
36133
36571
|
# kernel_gateway_app_settings: {
|
|
36134
36572
|
# default_resource_spec: {
|
|
36135
36573
|
# sage_maker_image_arn: "ImageArn",
|
|
36136
36574
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
|
36137
36575
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
|
36576
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
|
36138
36577
|
# },
|
|
36139
36578
|
# custom_images: [
|
|
36140
36579
|
# {
|
|
@@ -36143,12 +36582,14 @@ module Aws::SageMaker
|
|
|
36143
36582
|
# app_image_config_name: "AppImageConfigName", # required
|
|
36144
36583
|
# },
|
|
36145
36584
|
# ],
|
|
36585
|
+
# lifecycle_config_arns: ["StudioLifecycleConfigArn"],
|
|
36146
36586
|
# },
|
|
36147
36587
|
# tensor_board_app_settings: {
|
|
36148
36588
|
# default_resource_spec: {
|
|
36149
36589
|
# sage_maker_image_arn: "ImageArn",
|
|
36150
36590
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
|
36151
36591
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
|
36592
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
|
36152
36593
|
# },
|
|
36153
36594
|
# },
|
|
36154
36595
|
# }
|