aws-sdk-sagemaker 1.73.0 → 1.74.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -202,6 +202,25 @@ module Aws::SageMaker
202
202
  include Aws::Structure
203
203
  end
204
204
 
205
+ # Edge Manager agent version.
206
+ #
207
+ # @!attribute [rw] version
208
+ # Version of the agent.
209
+ # @return [String]
210
+ #
211
+ # @!attribute [rw] agent_count
212
+ # The number of Edge Manager agents.
213
+ # @return [Integer]
214
+ #
215
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AgentVersion AWS API Documentation
216
+ #
217
+ class AgentVersion < Struct.new(
218
+ :version,
219
+ :agent_count)
220
+ SENSITIVE = []
221
+ include Aws::Structure
222
+ end
223
+
205
224
  # This API is not supported.
206
225
  #
207
226
  # @note When making an API call, you may pass Alarm
@@ -2753,7 +2772,7 @@ module Aws::SageMaker
2753
2772
  include Aws::Structure
2754
2773
  end
2755
2774
 
2756
- # Configuration information for tensor collections.
2775
+ # Configuration information for the Debugger output tensor collections.
2757
2776
  #
2758
2777
  # @note When making an API call, you may pass CollectionConfiguration
2759
2778
  # data as a hash:
@@ -4130,6 +4149,215 @@ module Aws::SageMaker
4130
4149
  include Aws::Structure
4131
4150
  end
4132
4151
 
4152
+ # @note When making an API call, you may pass CreateDataQualityJobDefinitionRequest
4153
+ # data as a hash:
4154
+ #
4155
+ # {
4156
+ # job_definition_name: "MonitoringJobDefinitionName", # required
4157
+ # data_quality_baseline_config: {
4158
+ # baselining_job_name: "ProcessingJobName",
4159
+ # constraints_resource: {
4160
+ # s3_uri: "S3Uri",
4161
+ # },
4162
+ # statistics_resource: {
4163
+ # s3_uri: "S3Uri",
4164
+ # },
4165
+ # },
4166
+ # data_quality_app_specification: { # required
4167
+ # image_uri: "ImageUri", # required
4168
+ # container_entrypoint: ["ContainerEntrypointString"],
4169
+ # container_arguments: ["ContainerArgument"],
4170
+ # record_preprocessor_source_uri: "S3Uri",
4171
+ # post_analytics_processor_source_uri: "S3Uri",
4172
+ # environment: {
4173
+ # "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
4174
+ # },
4175
+ # },
4176
+ # data_quality_job_input: { # required
4177
+ # endpoint_input: { # required
4178
+ # endpoint_name: "EndpointName", # required
4179
+ # local_path: "ProcessingLocalPath", # required
4180
+ # s3_input_mode: "Pipe", # accepts Pipe, File
4181
+ # s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
4182
+ # features_attribute: "String",
4183
+ # inference_attribute: "String",
4184
+ # probability_attribute: "String",
4185
+ # probability_threshold_attribute: 1.0,
4186
+ # start_time_offset: "MonitoringTimeOffsetString",
4187
+ # end_time_offset: "MonitoringTimeOffsetString",
4188
+ # },
4189
+ # },
4190
+ # data_quality_job_output_config: { # required
4191
+ # monitoring_outputs: [ # required
4192
+ # {
4193
+ # s3_output: { # required
4194
+ # s3_uri: "MonitoringS3Uri", # required
4195
+ # local_path: "ProcessingLocalPath", # required
4196
+ # s3_upload_mode: "Continuous", # accepts Continuous, EndOfJob
4197
+ # },
4198
+ # },
4199
+ # ],
4200
+ # kms_key_id: "KmsKeyId",
4201
+ # },
4202
+ # job_resources: { # required
4203
+ # cluster_config: { # required
4204
+ # instance_count: 1, # required
4205
+ # instance_type: "ml.t3.medium", # required, accepts ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
4206
+ # volume_size_in_gb: 1, # required
4207
+ # volume_kms_key_id: "KmsKeyId",
4208
+ # },
4209
+ # },
4210
+ # network_config: {
4211
+ # enable_inter_container_traffic_encryption: false,
4212
+ # enable_network_isolation: false,
4213
+ # vpc_config: {
4214
+ # security_group_ids: ["SecurityGroupId"], # required
4215
+ # subnets: ["SubnetId"], # required
4216
+ # },
4217
+ # },
4218
+ # role_arn: "RoleArn", # required
4219
+ # stopping_condition: {
4220
+ # max_runtime_in_seconds: 1, # required
4221
+ # },
4222
+ # tags: [
4223
+ # {
4224
+ # key: "TagKey", # required
4225
+ # value: "TagValue", # required
4226
+ # },
4227
+ # ],
4228
+ # }
4229
+ #
4230
+ # @!attribute [rw] job_definition_name
4231
+ # The name for the monitoring job definition.
4232
+ # @return [String]
4233
+ #
4234
+ # @!attribute [rw] data_quality_baseline_config
4235
+ # Configures the constraints and baselines for the monitoring job.
4236
+ # @return [Types::DataQualityBaselineConfig]
4237
+ #
4238
+ # @!attribute [rw] data_quality_app_specification
4239
+ # Specifies the container that runs the monitoring job.
4240
+ # @return [Types::DataQualityAppSpecification]
4241
+ #
4242
+ # @!attribute [rw] data_quality_job_input
4243
+ # A list of inputs for the monitoring job. Currently endpoints are
4244
+ # supported as monitoring inputs.
4245
+ # @return [Types::DataQualityJobInput]
4246
+ #
4247
+ # @!attribute [rw] data_quality_job_output_config
4248
+ # The output configuration for monitoring jobs.
4249
+ # @return [Types::MonitoringOutputConfig]
4250
+ #
4251
+ # @!attribute [rw] job_resources
4252
+ # Identifies the resources to deploy for a monitoring job.
4253
+ # @return [Types::MonitoringResources]
4254
+ #
4255
+ # @!attribute [rw] network_config
4256
+ # Specifies networking configuration for the monitoring job.
4257
+ # @return [Types::MonitoringNetworkConfig]
4258
+ #
4259
+ # @!attribute [rw] role_arn
4260
+ # The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
4261
+ # can assume to perform tasks on your behalf.
4262
+ # @return [String]
4263
+ #
4264
+ # @!attribute [rw] stopping_condition
4265
+ # A time limit for how long the monitoring job is allowed to run
4266
+ # before stopping.
4267
+ # @return [Types::MonitoringStoppingCondition]
4268
+ #
4269
+ # @!attribute [rw] tags
4270
+ # (Optional) An array of key-value pairs. For more information, see
4271
+ # [Using Cost Allocation Tags][1] in the *AWS Billing and Cost
4272
+ # Management User Guide*.
4273
+ #
4274
+ #
4275
+ #
4276
+ # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL
4277
+ # @return [Array<Types::Tag>]
4278
+ #
4279
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateDataQualityJobDefinitionRequest AWS API Documentation
4280
+ #
4281
+ class CreateDataQualityJobDefinitionRequest < Struct.new(
4282
+ :job_definition_name,
4283
+ :data_quality_baseline_config,
4284
+ :data_quality_app_specification,
4285
+ :data_quality_job_input,
4286
+ :data_quality_job_output_config,
4287
+ :job_resources,
4288
+ :network_config,
4289
+ :role_arn,
4290
+ :stopping_condition,
4291
+ :tags)
4292
+ SENSITIVE = []
4293
+ include Aws::Structure
4294
+ end
4295
+
4296
+ # @!attribute [rw] job_definition_arn
4297
+ # The Amazon Resource Name (ARN) of the job definition.
4298
+ # @return [String]
4299
+ #
4300
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateDataQualityJobDefinitionResponse AWS API Documentation
4301
+ #
4302
+ class CreateDataQualityJobDefinitionResponse < Struct.new(
4303
+ :job_definition_arn)
4304
+ SENSITIVE = []
4305
+ include Aws::Structure
4306
+ end
4307
+
4308
+ # @note When making an API call, you may pass CreateDeviceFleetRequest
4309
+ # data as a hash:
4310
+ #
4311
+ # {
4312
+ # device_fleet_name: "EntityName", # required
4313
+ # role_arn: "RoleArn",
4314
+ # description: "DeviceFleetDescription",
4315
+ # output_config: { # required
4316
+ # s3_output_location: "S3Uri", # required
4317
+ # kms_key_id: "KmsKeyId",
4318
+ # },
4319
+ # tags: [
4320
+ # {
4321
+ # key: "TagKey", # required
4322
+ # value: "TagValue", # required
4323
+ # },
4324
+ # ],
4325
+ # }
4326
+ #
4327
+ # @!attribute [rw] device_fleet_name
4328
+ # The name of the fleet that the device belongs to.
4329
+ # @return [String]
4330
+ #
4331
+ # @!attribute [rw] role_arn
4332
+ # The Amazon Resource Name (ARN) that has access to AWS Internet of
4333
+ # Things (IoT).
4334
+ # @return [String]
4335
+ #
4336
+ # @!attribute [rw] description
4337
+ # A description of the fleet.
4338
+ # @return [String]
4339
+ #
4340
+ # @!attribute [rw] output_config
4341
+ # The output configuration for storing sample data collected by the
4342
+ # fleet.
4343
+ # @return [Types::EdgeOutputConfig]
4344
+ #
4345
+ # @!attribute [rw] tags
4346
+ # Creates tags for the specified fleet.
4347
+ # @return [Array<Types::Tag>]
4348
+ #
4349
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateDeviceFleetRequest AWS API Documentation
4350
+ #
4351
+ class CreateDeviceFleetRequest < Struct.new(
4352
+ :device_fleet_name,
4353
+ :role_arn,
4354
+ :description,
4355
+ :output_config,
4356
+ :tags)
4357
+ SENSITIVE = []
4358
+ include Aws::Structure
4359
+ end
4360
+
4133
4361
  # @note When making an API call, you may pass CreateDomainRequest
4134
4362
  # data as a hash:
4135
4363
  #
@@ -4267,6 +4495,80 @@ module Aws::SageMaker
4267
4495
  include Aws::Structure
4268
4496
  end
4269
4497
 
4498
+ # @note When making an API call, you may pass CreateEdgePackagingJobRequest
4499
+ # data as a hash:
4500
+ #
4501
+ # {
4502
+ # edge_packaging_job_name: "EntityName", # required
4503
+ # compilation_job_name: "EntityName", # required
4504
+ # model_name: "EntityName", # required
4505
+ # model_version: "EdgeVersion", # required
4506
+ # role_arn: "RoleArn", # required
4507
+ # output_config: { # required
4508
+ # s3_output_location: "S3Uri", # required
4509
+ # kms_key_id: "KmsKeyId",
4510
+ # },
4511
+ # resource_key: "KmsKeyId",
4512
+ # tags: [
4513
+ # {
4514
+ # key: "TagKey", # required
4515
+ # value: "TagValue", # required
4516
+ # },
4517
+ # ],
4518
+ # }
4519
+ #
4520
+ # @!attribute [rw] edge_packaging_job_name
4521
+ # The name of the edge packaging job.
4522
+ # @return [String]
4523
+ #
4524
+ # @!attribute [rw] compilation_job_name
4525
+ # The name of the SageMaker Neo compilation job that will be used to
4526
+ # locate model artifacts for packaging.
4527
+ # @return [String]
4528
+ #
4529
+ # @!attribute [rw] model_name
4530
+ # The name of the model.
4531
+ # @return [String]
4532
+ #
4533
+ # @!attribute [rw] model_version
4534
+ # The version of the model.
4535
+ # @return [String]
4536
+ #
4537
+ # @!attribute [rw] role_arn
4538
+ # The Amazon Resource Name (ARN) of an IAM role that enables Amazon
4539
+ # SageMaker to download and upload the model, and to contact SageMaker
4540
+ # Neo.
4541
+ # @return [String]
4542
+ #
4543
+ # @!attribute [rw] output_config
4544
+ # Provides information about the output location for the packaged
4545
+ # model.
4546
+ # @return [Types::EdgeOutputConfig]
4547
+ #
4548
+ # @!attribute [rw] resource_key
4549
+ # The CMK to use when encrypting the EBS volume the edge packaging job
4550
+ # runs on.
4551
+ # @return [String]
4552
+ #
4553
+ # @!attribute [rw] tags
4554
+ # Creates tags for the packaging job.
4555
+ # @return [Array<Types::Tag>]
4556
+ #
4557
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateEdgePackagingJobRequest AWS API Documentation
4558
+ #
4559
+ class CreateEdgePackagingJobRequest < Struct.new(
4560
+ :edge_packaging_job_name,
4561
+ :compilation_job_name,
4562
+ :model_name,
4563
+ :model_version,
4564
+ :role_arn,
4565
+ :output_config,
4566
+ :resource_key,
4567
+ :tags)
4568
+ SENSITIVE = []
4569
+ include Aws::Structure
4570
+ end
4571
+
4270
4572
  # @note When making an API call, you may pass CreateEndpointConfigInput
4271
4573
  # data as a hash:
4272
4574
  #
@@ -5519,63 +5821,368 @@ module Aws::SageMaker
5519
5821
  include Aws::Structure
5520
5822
  end
5521
5823
 
5522
- # @note When making an API call, you may pass CreateModelInput
5824
+ # @note When making an API call, you may pass CreateModelBiasJobDefinitionRequest
5523
5825
  # data as a hash:
5524
5826
  #
5525
5827
  # {
5526
- # model_name: "ModelName", # required
5527
- # primary_container: {
5528
- # container_hostname: "ContainerHostname",
5529
- # image: "ContainerImage",
5530
- # image_config: {
5531
- # repository_access_mode: "Platform", # required, accepts Platform, Vpc
5828
+ # job_definition_name: "MonitoringJobDefinitionName", # required
5829
+ # model_bias_baseline_config: {
5830
+ # baselining_job_name: "ProcessingJobName",
5831
+ # constraints_resource: {
5832
+ # s3_uri: "S3Uri",
5532
5833
  # },
5533
- # mode: "SingleModel", # accepts SingleModel, MultiModel
5534
- # model_data_url: "Url",
5834
+ # },
5835
+ # model_bias_app_specification: { # required
5836
+ # image_uri: "ImageUri", # required
5837
+ # config_uri: "S3Uri", # required
5535
5838
  # environment: {
5536
- # "EnvironmentKey" => "EnvironmentValue",
5839
+ # "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
5537
5840
  # },
5538
- # model_package_name: "VersionedArnOrName",
5539
5841
  # },
5540
- # containers: [
5541
- # {
5542
- # container_hostname: "ContainerHostname",
5543
- # image: "ContainerImage",
5544
- # image_config: {
5545
- # repository_access_mode: "Platform", # required, accepts Platform, Vpc
5546
- # },
5547
- # mode: "SingleModel", # accepts SingleModel, MultiModel
5548
- # model_data_url: "Url",
5549
- # environment: {
5550
- # "EnvironmentKey" => "EnvironmentValue",
5551
- # },
5552
- # model_package_name: "VersionedArnOrName",
5842
+ # model_bias_job_input: { # required
5843
+ # endpoint_input: { # required
5844
+ # endpoint_name: "EndpointName", # required
5845
+ # local_path: "ProcessingLocalPath", # required
5846
+ # s3_input_mode: "Pipe", # accepts Pipe, File
5847
+ # s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
5848
+ # features_attribute: "String",
5849
+ # inference_attribute: "String",
5850
+ # probability_attribute: "String",
5851
+ # probability_threshold_attribute: 1.0,
5852
+ # start_time_offset: "MonitoringTimeOffsetString",
5853
+ # end_time_offset: "MonitoringTimeOffsetString",
5553
5854
  # },
5554
- # ],
5555
- # execution_role_arn: "RoleArn", # required
5556
- # tags: [
5557
- # {
5558
- # key: "TagKey", # required
5559
- # value: "TagValue", # required
5855
+ # ground_truth_s3_input: { # required
5856
+ # s3_uri: "MonitoringS3Uri",
5560
5857
  # },
5561
- # ],
5562
- # vpc_config: {
5563
- # security_group_ids: ["SecurityGroupId"], # required
5564
- # subnets: ["SubnetId"], # required
5565
5858
  # },
5566
- # enable_network_isolation: false,
5567
- # }
5568
- #
5569
- # @!attribute [rw] model_name
5570
- # The name of the new model.
5571
- # @return [String]
5572
- #
5573
- # @!attribute [rw] primary_container
5574
- # The location of the primary docker image containing inference code,
5575
- # associated artifacts, and custom environment map that the inference
5576
- # code uses when the model is deployed for predictions.
5577
- # @return [Types::ContainerDefinition]
5578
- #
5859
+ # model_bias_job_output_config: { # required
5860
+ # monitoring_outputs: [ # required
5861
+ # {
5862
+ # s3_output: { # required
5863
+ # s3_uri: "MonitoringS3Uri", # required
5864
+ # local_path: "ProcessingLocalPath", # required
5865
+ # s3_upload_mode: "Continuous", # accepts Continuous, EndOfJob
5866
+ # },
5867
+ # },
5868
+ # ],
5869
+ # kms_key_id: "KmsKeyId",
5870
+ # },
5871
+ # job_resources: { # required
5872
+ # cluster_config: { # required
5873
+ # instance_count: 1, # required
5874
+ # instance_type: "ml.t3.medium", # required, accepts ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
5875
+ # volume_size_in_gb: 1, # required
5876
+ # volume_kms_key_id: "KmsKeyId",
5877
+ # },
5878
+ # },
5879
+ # network_config: {
5880
+ # enable_inter_container_traffic_encryption: false,
5881
+ # enable_network_isolation: false,
5882
+ # vpc_config: {
5883
+ # security_group_ids: ["SecurityGroupId"], # required
5884
+ # subnets: ["SubnetId"], # required
5885
+ # },
5886
+ # },
5887
+ # role_arn: "RoleArn", # required
5888
+ # stopping_condition: {
5889
+ # max_runtime_in_seconds: 1, # required
5890
+ # },
5891
+ # tags: [
5892
+ # {
5893
+ # key: "TagKey", # required
5894
+ # value: "TagValue", # required
5895
+ # },
5896
+ # ],
5897
+ # }
5898
+ #
5899
+ # @!attribute [rw] job_definition_name
5900
+ # The name of the bias job definition. The name must be unique within
5901
+ # an AWS Region in the AWS account.
5902
+ # @return [String]
5903
+ #
5904
+ # @!attribute [rw] model_bias_baseline_config
5905
+ # The baseline configuration for a model bias job.
5906
+ # @return [Types::ModelBiasBaselineConfig]
5907
+ #
5908
+ # @!attribute [rw] model_bias_app_specification
5909
+ # Configures the model bias job to run a specified Docker container
5910
+ # image.
5911
+ # @return [Types::ModelBiasAppSpecification]
5912
+ #
5913
+ # @!attribute [rw] model_bias_job_input
5914
+ # Inputs for the model bias job.
5915
+ # @return [Types::ModelBiasJobInput]
5916
+ #
5917
+ # @!attribute [rw] model_bias_job_output_config
5918
+ # The output configuration for monitoring jobs.
5919
+ # @return [Types::MonitoringOutputConfig]
5920
+ #
5921
+ # @!attribute [rw] job_resources
5922
+ # Identifies the resources to deploy for a monitoring job.
5923
+ # @return [Types::MonitoringResources]
5924
+ #
5925
+ # @!attribute [rw] network_config
5926
+ # Networking options for a model bias job.
5927
+ # @return [Types::MonitoringNetworkConfig]
5928
+ #
5929
+ # @!attribute [rw] role_arn
5930
+ # The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
5931
+ # can assume to perform tasks on your behalf.
5932
+ # @return [String]
5933
+ #
5934
+ # @!attribute [rw] stopping_condition
5935
+ # A time limit for how long the monitoring job is allowed to run
5936
+ # before stopping.
5937
+ # @return [Types::MonitoringStoppingCondition]
5938
+ #
5939
+ # @!attribute [rw] tags
5940
+ # (Optional) An array of key-value pairs. For more information, see
5941
+ # [Using Cost Allocation Tags][1] in the *AWS Billing and Cost
5942
+ # Management User Guide*.
5943
+ #
5944
+ #
5945
+ #
5946
+ # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL
5947
+ # @return [Array<Types::Tag>]
5948
+ #
5949
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelBiasJobDefinitionRequest AWS API Documentation
5950
+ #
5951
+ class CreateModelBiasJobDefinitionRequest < Struct.new(
5952
+ :job_definition_name,
5953
+ :model_bias_baseline_config,
5954
+ :model_bias_app_specification,
5955
+ :model_bias_job_input,
5956
+ :model_bias_job_output_config,
5957
+ :job_resources,
5958
+ :network_config,
5959
+ :role_arn,
5960
+ :stopping_condition,
5961
+ :tags)
5962
+ SENSITIVE = []
5963
+ include Aws::Structure
5964
+ end
5965
+
5966
+ # @!attribute [rw] job_definition_arn
5967
+ # The Amazon Resource Name (ARN) of the model bias job.
5968
+ # @return [String]
5969
+ #
5970
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelBiasJobDefinitionResponse AWS API Documentation
5971
+ #
5972
+ class CreateModelBiasJobDefinitionResponse < Struct.new(
5973
+ :job_definition_arn)
5974
+ SENSITIVE = []
5975
+ include Aws::Structure
5976
+ end
5977
+
5978
+ # @note When making an API call, you may pass CreateModelExplainabilityJobDefinitionRequest
5979
+ # data as a hash:
5980
+ #
5981
+ # {
5982
+ # job_definition_name: "MonitoringJobDefinitionName", # required
5983
+ # model_explainability_baseline_config: {
5984
+ # baselining_job_name: "ProcessingJobName",
5985
+ # constraints_resource: {
5986
+ # s3_uri: "S3Uri",
5987
+ # },
5988
+ # },
5989
+ # model_explainability_app_specification: { # required
5990
+ # image_uri: "ImageUri", # required
5991
+ # config_uri: "S3Uri", # required
5992
+ # environment: {
5993
+ # "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
5994
+ # },
5995
+ # },
5996
+ # model_explainability_job_input: { # required
5997
+ # endpoint_input: { # required
5998
+ # endpoint_name: "EndpointName", # required
5999
+ # local_path: "ProcessingLocalPath", # required
6000
+ # s3_input_mode: "Pipe", # accepts Pipe, File
6001
+ # s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
6002
+ # features_attribute: "String",
6003
+ # inference_attribute: "String",
6004
+ # probability_attribute: "String",
6005
+ # probability_threshold_attribute: 1.0,
6006
+ # start_time_offset: "MonitoringTimeOffsetString",
6007
+ # end_time_offset: "MonitoringTimeOffsetString",
6008
+ # },
6009
+ # },
6010
+ # model_explainability_job_output_config: { # required
6011
+ # monitoring_outputs: [ # required
6012
+ # {
6013
+ # s3_output: { # required
6014
+ # s3_uri: "MonitoringS3Uri", # required
6015
+ # local_path: "ProcessingLocalPath", # required
6016
+ # s3_upload_mode: "Continuous", # accepts Continuous, EndOfJob
6017
+ # },
6018
+ # },
6019
+ # ],
6020
+ # kms_key_id: "KmsKeyId",
6021
+ # },
6022
+ # job_resources: { # required
6023
+ # cluster_config: { # required
6024
+ # instance_count: 1, # required
6025
+ # instance_type: "ml.t3.medium", # required, accepts ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
6026
+ # volume_size_in_gb: 1, # required
6027
+ # volume_kms_key_id: "KmsKeyId",
6028
+ # },
6029
+ # },
6030
+ # network_config: {
6031
+ # enable_inter_container_traffic_encryption: false,
6032
+ # enable_network_isolation: false,
6033
+ # vpc_config: {
6034
+ # security_group_ids: ["SecurityGroupId"], # required
6035
+ # subnets: ["SubnetId"], # required
6036
+ # },
6037
+ # },
6038
+ # role_arn: "RoleArn", # required
6039
+ # stopping_condition: {
6040
+ # max_runtime_in_seconds: 1, # required
6041
+ # },
6042
+ # tags: [
6043
+ # {
6044
+ # key: "TagKey", # required
6045
+ # value: "TagValue", # required
6046
+ # },
6047
+ # ],
6048
+ # }
6049
+ #
6050
+ # @!attribute [rw] job_definition_name
6051
+ # The name of the model explainability job definition. The name must
6052
+ # be unique within an AWS Region in the AWS account.
6053
+ # @return [String]
6054
+ #
6055
+ # @!attribute [rw] model_explainability_baseline_config
6056
+ # The baseline configuration for a model explainability job.
6057
+ # @return [Types::ModelExplainabilityBaselineConfig]
6058
+ #
6059
+ # @!attribute [rw] model_explainability_app_specification
6060
+ # Configures the model explainability job to run a specified Docker
6061
+ # container image.
6062
+ # @return [Types::ModelExplainabilityAppSpecification]
6063
+ #
6064
+ # @!attribute [rw] model_explainability_job_input
6065
+ # Inputs for the model explainability job.
6066
+ # @return [Types::ModelExplainabilityJobInput]
6067
+ #
6068
+ # @!attribute [rw] model_explainability_job_output_config
6069
+ # The output configuration for monitoring jobs.
6070
+ # @return [Types::MonitoringOutputConfig]
6071
+ #
6072
+ # @!attribute [rw] job_resources
6073
+ # Identifies the resources to deploy for a monitoring job.
6074
+ # @return [Types::MonitoringResources]
6075
+ #
6076
+ # @!attribute [rw] network_config
6077
+ # Networking options for a model explainability job.
6078
+ # @return [Types::MonitoringNetworkConfig]
6079
+ #
6080
+ # @!attribute [rw] role_arn
6081
+ # The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
6082
+ # can assume to perform tasks on your behalf.
6083
+ # @return [String]
6084
+ #
6085
+ # @!attribute [rw] stopping_condition
6086
+ # A time limit for how long the monitoring job is allowed to run
6087
+ # before stopping.
6088
+ # @return [Types::MonitoringStoppingCondition]
6089
+ #
6090
+ # @!attribute [rw] tags
6091
+ # (Optional) An array of key-value pairs. For more information, see
6092
+ # [Using Cost Allocation Tags][1] in the *AWS Billing and Cost
6093
+ # Management User Guide*.
6094
+ #
6095
+ #
6096
+ #
6097
+ # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL
6098
+ # @return [Array<Types::Tag>]
6099
+ #
6100
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelExplainabilityJobDefinitionRequest AWS API Documentation
6101
+ #
6102
+ class CreateModelExplainabilityJobDefinitionRequest < Struct.new(
6103
+ :job_definition_name,
6104
+ :model_explainability_baseline_config,
6105
+ :model_explainability_app_specification,
6106
+ :model_explainability_job_input,
6107
+ :model_explainability_job_output_config,
6108
+ :job_resources,
6109
+ :network_config,
6110
+ :role_arn,
6111
+ :stopping_condition,
6112
+ :tags)
6113
+ SENSITIVE = []
6114
+ include Aws::Structure
6115
+ end
6116
+
6117
+ # @!attribute [rw] job_definition_arn
6118
+ # The Amazon Resource Name (ARN) of the model explainability job.
6119
+ # @return [String]
6120
+ #
6121
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelExplainabilityJobDefinitionResponse AWS API Documentation
6122
+ #
6123
+ class CreateModelExplainabilityJobDefinitionResponse < Struct.new(
6124
+ :job_definition_arn)
6125
+ SENSITIVE = []
6126
+ include Aws::Structure
6127
+ end
6128
+
6129
+ # @note When making an API call, you may pass CreateModelInput
6130
+ # data as a hash:
6131
+ #
6132
+ # {
6133
+ # model_name: "ModelName", # required
6134
+ # primary_container: {
6135
+ # container_hostname: "ContainerHostname",
6136
+ # image: "ContainerImage",
6137
+ # image_config: {
6138
+ # repository_access_mode: "Platform", # required, accepts Platform, Vpc
6139
+ # },
6140
+ # mode: "SingleModel", # accepts SingleModel, MultiModel
6141
+ # model_data_url: "Url",
6142
+ # environment: {
6143
+ # "EnvironmentKey" => "EnvironmentValue",
6144
+ # },
6145
+ # model_package_name: "VersionedArnOrName",
6146
+ # },
6147
+ # containers: [
6148
+ # {
6149
+ # container_hostname: "ContainerHostname",
6150
+ # image: "ContainerImage",
6151
+ # image_config: {
6152
+ # repository_access_mode: "Platform", # required, accepts Platform, Vpc
6153
+ # },
6154
+ # mode: "SingleModel", # accepts SingleModel, MultiModel
6155
+ # model_data_url: "Url",
6156
+ # environment: {
6157
+ # "EnvironmentKey" => "EnvironmentValue",
6158
+ # },
6159
+ # model_package_name: "VersionedArnOrName",
6160
+ # },
6161
+ # ],
6162
+ # execution_role_arn: "RoleArn", # required
6163
+ # tags: [
6164
+ # {
6165
+ # key: "TagKey", # required
6166
+ # value: "TagValue", # required
6167
+ # },
6168
+ # ],
6169
+ # vpc_config: {
6170
+ # security_group_ids: ["SecurityGroupId"], # required
6171
+ # subnets: ["SubnetId"], # required
6172
+ # },
6173
+ # enable_network_isolation: false,
6174
+ # }
6175
+ #
6176
+ # @!attribute [rw] model_name
6177
+ # The name of the new model.
6178
+ # @return [String]
6179
+ #
6180
+ # @!attribute [rw] primary_container
6181
+ # The location of the primary docker image containing inference code,
6182
+ # associated artifacts, and custom environment map that the inference
6183
+ # code uses when the model is deployed for predictions.
6184
+ # @return [Types::ContainerDefinition]
6185
+ #
5579
6186
  # @!attribute [rw] containers
5580
6187
  # Specifies the containers in the inference pipeline.
5581
6188
  # @return [Array<Types::ContainerDefinition>]
@@ -5949,6 +6556,163 @@ module Aws::SageMaker
5949
6556
  include Aws::Structure
5950
6557
  end
5951
6558
 
6559
+ # @note When making an API call, you may pass CreateModelQualityJobDefinitionRequest
6560
+ # data as a hash:
6561
+ #
6562
+ # {
6563
+ # job_definition_name: "MonitoringJobDefinitionName", # required
6564
+ # model_quality_baseline_config: {
6565
+ # baselining_job_name: "ProcessingJobName",
6566
+ # constraints_resource: {
6567
+ # s3_uri: "S3Uri",
6568
+ # },
6569
+ # },
6570
+ # model_quality_app_specification: { # required
6571
+ # image_uri: "ImageUri", # required
6572
+ # container_entrypoint: ["ContainerEntrypointString"],
6573
+ # container_arguments: ["ContainerArgument"],
6574
+ # record_preprocessor_source_uri: "S3Uri",
6575
+ # post_analytics_processor_source_uri: "S3Uri",
6576
+ # problem_type: "BinaryClassification", # accepts BinaryClassification, MulticlassClassification, Regression
6577
+ # environment: {
6578
+ # "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
6579
+ # },
6580
+ # },
6581
+ # model_quality_job_input: { # required
6582
+ # endpoint_input: { # required
6583
+ # endpoint_name: "EndpointName", # required
6584
+ # local_path: "ProcessingLocalPath", # required
6585
+ # s3_input_mode: "Pipe", # accepts Pipe, File
6586
+ # s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
6587
+ # features_attribute: "String",
6588
+ # inference_attribute: "String",
6589
+ # probability_attribute: "String",
6590
+ # probability_threshold_attribute: 1.0,
6591
+ # start_time_offset: "MonitoringTimeOffsetString",
6592
+ # end_time_offset: "MonitoringTimeOffsetString",
6593
+ # },
6594
+ # ground_truth_s3_input: { # required
6595
+ # s3_uri: "MonitoringS3Uri",
6596
+ # },
6597
+ # },
6598
+ # model_quality_job_output_config: { # required
6599
+ # monitoring_outputs: [ # required
6600
+ # {
6601
+ # s3_output: { # required
6602
+ # s3_uri: "MonitoringS3Uri", # required
6603
+ # local_path: "ProcessingLocalPath", # required
6604
+ # s3_upload_mode: "Continuous", # accepts Continuous, EndOfJob
6605
+ # },
6606
+ # },
6607
+ # ],
6608
+ # kms_key_id: "KmsKeyId",
6609
+ # },
6610
+ # job_resources: { # required
6611
+ # cluster_config: { # required
6612
+ # instance_count: 1, # required
6613
+ # instance_type: "ml.t3.medium", # required, accepts ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
6614
+ # volume_size_in_gb: 1, # required
6615
+ # volume_kms_key_id: "KmsKeyId",
6616
+ # },
6617
+ # },
6618
+ # network_config: {
6619
+ # enable_inter_container_traffic_encryption: false,
6620
+ # enable_network_isolation: false,
6621
+ # vpc_config: {
6622
+ # security_group_ids: ["SecurityGroupId"], # required
6623
+ # subnets: ["SubnetId"], # required
6624
+ # },
6625
+ # },
6626
+ # role_arn: "RoleArn", # required
6627
+ # stopping_condition: {
6628
+ # max_runtime_in_seconds: 1, # required
6629
+ # },
6630
+ # tags: [
6631
+ # {
6632
+ # key: "TagKey", # required
6633
+ # value: "TagValue", # required
6634
+ # },
6635
+ # ],
6636
+ # }
6637
+ #
6638
+ # @!attribute [rw] job_definition_name
6639
+ # The name of the monitoring job definition.
6640
+ # @return [String]
6641
+ #
6642
+ # @!attribute [rw] model_quality_baseline_config
6643
+ # Specifies the constraints and baselines for the monitoring job.
6644
+ # @return [Types::ModelQualityBaselineConfig]
6645
+ #
6646
+ # @!attribute [rw] model_quality_app_specification
6647
+ # The container that runs the monitoring job.
6648
+ # @return [Types::ModelQualityAppSpecification]
6649
+ #
6650
+ # @!attribute [rw] model_quality_job_input
6651
+ # A list of the inputs that are monitored. Currently endpoints are
6652
+ # supported.
6653
+ # @return [Types::ModelQualityJobInput]
6654
+ #
6655
+ # @!attribute [rw] model_quality_job_output_config
6656
+ # The output configuration for monitoring jobs.
6657
+ # @return [Types::MonitoringOutputConfig]
6658
+ #
6659
+ # @!attribute [rw] job_resources
6660
+ # Identifies the resources to deploy for a monitoring job.
6661
+ # @return [Types::MonitoringResources]
6662
+ #
6663
+ # @!attribute [rw] network_config
6664
+ # Specifies the network configuration for the monitoring job.
6665
+ # @return [Types::MonitoringNetworkConfig]
6666
+ #
6667
+ # @!attribute [rw] role_arn
6668
+ # The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
6669
+ # can assume to perform tasks on your behalf.
6670
+ # @return [String]
6671
+ #
6672
+ # @!attribute [rw] stopping_condition
6673
+ # A time limit for how long the monitoring job is allowed to run
6674
+ # before stopping.
6675
+ # @return [Types::MonitoringStoppingCondition]
6676
+ #
6677
+ # @!attribute [rw] tags
6678
+ # (Optional) An array of key-value pairs. For more information, see
6679
+ # [Using Cost Allocation Tags][1] in the *AWS Billing and Cost
6680
+ # Management User Guide*.
6681
+ #
6682
+ #
6683
+ #
6684
+ # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL
6685
+ # @return [Array<Types::Tag>]
6686
+ #
6687
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelQualityJobDefinitionRequest AWS API Documentation
6688
+ #
6689
+ class CreateModelQualityJobDefinitionRequest < Struct.new(
6690
+ :job_definition_name,
6691
+ :model_quality_baseline_config,
6692
+ :model_quality_app_specification,
6693
+ :model_quality_job_input,
6694
+ :model_quality_job_output_config,
6695
+ :job_resources,
6696
+ :network_config,
6697
+ :role_arn,
6698
+ :stopping_condition,
6699
+ :tags)
6700
+ SENSITIVE = []
6701
+ include Aws::Structure
6702
+ end
6703
+
6704
+ # @!attribute [rw] job_definition_arn
6705
+ # The Amazon Resource Name (ARN) of the model quality monitoring job.
6706
+ # @return [String]
6707
+ #
6708
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelQualityJobDefinitionResponse AWS API Documentation
6709
+ #
6710
+ class CreateModelQualityJobDefinitionResponse < Struct.new(
6711
+ :job_definition_arn)
6712
+ SENSITIVE = []
6713
+ include Aws::Structure
6714
+ end
6715
+
5952
6716
  # @note When making an API call, you may pass CreateMonitoringScheduleRequest
5953
6717
  # data as a hash:
5954
6718
  #
@@ -5960,6 +6724,7 @@ module Aws::SageMaker
5960
6724
  # },
5961
6725
  # monitoring_job_definition: {
5962
6726
  # baseline_config: {
6727
+ # baselining_job_name: "ProcessingJobName",
5963
6728
  # constraints_resource: {
5964
6729
  # s3_uri: "S3Uri",
5965
6730
  # },
@@ -5974,6 +6739,12 @@ module Aws::SageMaker
5974
6739
  # local_path: "ProcessingLocalPath", # required
5975
6740
  # s3_input_mode: "Pipe", # accepts Pipe, File
5976
6741
  # s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
6742
+ # features_attribute: "String",
6743
+ # inference_attribute: "String",
6744
+ # probability_attribute: "String",
6745
+ # probability_threshold_attribute: 1.0,
6746
+ # start_time_offset: "MonitoringTimeOffsetString",
6747
+ # end_time_offset: "MonitoringTimeOffsetString",
5977
6748
  # },
5978
6749
  # },
5979
6750
  # ],
@@ -6020,6 +6791,8 @@ module Aws::SageMaker
6020
6791
  # },
6021
6792
  # role_arn: "RoleArn", # required
6022
6793
  # },
6794
+ # monitoring_job_definition_name: "MonitoringJobDefinitionName",
6795
+ # monitoring_type: "DataQuality", # accepts DataQuality, ModelQuality, ModelBias, ModelExplainability
6023
6796
  # },
6024
6797
  # tags: [
6025
6798
  # {
@@ -6871,6 +7644,26 @@ module Aws::SageMaker
6871
7644
  # trial_name: "ExperimentEntityName",
6872
7645
  # trial_component_display_name: "ExperimentEntityName",
6873
7646
  # },
7647
+ # profiler_config: {
7648
+ # s3_output_path: "S3Uri", # required
7649
+ # profiling_interval_in_milliseconds: 1,
7650
+ # profiling_parameters: {
7651
+ # "ConfigKey" => "ConfigValue",
7652
+ # },
7653
+ # },
7654
+ # profiler_rule_configurations: [
7655
+ # {
7656
+ # rule_configuration_name: "RuleConfigurationName", # required
7657
+ # local_path: "DirectoryPath",
7658
+ # s3_output_path: "S3Uri",
7659
+ # rule_evaluator_image: "AlgorithmImage", # required
7660
+ # instance_type: "ml.t3.medium", # accepts ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
7661
+ # volume_size_in_gb: 1,
7662
+ # rule_parameters: {
7663
+ # "ConfigKey" => "ConfigValue",
7664
+ # },
7665
+ # },
7666
+ # ],
6874
7667
  # }
6875
7668
  #
6876
7669
  # @!attribute [rw] training_job_name
@@ -7042,16 +7835,25 @@ module Aws::SageMaker
7042
7835
  # @return [Types::CheckpointConfig]
7043
7836
  #
7044
7837
  # @!attribute [rw] debug_hook_config
7045
- # Configuration information for the debug hook parameters, collection
7046
- # configuration, and storage paths.
7838
+ # Configuration information for the Debugger hook parameters, metric
7839
+ # and tensor collections, and storage paths. To learn more about how
7840
+ # to configure the `DebugHookConfig` parameter, see [Use the SageMaker
7841
+ # and Debugger Configuration API Operations to Create, Update, and
7842
+ # Debug Your Training Job][1].
7843
+ #
7844
+ #
7845
+ #
7846
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/debugger-createtrainingjob-api.html
7047
7847
  # @return [Types::DebugHookConfig]
7048
7848
  #
7049
7849
  # @!attribute [rw] debug_rule_configurations
7050
- # Configuration information for debugging rules.
7850
+ # Configuration information for Debugger rules for debugging output
7851
+ # tensors.
7051
7852
  # @return [Array<Types::DebugRuleConfiguration>]
7052
7853
  #
7053
7854
  # @!attribute [rw] tensor_board_output_config
7054
- # Configuration of storage locations for TensorBoard output.
7855
+ # Configuration of storage locations for the Debugger TensorBoard
7856
+ # output data.
7055
7857
  # @return [Types::TensorBoardOutputConfig]
7056
7858
  #
7057
7859
  # @!attribute [rw] experiment_config
@@ -7065,6 +7867,16 @@ module Aws::SageMaker
7065
7867
  # * CreateTransformJob
7066
7868
  # @return [Types::ExperimentConfig]
7067
7869
  #
7870
+ # @!attribute [rw] profiler_config
7871
+ # Configuration information for Debugger system monitoring, framework
7872
+ # profiling, and storage paths.
7873
+ # @return [Types::ProfilerConfig]
7874
+ #
7875
+ # @!attribute [rw] profiler_rule_configurations
7876
+ # Configuration information for Debugger rules for profiling system
7877
+ # and framework metrics.
7878
+ # @return [Array<Types::ProfilerRuleConfiguration>]
7879
+ #
7068
7880
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateTrainingJobRequest AWS API Documentation
7069
7881
  #
7070
7882
  class CreateTrainingJobRequest < Struct.new(
@@ -7085,7 +7897,9 @@ module Aws::SageMaker
7085
7897
  :debug_hook_config,
7086
7898
  :debug_rule_configurations,
7087
7899
  :tensor_board_output_config,
7088
- :experiment_config)
7900
+ :experiment_config,
7901
+ :profiler_config,
7902
+ :profiler_rule_configurations)
7089
7903
  SENSITIVE = []
7090
7904
  include Aws::Structure
7091
7905
  end
@@ -8039,18 +8853,152 @@ module Aws::SageMaker
8039
8853
  # file, and the input data is stored under the `SageMakerInput` key
8040
8854
  # and the results are stored in `SageMakerOutput`.
8041
8855
  #
8042
- # For CSV files, Amazon SageMaker combines the transformed data with
8043
- # the input data at the end of the input data and stores it in the
8044
- # output file. The joined data has the joined input data followed by
8045
- # the transformed data and the output is a CSV file.
8046
- # @return [String]
8856
+ # For CSV files, Amazon SageMaker combines the transformed data with
8857
+ # the input data at the end of the input data and stores it in the
8858
+ # output file. The joined data has the joined input data followed by
8859
+ # the transformed data and the output is a CSV file.
8860
+ # @return [String]
8861
+ #
8862
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DataProcessing AWS API Documentation
8863
+ #
8864
+ class DataProcessing < Struct.new(
8865
+ :input_filter,
8866
+ :output_filter,
8867
+ :join_source)
8868
+ SENSITIVE = []
8869
+ include Aws::Structure
8870
+ end
8871
+
8872
+ # Information about the container that a data quality monitoring job
8873
+ # runs.
8874
+ #
8875
+ # @note When making an API call, you may pass DataQualityAppSpecification
8876
+ # data as a hash:
8877
+ #
8878
+ # {
8879
+ # image_uri: "ImageUri", # required
8880
+ # container_entrypoint: ["ContainerEntrypointString"],
8881
+ # container_arguments: ["ContainerArgument"],
8882
+ # record_preprocessor_source_uri: "S3Uri",
8883
+ # post_analytics_processor_source_uri: "S3Uri",
8884
+ # environment: {
8885
+ # "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
8886
+ # },
8887
+ # }
8888
+ #
8889
+ # @!attribute [rw] image_uri
8890
+ # The container image that the data quality monitoring job runs.
8891
+ # @return [String]
8892
+ #
8893
+ # @!attribute [rw] container_entrypoint
8894
+ # The entrypoint for a container used to run a monitoring job.
8895
+ # @return [Array<String>]
8896
+ #
8897
+ # @!attribute [rw] container_arguments
8898
+ # The arguments to send to the container that the monitoring job runs.
8899
+ # @return [Array<String>]
8900
+ #
8901
+ # @!attribute [rw] record_preprocessor_source_uri
8902
+ # An Amazon S3 URI to a script that is called per row prior to running
8903
+ # analysis. It can base64 decode the payload and convert it into a
8904
+ # flatted json so that the built-in container can use the converted
8905
+ # data. Applicable only for the built-in (first party) containers.
8906
+ # @return [String]
8907
+ #
8908
+ # @!attribute [rw] post_analytics_processor_source_uri
8909
+ # An Amazon S3 URI to a script that is called after analysis has been
8910
+ # performed. Applicable only for the built-in (first party)
8911
+ # containers.
8912
+ # @return [String]
8913
+ #
8914
+ # @!attribute [rw] environment
8915
+ # Sets the environment variables in the container that the monitoring
8916
+ # job runs.
8917
+ # @return [Hash<String,String>]
8918
+ #
8919
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DataQualityAppSpecification AWS API Documentation
8920
+ #
8921
+ class DataQualityAppSpecification < Struct.new(
8922
+ :image_uri,
8923
+ :container_entrypoint,
8924
+ :container_arguments,
8925
+ :record_preprocessor_source_uri,
8926
+ :post_analytics_processor_source_uri,
8927
+ :environment)
8928
+ SENSITIVE = []
8929
+ include Aws::Structure
8930
+ end
8931
+
8932
+ # Configuration for monitoring constraints and monitoring statistics.
8933
+ # These baseline resources are compared against the results of the
8934
+ # current job from the series of jobs scheduled to collect data
8935
+ # periodically.
8936
+ #
8937
+ # @note When making an API call, you may pass DataQualityBaselineConfig
8938
+ # data as a hash:
8939
+ #
8940
+ # {
8941
+ # baselining_job_name: "ProcessingJobName",
8942
+ # constraints_resource: {
8943
+ # s3_uri: "S3Uri",
8944
+ # },
8945
+ # statistics_resource: {
8946
+ # s3_uri: "S3Uri",
8947
+ # },
8948
+ # }
8949
+ #
8950
+ # @!attribute [rw] baselining_job_name
8951
+ # The name of the job that performs baselining for the data quality
8952
+ # monitoring job.
8953
+ # @return [String]
8954
+ #
8955
+ # @!attribute [rw] constraints_resource
8956
+ # The constraints resource for a monitoring job.
8957
+ # @return [Types::MonitoringConstraintsResource]
8958
+ #
8959
+ # @!attribute [rw] statistics_resource
8960
+ # The statistics resource for a monitoring job.
8961
+ # @return [Types::MonitoringStatisticsResource]
8962
+ #
8963
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DataQualityBaselineConfig AWS API Documentation
8964
+ #
8965
+ class DataQualityBaselineConfig < Struct.new(
8966
+ :baselining_job_name,
8967
+ :constraints_resource,
8968
+ :statistics_resource)
8969
+ SENSITIVE = []
8970
+ include Aws::Structure
8971
+ end
8972
+
8973
+ # The input for the data quality monitoring job. Currently endpoints are
8974
+ # supported for input.
8975
+ #
8976
+ # @note When making an API call, you may pass DataQualityJobInput
8977
+ # data as a hash:
8978
+ #
8979
+ # {
8980
+ # endpoint_input: { # required
8981
+ # endpoint_name: "EndpointName", # required
8982
+ # local_path: "ProcessingLocalPath", # required
8983
+ # s3_input_mode: "Pipe", # accepts Pipe, File
8984
+ # s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
8985
+ # features_attribute: "String",
8986
+ # inference_attribute: "String",
8987
+ # probability_attribute: "String",
8988
+ # probability_threshold_attribute: 1.0,
8989
+ # start_time_offset: "MonitoringTimeOffsetString",
8990
+ # end_time_offset: "MonitoringTimeOffsetString",
8991
+ # },
8992
+ # }
8993
+ #
8994
+ # @!attribute [rw] endpoint_input
8995
+ # Input object for the endpoint
8996
+ # @return [Types::EndpointInput]
8047
8997
  #
8048
- # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DataProcessing AWS API Documentation
8998
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DataQualityJobInput AWS API Documentation
8049
8999
  #
8050
- class DataProcessing < Struct.new(
8051
- :input_filter,
8052
- :output_filter,
8053
- :join_source)
9000
+ class DataQualityJobInput < Struct.new(
9001
+ :endpoint_input)
8054
9002
  SENSITIVE = []
8055
9003
  include Aws::Structure
8056
9004
  end
@@ -8168,8 +9116,15 @@ module Aws::SageMaker
8168
9116
  include Aws::Structure
8169
9117
  end
8170
9118
 
8171
- # Configuration information for the debug hook parameters, collection
8172
- # configuration, and storage paths.
9119
+ # Configuration information for the Debugger hook parameters, metric and
9120
+ # tensor collections, and storage paths. To learn more about how to
9121
+ # configure the `DebugHookConfig` parameter, see [Use the SageMaker and
9122
+ # Debugger Configuration API Operations to Create, Update, and Debug
9123
+ # Your Training Job][1].
9124
+ #
9125
+ #
9126
+ #
9127
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/debugger-createtrainingjob-api.html
8173
9128
  #
8174
9129
  # @note When making an API call, you may pass DebugHookConfig
8175
9130
  # data as a hash:
@@ -8191,20 +9146,27 @@ module Aws::SageMaker
8191
9146
  # }
8192
9147
  #
8193
9148
  # @!attribute [rw] local_path
8194
- # Path to local storage location for tensors. Defaults to
9149
+ # Path to local storage location for metrics and tensors. Defaults to
8195
9150
  # `/opt/ml/output/tensors/`.
8196
9151
  # @return [String]
8197
9152
  #
8198
9153
  # @!attribute [rw] s3_output_path
8199
- # Path to Amazon S3 storage location for tensors.
9154
+ # Path to Amazon S3 storage location for metrics and tensors.
8200
9155
  # @return [String]
8201
9156
  #
8202
9157
  # @!attribute [rw] hook_parameters
8203
- # Configuration information for the debug hook parameters.
9158
+ # Configuration information for the Debugger hook parameters.
8204
9159
  # @return [Hash<String,String>]
8205
9160
  #
8206
9161
  # @!attribute [rw] collection_configurations
8207
- # Configuration information for tensor collections.
9162
+ # Configuration information for Debugger tensor collections. To learn
9163
+ # more about how to configure the `CollectionConfiguration` parameter,
9164
+ # see [Use the SageMaker and Debugger Configuration API Operations to
9165
+ # Create, Update, and Debug Your Training Job][1].
9166
+ #
9167
+ #
9168
+ #
9169
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/debugger-createtrainingjob-api.html
8208
9170
  # @return [Array<Types::CollectionConfiguration>]
8209
9171
  #
8210
9172
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DebugHookConfig AWS API Documentation
@@ -8218,7 +9180,14 @@ module Aws::SageMaker
8218
9180
  include Aws::Structure
8219
9181
  end
8220
9182
 
8221
- # Configuration information for debugging rules.
9183
+ # Configuration information for SageMaker Debugger rules for debugging.
9184
+ # To learn more about how to configure the `DebugRuleConfiguration`
9185
+ # parameter, see [Use the SageMaker and Debugger Configuration API
9186
+ # Operations to Create, Update, and Debug Your Training Job][1].
9187
+ #
9188
+ #
9189
+ #
9190
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/debugger-createtrainingjob-api.html
8222
9191
  #
8223
9192
  # @note When making an API call, you may pass DebugRuleConfiguration
8224
9193
  # data as a hash:
@@ -8255,7 +9224,8 @@ module Aws::SageMaker
8255
9224
  # @return [String]
8256
9225
  #
8257
9226
  # @!attribute [rw] instance_type
8258
- # The instance type to deploy for a training job.
9227
+ # The instance type to deploy a Debugger custom rule for debugging a
9228
+ # training job.
8259
9229
  # @return [String]
8260
9230
  #
8261
9231
  # @!attribute [rw] volume_size_in_gb
@@ -8284,7 +9254,7 @@ module Aws::SageMaker
8284
9254
  # Information about the status of the rule evaluation.
8285
9255
  #
8286
9256
  # @!attribute [rw] rule_configuration_name
8287
- # The name of the rule configuration
9257
+ # The name of the rule configuration.
8288
9258
  # @return [String]
8289
9259
  #
8290
9260
  # @!attribute [rw] rule_evaluation_job_arn
@@ -8558,6 +9528,44 @@ module Aws::SageMaker
8558
9528
  include Aws::Structure
8559
9529
  end
8560
9530
 
9531
+ # @note When making an API call, you may pass DeleteDataQualityJobDefinitionRequest
9532
+ # data as a hash:
9533
+ #
9534
+ # {
9535
+ # job_definition_name: "MonitoringJobDefinitionName", # required
9536
+ # }
9537
+ #
9538
+ # @!attribute [rw] job_definition_name
9539
+ # The name of the data quality monitoring job definition to delete.
9540
+ # @return [String]
9541
+ #
9542
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteDataQualityJobDefinitionRequest AWS API Documentation
9543
+ #
9544
+ class DeleteDataQualityJobDefinitionRequest < Struct.new(
9545
+ :job_definition_name)
9546
+ SENSITIVE = []
9547
+ include Aws::Structure
9548
+ end
9549
+
9550
+ # @note When making an API call, you may pass DeleteDeviceFleetRequest
9551
+ # data as a hash:
9552
+ #
9553
+ # {
9554
+ # device_fleet_name: "EntityName", # required
9555
+ # }
9556
+ #
9557
+ # @!attribute [rw] device_fleet_name
9558
+ # The name of the fleet to delete.
9559
+ # @return [String]
9560
+ #
9561
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteDeviceFleetRequest AWS API Documentation
9562
+ #
9563
+ class DeleteDeviceFleetRequest < Struct.new(
9564
+ :device_fleet_name)
9565
+ SENSITIVE = []
9566
+ include Aws::Structure
9567
+ end
9568
+
8561
9569
  # @note When making an API call, you may pass DeleteDomainRequest
8562
9570
  # data as a hash:
8563
9571
  #
@@ -8776,6 +9784,44 @@ module Aws::SageMaker
8776
9784
  #
8777
9785
  class DeleteImageVersionResponse < Aws::EmptyStructure; end
8778
9786
 
9787
+ # @note When making an API call, you may pass DeleteModelBiasJobDefinitionRequest
9788
+ # data as a hash:
9789
+ #
9790
+ # {
9791
+ # job_definition_name: "MonitoringJobDefinitionName", # required
9792
+ # }
9793
+ #
9794
+ # @!attribute [rw] job_definition_name
9795
+ # The name of the model bias job definition to delete.
9796
+ # @return [String]
9797
+ #
9798
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteModelBiasJobDefinitionRequest AWS API Documentation
9799
+ #
9800
+ class DeleteModelBiasJobDefinitionRequest < Struct.new(
9801
+ :job_definition_name)
9802
+ SENSITIVE = []
9803
+ include Aws::Structure
9804
+ end
9805
+
9806
+ # @note When making an API call, you may pass DeleteModelExplainabilityJobDefinitionRequest
9807
+ # data as a hash:
9808
+ #
9809
+ # {
9810
+ # job_definition_name: "MonitoringJobDefinitionName", # required
9811
+ # }
9812
+ #
9813
+ # @!attribute [rw] job_definition_name
9814
+ # The name of the model explainability job definition to delete.
9815
+ # @return [String]
9816
+ #
9817
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteModelExplainabilityJobDefinitionRequest AWS API Documentation
9818
+ #
9819
+ class DeleteModelExplainabilityJobDefinitionRequest < Struct.new(
9820
+ :job_definition_name)
9821
+ SENSITIVE = []
9822
+ include Aws::Structure
9823
+ end
9824
+
8779
9825
  # @note When making an API call, you may pass DeleteModelInput
8780
9826
  # data as a hash:
8781
9827
  #
@@ -8853,6 +9899,25 @@ module Aws::SageMaker
8853
9899
  include Aws::Structure
8854
9900
  end
8855
9901
 
9902
+ # @note When making an API call, you may pass DeleteModelQualityJobDefinitionRequest
9903
+ # data as a hash:
9904
+ #
9905
+ # {
9906
+ # job_definition_name: "MonitoringJobDefinitionName", # required
9907
+ # }
9908
+ #
9909
+ # @!attribute [rw] job_definition_name
9910
+ # The name of the model quality monitoring job definition to delete.
9911
+ # @return [String]
9912
+ #
9913
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteModelQualityJobDefinitionRequest AWS API Documentation
9914
+ #
9915
+ class DeleteModelQualityJobDefinitionRequest < Struct.new(
9916
+ :job_definition_name)
9917
+ SENSITIVE = []
9918
+ include Aws::Structure
9919
+ end
9920
+
8856
9921
  # @note When making an API call, you may pass DeleteMonitoringScheduleRequest
8857
9922
  # data as a hash:
8858
9923
  #
@@ -9224,6 +10289,31 @@ module Aws::SageMaker
9224
10289
  include Aws::Structure
9225
10290
  end
9226
10291
 
10292
+ # @note When making an API call, you may pass DeregisterDevicesRequest
10293
+ # data as a hash:
10294
+ #
10295
+ # {
10296
+ # device_fleet_name: "EntityName", # required
10297
+ # device_names: ["DeviceName"], # required
10298
+ # }
10299
+ #
10300
+ # @!attribute [rw] device_fleet_name
10301
+ # The name of the fleet the devices belong to.
10302
+ # @return [String]
10303
+ #
10304
+ # @!attribute [rw] device_names
10305
+ # The unique IDs of the devices.
10306
+ # @return [Array<String>]
10307
+ #
10308
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeregisterDevicesRequest AWS API Documentation
10309
+ #
10310
+ class DeregisterDevicesRequest < Struct.new(
10311
+ :device_fleet_name,
10312
+ :device_names)
10313
+ SENSITIVE = []
10314
+ include Aws::Structure
10315
+ end
10316
+
9227
10317
  # @note When making an API call, you may pass DescribeActionRequest
9228
10318
  # data as a hash:
9229
10319
  #
@@ -9957,41 +11047,287 @@ module Aws::SageMaker
9957
11047
  # The description of the context.
9958
11048
  # @return [String]
9959
11049
  #
9960
- # @!attribute [rw] properties
9961
- # A list of the context's properties.
9962
- # @return [Hash<String,String>]
11050
+ # @!attribute [rw] properties
11051
+ # A list of the context's properties.
11052
+ # @return [Hash<String,String>]
11053
+ #
11054
+ # @!attribute [rw] creation_time
11055
+ # When the context was created.
11056
+ # @return [Time]
11057
+ #
11058
+ # @!attribute [rw] created_by
11059
+ # Information about the user who created or modified an experiment,
11060
+ # trial, or trial component.
11061
+ # @return [Types::UserContext]
11062
+ #
11063
+ # @!attribute [rw] last_modified_time
11064
+ # When the context was last modified.
11065
+ # @return [Time]
11066
+ #
11067
+ # @!attribute [rw] last_modified_by
11068
+ # Information about the user who created or modified an experiment,
11069
+ # trial, or trial component.
11070
+ # @return [Types::UserContext]
11071
+ #
11072
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeContextResponse AWS API Documentation
11073
+ #
11074
+ class DescribeContextResponse < Struct.new(
11075
+ :context_name,
11076
+ :context_arn,
11077
+ :source,
11078
+ :context_type,
11079
+ :description,
11080
+ :properties,
11081
+ :creation_time,
11082
+ :created_by,
11083
+ :last_modified_time,
11084
+ :last_modified_by)
11085
+ SENSITIVE = []
11086
+ include Aws::Structure
11087
+ end
11088
+
11089
+ # @note When making an API call, you may pass DescribeDataQualityJobDefinitionRequest
11090
+ # data as a hash:
11091
+ #
11092
+ # {
11093
+ # job_definition_name: "MonitoringJobDefinitionName", # required
11094
+ # }
11095
+ #
11096
+ # @!attribute [rw] job_definition_name
11097
+ # The name of the data quality monitoring job definition to describe.
11098
+ # @return [String]
11099
+ #
11100
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDataQualityJobDefinitionRequest AWS API Documentation
11101
+ #
11102
+ class DescribeDataQualityJobDefinitionRequest < Struct.new(
11103
+ :job_definition_name)
11104
+ SENSITIVE = []
11105
+ include Aws::Structure
11106
+ end
11107
+
11108
+ # @!attribute [rw] job_definition_arn
11109
+ # The Amazon Resource Name (ARN) of the data quality monitoring job
11110
+ # definition.
11111
+ # @return [String]
11112
+ #
11113
+ # @!attribute [rw] job_definition_name
11114
+ # The name of the data quality monitoring job definition.
11115
+ # @return [String]
11116
+ #
11117
+ # @!attribute [rw] creation_time
11118
+ # The time that the data quality monitoring job definition was
11119
+ # created.
11120
+ # @return [Time]
11121
+ #
11122
+ # @!attribute [rw] data_quality_baseline_config
11123
+ # The constraints and baselines for the data quality monitoring job
11124
+ # definition.
11125
+ # @return [Types::DataQualityBaselineConfig]
11126
+ #
11127
+ # @!attribute [rw] data_quality_app_specification
11128
+ # Information about the container that runs the data quality
11129
+ # monitoring job.
11130
+ # @return [Types::DataQualityAppSpecification]
11131
+ #
11132
+ # @!attribute [rw] data_quality_job_input
11133
+ # The list of inputs for the data quality monitoring job. Currently
11134
+ # endpoints are supported.
11135
+ # @return [Types::DataQualityJobInput]
11136
+ #
11137
+ # @!attribute [rw] data_quality_job_output_config
11138
+ # The output configuration for monitoring jobs.
11139
+ # @return [Types::MonitoringOutputConfig]
11140
+ #
11141
+ # @!attribute [rw] job_resources
11142
+ # Identifies the resources to deploy for a monitoring job.
11143
+ # @return [Types::MonitoringResources]
11144
+ #
11145
+ # @!attribute [rw] network_config
11146
+ # The networking configuration for the data quality monitoring job.
11147
+ # @return [Types::MonitoringNetworkConfig]
11148
+ #
11149
+ # @!attribute [rw] role_arn
11150
+ # The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
11151
+ # can assume to perform tasks on your behalf.
11152
+ # @return [String]
11153
+ #
11154
+ # @!attribute [rw] stopping_condition
11155
+ # A time limit for how long the monitoring job is allowed to run
11156
+ # before stopping.
11157
+ # @return [Types::MonitoringStoppingCondition]
11158
+ #
11159
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDataQualityJobDefinitionResponse AWS API Documentation
11160
+ #
11161
+ class DescribeDataQualityJobDefinitionResponse < Struct.new(
11162
+ :job_definition_arn,
11163
+ :job_definition_name,
11164
+ :creation_time,
11165
+ :data_quality_baseline_config,
11166
+ :data_quality_app_specification,
11167
+ :data_quality_job_input,
11168
+ :data_quality_job_output_config,
11169
+ :job_resources,
11170
+ :network_config,
11171
+ :role_arn,
11172
+ :stopping_condition)
11173
+ SENSITIVE = []
11174
+ include Aws::Structure
11175
+ end
11176
+
11177
+ # @note When making an API call, you may pass DescribeDeviceFleetRequest
11178
+ # data as a hash:
11179
+ #
11180
+ # {
11181
+ # device_fleet_name: "EntityName", # required
11182
+ # }
11183
+ #
11184
+ # @!attribute [rw] device_fleet_name
11185
+ # The name of the fleet.
11186
+ # @return [String]
11187
+ #
11188
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDeviceFleetRequest AWS API Documentation
11189
+ #
11190
+ class DescribeDeviceFleetRequest < Struct.new(
11191
+ :device_fleet_name)
11192
+ SENSITIVE = []
11193
+ include Aws::Structure
11194
+ end
11195
+
11196
+ # @!attribute [rw] device_fleet_name
11197
+ # The name of the fleet.
11198
+ # @return [String]
11199
+ #
11200
+ # @!attribute [rw] device_fleet_arn
11201
+ # The The Amazon Resource Name (ARN) of the fleet.
11202
+ # @return [String]
11203
+ #
11204
+ # @!attribute [rw] output_config
11205
+ # The output configuration for storing sampled data.
11206
+ # @return [Types::EdgeOutputConfig]
11207
+ #
11208
+ # @!attribute [rw] description
11209
+ # A description of the fleet.
11210
+ # @return [String]
11211
+ #
11212
+ # @!attribute [rw] creation_time
11213
+ # Timestamp of when the device fleet was created.
11214
+ # @return [Time]
11215
+ #
11216
+ # @!attribute [rw] last_modified_time
11217
+ # Timestamp of when the device fleet was last updated.
11218
+ # @return [Time]
11219
+ #
11220
+ # @!attribute [rw] role_arn
11221
+ # The Amazon Resource Name (ARN) that has access to AWS Internet of
11222
+ # Things (IoT).
11223
+ # @return [String]
11224
+ #
11225
+ # @!attribute [rw] iot_role_alias
11226
+ # The Amazon Resource Name (ARN) alias created in AWS Internet of
11227
+ # Things (IoT).
11228
+ # @return [String]
11229
+ #
11230
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDeviceFleetResponse AWS API Documentation
11231
+ #
11232
+ class DescribeDeviceFleetResponse < Struct.new(
11233
+ :device_fleet_name,
11234
+ :device_fleet_arn,
11235
+ :output_config,
11236
+ :description,
11237
+ :creation_time,
11238
+ :last_modified_time,
11239
+ :role_arn,
11240
+ :iot_role_alias)
11241
+ SENSITIVE = []
11242
+ include Aws::Structure
11243
+ end
11244
+
11245
+ # @note When making an API call, you may pass DescribeDeviceRequest
11246
+ # data as a hash:
11247
+ #
11248
+ # {
11249
+ # next_token: "NextToken",
11250
+ # device_name: "EntityName", # required
11251
+ # device_fleet_name: "EntityName", # required
11252
+ # }
11253
+ #
11254
+ # @!attribute [rw] next_token
11255
+ # Next token of device description.
11256
+ # @return [String]
11257
+ #
11258
+ # @!attribute [rw] device_name
11259
+ # The unique ID of the device.
11260
+ # @return [String]
11261
+ #
11262
+ # @!attribute [rw] device_fleet_name
11263
+ # The name of the fleet the devices belong to.
11264
+ # @return [String]
11265
+ #
11266
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDeviceRequest AWS API Documentation
11267
+ #
11268
+ class DescribeDeviceRequest < Struct.new(
11269
+ :next_token,
11270
+ :device_name,
11271
+ :device_fleet_name)
11272
+ SENSITIVE = []
11273
+ include Aws::Structure
11274
+ end
11275
+
11276
+ # @!attribute [rw] device_arn
11277
+ # The Amazon Resource Name (ARN) of the device.
11278
+ # @return [String]
11279
+ #
11280
+ # @!attribute [rw] device_name
11281
+ # The unique identifier of the device.
11282
+ # @return [String]
11283
+ #
11284
+ # @!attribute [rw] description
11285
+ # A description of the device.
11286
+ # @return [String]
11287
+ #
11288
+ # @!attribute [rw] device_fleet_name
11289
+ # The name of the fleet the device belongs to.
11290
+ # @return [String]
11291
+ #
11292
+ # @!attribute [rw] iot_thing_name
11293
+ # The AWS Internet of Things (IoT) object thing name associated with
11294
+ # the device.
11295
+ # @return [String]
11296
+ #
11297
+ # @!attribute [rw] registration_time
11298
+ # The timestamp of the last registration or de-reregistration.
11299
+ # @return [Time]
9963
11300
  #
9964
- # @!attribute [rw] creation_time
9965
- # When the context was created.
11301
+ # @!attribute [rw] latest_heartbeat
11302
+ # The last heartbeat received from the device.
9966
11303
  # @return [Time]
9967
11304
  #
9968
- # @!attribute [rw] created_by
9969
- # Information about the user who created or modified an experiment,
9970
- # trial, or trial component.
9971
- # @return [Types::UserContext]
11305
+ # @!attribute [rw] models
11306
+ # Models on the device.
11307
+ # @return [Array<Types::EdgeModel>]
9972
11308
  #
9973
- # @!attribute [rw] last_modified_time
9974
- # When the context was last modified.
9975
- # @return [Time]
11309
+ # @!attribute [rw] max_models
11310
+ # The maximum number of models.
11311
+ # @return [Integer]
9976
11312
  #
9977
- # @!attribute [rw] last_modified_by
9978
- # Information about the user who created or modified an experiment,
9979
- # trial, or trial component.
9980
- # @return [Types::UserContext]
11313
+ # @!attribute [rw] next_token
11314
+ # The response from the last list when returning a list large enough
11315
+ # to need tokening.
11316
+ # @return [String]
9981
11317
  #
9982
- # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeContextResponse AWS API Documentation
11318
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDeviceResponse AWS API Documentation
9983
11319
  #
9984
- class DescribeContextResponse < Struct.new(
9985
- :context_name,
9986
- :context_arn,
9987
- :source,
9988
- :context_type,
11320
+ class DescribeDeviceResponse < Struct.new(
11321
+ :device_arn,
11322
+ :device_name,
9989
11323
  :description,
9990
- :properties,
9991
- :creation_time,
9992
- :created_by,
9993
- :last_modified_time,
9994
- :last_modified_by)
11324
+ :device_fleet_name,
11325
+ :iot_thing_name,
11326
+ :registration_time,
11327
+ :latest_heartbeat,
11328
+ :models,
11329
+ :max_models,
11330
+ :next_token)
9995
11331
  SENSITIVE = []
9996
11332
  include Aws::Structure
9997
11333
  end
@@ -10118,6 +11454,105 @@ module Aws::SageMaker
10118
11454
  include Aws::Structure
10119
11455
  end
10120
11456
 
11457
+ # @note When making an API call, you may pass DescribeEdgePackagingJobRequest
11458
+ # data as a hash:
11459
+ #
11460
+ # {
11461
+ # edge_packaging_job_name: "EntityName", # required
11462
+ # }
11463
+ #
11464
+ # @!attribute [rw] edge_packaging_job_name
11465
+ # The name of the edge packaging job.
11466
+ # @return [String]
11467
+ #
11468
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEdgePackagingJobRequest AWS API Documentation
11469
+ #
11470
+ class DescribeEdgePackagingJobRequest < Struct.new(
11471
+ :edge_packaging_job_name)
11472
+ SENSITIVE = []
11473
+ include Aws::Structure
11474
+ end
11475
+
11476
+ # @!attribute [rw] edge_packaging_job_arn
11477
+ # The Amazon Resource Name (ARN) of the edge packaging job.
11478
+ # @return [String]
11479
+ #
11480
+ # @!attribute [rw] edge_packaging_job_name
11481
+ # The name of the edge packaging job.
11482
+ # @return [String]
11483
+ #
11484
+ # @!attribute [rw] compilation_job_name
11485
+ # The name of the SageMaker Neo compilation job that is used to locate
11486
+ # model artifacts that are being packaged.
11487
+ # @return [String]
11488
+ #
11489
+ # @!attribute [rw] model_name
11490
+ # The name of the model.
11491
+ # @return [String]
11492
+ #
11493
+ # @!attribute [rw] model_version
11494
+ # The version of the model.
11495
+ # @return [String]
11496
+ #
11497
+ # @!attribute [rw] role_arn
11498
+ # The Amazon Resource Name (ARN) of an IAM role that enables Amazon
11499
+ # SageMaker to download and upload the model, and to contact Neo.
11500
+ # @return [String]
11501
+ #
11502
+ # @!attribute [rw] output_config
11503
+ # The output configuration for the edge packaging job.
11504
+ # @return [Types::EdgeOutputConfig]
11505
+ #
11506
+ # @!attribute [rw] resource_key
11507
+ # The CMK to use when encrypting the EBS volume the job run on.
11508
+ # @return [String]
11509
+ #
11510
+ # @!attribute [rw] edge_packaging_job_status
11511
+ # The current status of the packaging job.
11512
+ # @return [String]
11513
+ #
11514
+ # @!attribute [rw] edge_packaging_job_status_message
11515
+ # Returns a message describing the job status and error messages.
11516
+ # @return [String]
11517
+ #
11518
+ # @!attribute [rw] creation_time
11519
+ # The timestamp of when the packaging job was created.
11520
+ # @return [Time]
11521
+ #
11522
+ # @!attribute [rw] last_modified_time
11523
+ # The timestamp of when the job was last updated.
11524
+ # @return [Time]
11525
+ #
11526
+ # @!attribute [rw] model_artifact
11527
+ # The Amazon Simple Storage (S3) URI where model artifacts ares
11528
+ # stored.
11529
+ # @return [String]
11530
+ #
11531
+ # @!attribute [rw] model_signature
11532
+ # The signature document of files in the model artifact.
11533
+ # @return [String]
11534
+ #
11535
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEdgePackagingJobResponse AWS API Documentation
11536
+ #
11537
+ class DescribeEdgePackagingJobResponse < Struct.new(
11538
+ :edge_packaging_job_arn,
11539
+ :edge_packaging_job_name,
11540
+ :compilation_job_name,
11541
+ :model_name,
11542
+ :model_version,
11543
+ :role_arn,
11544
+ :output_config,
11545
+ :resource_key,
11546
+ :edge_packaging_job_status,
11547
+ :edge_packaging_job_status_message,
11548
+ :creation_time,
11549
+ :last_modified_time,
11550
+ :model_artifact,
11551
+ :model_signature)
11552
+ SENSITIVE = []
11553
+ include Aws::Structure
11554
+ end
11555
+
10121
11556
  # @note When making an API call, you may pass DescribeEndpointConfigInput
10122
11557
  # data as a hash:
10123
11558
  #
@@ -11053,6 +12488,182 @@ module Aws::SageMaker
11053
12488
  include Aws::Structure
11054
12489
  end
11055
12490
 
12491
+ # @note When making an API call, you may pass DescribeModelBiasJobDefinitionRequest
12492
+ # data as a hash:
12493
+ #
12494
+ # {
12495
+ # job_definition_name: "MonitoringJobDefinitionName", # required
12496
+ # }
12497
+ #
12498
+ # @!attribute [rw] job_definition_name
12499
+ # The name of the model bias job definition. The name must be unique
12500
+ # within an AWS Region in the AWS account.
12501
+ # @return [String]
12502
+ #
12503
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelBiasJobDefinitionRequest AWS API Documentation
12504
+ #
12505
+ class DescribeModelBiasJobDefinitionRequest < Struct.new(
12506
+ :job_definition_name)
12507
+ SENSITIVE = []
12508
+ include Aws::Structure
12509
+ end
12510
+
12511
+ # @!attribute [rw] job_definition_arn
12512
+ # The Amazon Resource Name (ARN) of the model bias job.
12513
+ # @return [String]
12514
+ #
12515
+ # @!attribute [rw] job_definition_name
12516
+ # The name of the bias job definition. The name must be unique within
12517
+ # an AWS Region in the AWS account.
12518
+ # @return [String]
12519
+ #
12520
+ # @!attribute [rw] creation_time
12521
+ # The time at which the model bias job was created.
12522
+ # @return [Time]
12523
+ #
12524
+ # @!attribute [rw] model_bias_baseline_config
12525
+ # The baseline configuration for a model bias job.
12526
+ # @return [Types::ModelBiasBaselineConfig]
12527
+ #
12528
+ # @!attribute [rw] model_bias_app_specification
12529
+ # Configures the model bias job to run a specified Docker container
12530
+ # image.
12531
+ # @return [Types::ModelBiasAppSpecification]
12532
+ #
12533
+ # @!attribute [rw] model_bias_job_input
12534
+ # Inputs for the model bias job.
12535
+ # @return [Types::ModelBiasJobInput]
12536
+ #
12537
+ # @!attribute [rw] model_bias_job_output_config
12538
+ # The output configuration for monitoring jobs.
12539
+ # @return [Types::MonitoringOutputConfig]
12540
+ #
12541
+ # @!attribute [rw] job_resources
12542
+ # Identifies the resources to deploy for a monitoring job.
12543
+ # @return [Types::MonitoringResources]
12544
+ #
12545
+ # @!attribute [rw] network_config
12546
+ # Networking options for a model bias job.
12547
+ # @return [Types::MonitoringNetworkConfig]
12548
+ #
12549
+ # @!attribute [rw] role_arn
12550
+ # The Amazon Resource Name (ARN) of the AWS Identity and Access
12551
+ # Management (IAM) role that has read permission to the input data
12552
+ # location and write permission to the output data location in Amazon
12553
+ # S3.
12554
+ # @return [String]
12555
+ #
12556
+ # @!attribute [rw] stopping_condition
12557
+ # A time limit for how long the monitoring job is allowed to run
12558
+ # before stopping.
12559
+ # @return [Types::MonitoringStoppingCondition]
12560
+ #
12561
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelBiasJobDefinitionResponse AWS API Documentation
12562
+ #
12563
+ class DescribeModelBiasJobDefinitionResponse < Struct.new(
12564
+ :job_definition_arn,
12565
+ :job_definition_name,
12566
+ :creation_time,
12567
+ :model_bias_baseline_config,
12568
+ :model_bias_app_specification,
12569
+ :model_bias_job_input,
12570
+ :model_bias_job_output_config,
12571
+ :job_resources,
12572
+ :network_config,
12573
+ :role_arn,
12574
+ :stopping_condition)
12575
+ SENSITIVE = []
12576
+ include Aws::Structure
12577
+ end
12578
+
12579
+ # @note When making an API call, you may pass DescribeModelExplainabilityJobDefinitionRequest
12580
+ # data as a hash:
12581
+ #
12582
+ # {
12583
+ # job_definition_name: "MonitoringJobDefinitionName", # required
12584
+ # }
12585
+ #
12586
+ # @!attribute [rw] job_definition_name
12587
+ # The name of the model explainability job definition. The name must
12588
+ # be unique within an AWS Region in the AWS account.
12589
+ # @return [String]
12590
+ #
12591
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelExplainabilityJobDefinitionRequest AWS API Documentation
12592
+ #
12593
+ class DescribeModelExplainabilityJobDefinitionRequest < Struct.new(
12594
+ :job_definition_name)
12595
+ SENSITIVE = []
12596
+ include Aws::Structure
12597
+ end
12598
+
12599
+ # @!attribute [rw] job_definition_arn
12600
+ # The Amazon Resource Name (ARN) of the model explainability job.
12601
+ # @return [String]
12602
+ #
12603
+ # @!attribute [rw] job_definition_name
12604
+ # The name of the explainability job definition. The name must be
12605
+ # unique within an AWS Region in the AWS account.
12606
+ # @return [String]
12607
+ #
12608
+ # @!attribute [rw] creation_time
12609
+ # The time at which the model explainability job was created.
12610
+ # @return [Time]
12611
+ #
12612
+ # @!attribute [rw] model_explainability_baseline_config
12613
+ # The baseline configuration for a model explainability job.
12614
+ # @return [Types::ModelExplainabilityBaselineConfig]
12615
+ #
12616
+ # @!attribute [rw] model_explainability_app_specification
12617
+ # Configures the model explainability job to run a specified Docker
12618
+ # container image.
12619
+ # @return [Types::ModelExplainabilityAppSpecification]
12620
+ #
12621
+ # @!attribute [rw] model_explainability_job_input
12622
+ # Inputs for the model explainability job.
12623
+ # @return [Types::ModelExplainabilityJobInput]
12624
+ #
12625
+ # @!attribute [rw] model_explainability_job_output_config
12626
+ # The output configuration for monitoring jobs.
12627
+ # @return [Types::MonitoringOutputConfig]
12628
+ #
12629
+ # @!attribute [rw] job_resources
12630
+ # Identifies the resources to deploy for a monitoring job.
12631
+ # @return [Types::MonitoringResources]
12632
+ #
12633
+ # @!attribute [rw] network_config
12634
+ # Networking options for a model explainability job.
12635
+ # @return [Types::MonitoringNetworkConfig]
12636
+ #
12637
+ # @!attribute [rw] role_arn
12638
+ # The Amazon Resource Name (ARN) of the AWS Identity and Access
12639
+ # Management (IAM) role that has read permission to the input data
12640
+ # location and write permission to the output data location in Amazon
12641
+ # S3.
12642
+ # @return [String]
12643
+ #
12644
+ # @!attribute [rw] stopping_condition
12645
+ # A time limit for how long the monitoring job is allowed to run
12646
+ # before stopping.
12647
+ # @return [Types::MonitoringStoppingCondition]
12648
+ #
12649
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelExplainabilityJobDefinitionResponse AWS API Documentation
12650
+ #
12651
+ class DescribeModelExplainabilityJobDefinitionResponse < Struct.new(
12652
+ :job_definition_arn,
12653
+ :job_definition_name,
12654
+ :creation_time,
12655
+ :model_explainability_baseline_config,
12656
+ :model_explainability_app_specification,
12657
+ :model_explainability_job_input,
12658
+ :model_explainability_job_output_config,
12659
+ :job_resources,
12660
+ :network_config,
12661
+ :role_arn,
12662
+ :stopping_condition)
12663
+ SENSITIVE = []
12664
+ include Aws::Structure
12665
+ end
12666
+
11056
12667
  # @note When making an API call, you may pass DescribeModelInput
11057
12668
  # data as a hash:
11058
12669
  #
@@ -11272,45 +12883,131 @@ module Aws::SageMaker
11272
12883
  # component.
11273
12884
  # @return [Types::MetadataProperties]
11274
12885
  #
11275
- # @!attribute [rw] model_metrics
11276
- # Metrics for the model.
11277
- # @return [Types::ModelMetrics]
12886
+ # @!attribute [rw] model_metrics
12887
+ # Metrics for the model.
12888
+ # @return [Types::ModelMetrics]
12889
+ #
12890
+ # @!attribute [rw] last_modified_time
12891
+ # The last time the model package was modified.
12892
+ # @return [Time]
12893
+ #
12894
+ # @!attribute [rw] last_modified_by
12895
+ # Information about the user who created or modified an experiment,
12896
+ # trial, or trial component.
12897
+ # @return [Types::UserContext]
12898
+ #
12899
+ # @!attribute [rw] approval_description
12900
+ # A description provided for the model approval.
12901
+ # @return [String]
12902
+ #
12903
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackageOutput AWS API Documentation
12904
+ #
12905
+ class DescribeModelPackageOutput < Struct.new(
12906
+ :model_package_name,
12907
+ :model_package_group_name,
12908
+ :model_package_version,
12909
+ :model_package_arn,
12910
+ :model_package_description,
12911
+ :creation_time,
12912
+ :inference_specification,
12913
+ :source_algorithm_specification,
12914
+ :validation_specification,
12915
+ :model_package_status,
12916
+ :model_package_status_details,
12917
+ :certify_for_marketplace,
12918
+ :model_approval_status,
12919
+ :created_by,
12920
+ :metadata_properties,
12921
+ :model_metrics,
12922
+ :last_modified_time,
12923
+ :last_modified_by,
12924
+ :approval_description)
12925
+ SENSITIVE = []
12926
+ include Aws::Structure
12927
+ end
12928
+
12929
+ # @note When making an API call, you may pass DescribeModelQualityJobDefinitionRequest
12930
+ # data as a hash:
12931
+ #
12932
+ # {
12933
+ # job_definition_name: "MonitoringJobDefinitionName", # required
12934
+ # }
12935
+ #
12936
+ # @!attribute [rw] job_definition_name
12937
+ # The name of the model quality job. The name must be unique within an
12938
+ # AWS Region in the AWS account.
12939
+ # @return [String]
12940
+ #
12941
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelQualityJobDefinitionRequest AWS API Documentation
12942
+ #
12943
+ class DescribeModelQualityJobDefinitionRequest < Struct.new(
12944
+ :job_definition_name)
12945
+ SENSITIVE = []
12946
+ include Aws::Structure
12947
+ end
12948
+
12949
+ # @!attribute [rw] job_definition_arn
12950
+ # The Amazon Resource Name (ARN) of the model quality job.
12951
+ # @return [String]
12952
+ #
12953
+ # @!attribute [rw] job_definition_name
12954
+ # The name of the quality job definition. The name must be unique
12955
+ # within an AWS Region in the AWS account.
12956
+ # @return [String]
12957
+ #
12958
+ # @!attribute [rw] creation_time
12959
+ # The time at which the model quality job was created.
12960
+ # @return [Time]
12961
+ #
12962
+ # @!attribute [rw] model_quality_baseline_config
12963
+ # The baseline configuration for a model quality job.
12964
+ # @return [Types::ModelQualityBaselineConfig]
12965
+ #
12966
+ # @!attribute [rw] model_quality_app_specification
12967
+ # Configures the model quality job to run a specified Docker container
12968
+ # image.
12969
+ # @return [Types::ModelQualityAppSpecification]
12970
+ #
12971
+ # @!attribute [rw] model_quality_job_input
12972
+ # Inputs for the model quality job.
12973
+ # @return [Types::ModelQualityJobInput]
12974
+ #
12975
+ # @!attribute [rw] model_quality_job_output_config
12976
+ # The output configuration for monitoring jobs.
12977
+ # @return [Types::MonitoringOutputConfig]
11278
12978
  #
11279
- # @!attribute [rw] last_modified_time
11280
- # The last time the model package was modified.
11281
- # @return [Time]
12979
+ # @!attribute [rw] job_resources
12980
+ # Identifies the resources to deploy for a monitoring job.
12981
+ # @return [Types::MonitoringResources]
11282
12982
  #
11283
- # @!attribute [rw] last_modified_by
11284
- # Information about the user who created or modified an experiment,
11285
- # trial, or trial component.
11286
- # @return [Types::UserContext]
12983
+ # @!attribute [rw] network_config
12984
+ # Networking options for a model quality job.
12985
+ # @return [Types::MonitoringNetworkConfig]
11287
12986
  #
11288
- # @!attribute [rw] approval_description
11289
- # A description provided for the model approval.
12987
+ # @!attribute [rw] role_arn
12988
+ # The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
12989
+ # can assume to perform tasks on your behalf.
11290
12990
  # @return [String]
11291
12991
  #
11292
- # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackageOutput AWS API Documentation
12992
+ # @!attribute [rw] stopping_condition
12993
+ # A time limit for how long the monitoring job is allowed to run
12994
+ # before stopping.
12995
+ # @return [Types::MonitoringStoppingCondition]
11293
12996
  #
11294
- class DescribeModelPackageOutput < Struct.new(
11295
- :model_package_name,
11296
- :model_package_group_name,
11297
- :model_package_version,
11298
- :model_package_arn,
11299
- :model_package_description,
12997
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelQualityJobDefinitionResponse AWS API Documentation
12998
+ #
12999
+ class DescribeModelQualityJobDefinitionResponse < Struct.new(
13000
+ :job_definition_arn,
13001
+ :job_definition_name,
11300
13002
  :creation_time,
11301
- :inference_specification,
11302
- :source_algorithm_specification,
11303
- :validation_specification,
11304
- :model_package_status,
11305
- :model_package_status_details,
11306
- :certify_for_marketplace,
11307
- :model_approval_status,
11308
- :created_by,
11309
- :metadata_properties,
11310
- :model_metrics,
11311
- :last_modified_time,
11312
- :last_modified_by,
11313
- :approval_description)
13003
+ :model_quality_baseline_config,
13004
+ :model_quality_app_specification,
13005
+ :model_quality_job_input,
13006
+ :model_quality_job_output_config,
13007
+ :job_resources,
13008
+ :network_config,
13009
+ :role_arn,
13010
+ :stopping_condition)
11314
13011
  SENSITIVE = []
11315
13012
  include Aws::Structure
11316
13013
  end
@@ -11346,6 +13043,22 @@ module Aws::SageMaker
11346
13043
  # The status of an monitoring job.
11347
13044
  # @return [String]
11348
13045
  #
13046
+ # @!attribute [rw] monitoring_type
13047
+ # The type of the monitoring job that this schedule runs. This is one
13048
+ # of the following values.
13049
+ #
13050
+ # * `DATA_QUALITY` - The schedule is for a data quality monitoring
13051
+ # job.
13052
+ #
13053
+ # * `MODEL_QUALITY` - The schedule is for a model quality monitoring
13054
+ # job.
13055
+ #
13056
+ # * `MODEL_BIAS` - The schedule is for a bias monitoring job.
13057
+ #
13058
+ # * `MODEL_EXPLAINABILITY` - The schedule is for an explainability
13059
+ # monitoring job.
13060
+ # @return [String]
13061
+ #
11349
13062
  # @!attribute [rw] failure_reason
11350
13063
  # A string, up to one KB in size, that contains the reason a
11351
13064
  # monitoring job failed, if it failed.
@@ -11378,6 +13091,7 @@ module Aws::SageMaker
11378
13091
  :monitoring_schedule_arn,
11379
13092
  :monitoring_schedule_name,
11380
13093
  :monitoring_schedule_status,
13094
+ :monitoring_type,
11381
13095
  :failure_reason,
11382
13096
  :creation_time,
11383
13097
  :last_modified_time,
@@ -12343,8 +14057,15 @@ module Aws::SageMaker
12343
14057
  # @return [Integer]
12344
14058
  #
12345
14059
  # @!attribute [rw] debug_hook_config
12346
- # Configuration information for the debug hook parameters, collection
12347
- # configuration, and storage paths.
14060
+ # Configuration information for the Debugger hook parameters, metric
14061
+ # and tensor collections, and storage paths. To learn more about how
14062
+ # to configure the `DebugHookConfig` parameter, see [Use the SageMaker
14063
+ # and Debugger Configuration API Operations to Create, Update, and
14064
+ # Debug Your Training Job][1].
14065
+ #
14066
+ #
14067
+ #
14068
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/debugger-createtrainingjob-api.html
12348
14069
  # @return [Types::DebugHookConfig]
12349
14070
  #
12350
14071
  # @!attribute [rw] experiment_config
@@ -12359,17 +14080,37 @@ module Aws::SageMaker
12359
14080
  # @return [Types::ExperimentConfig]
12360
14081
  #
12361
14082
  # @!attribute [rw] debug_rule_configurations
12362
- # Configuration information for debugging rules.
14083
+ # Configuration information for Debugger rules for debugging output
14084
+ # tensors.
12363
14085
  # @return [Array<Types::DebugRuleConfiguration>]
12364
14086
  #
12365
14087
  # @!attribute [rw] tensor_board_output_config
12366
- # Configuration of storage locations for TensorBoard output.
14088
+ # Configuration of storage locations for the Debugger TensorBoard
14089
+ # output data.
12367
14090
  # @return [Types::TensorBoardOutputConfig]
12368
14091
  #
12369
14092
  # @!attribute [rw] debug_rule_evaluation_statuses
12370
- # Status about the debug rule evaluation.
14093
+ # Evaluation status of Debugger rules for debugging on a training job.
12371
14094
  # @return [Array<Types::DebugRuleEvaluationStatus>]
12372
14095
  #
14096
+ # @!attribute [rw] profiler_config
14097
+ # Configuration information for Debugger system monitoring, framework
14098
+ # profiling, and storage paths.
14099
+ # @return [Types::ProfilerConfig]
14100
+ #
14101
+ # @!attribute [rw] profiler_rule_configurations
14102
+ # Configuration information for Debugger rules for profiling system
14103
+ # and framework metrics.
14104
+ # @return [Array<Types::ProfilerRuleConfiguration>]
14105
+ #
14106
+ # @!attribute [rw] profiler_rule_evaluation_statuses
14107
+ # Evaluation status of Debugger rules for profiling on a training job.
14108
+ # @return [Array<Types::ProfilerRuleEvaluationStatus>]
14109
+ #
14110
+ # @!attribute [rw] profiling_status
14111
+ # Profiling status of a training job.
14112
+ # @return [String]
14113
+ #
12373
14114
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeTrainingJobResponse AWS API Documentation
12374
14115
  #
12375
14116
  class DescribeTrainingJobResponse < Struct.new(
@@ -12406,7 +14147,11 @@ module Aws::SageMaker
12406
14147
  :experiment_config,
12407
14148
  :debug_rule_configurations,
12408
14149
  :tensor_board_output_config,
12409
- :debug_rule_evaluation_statuses)
14150
+ :debug_rule_evaluation_statuses,
14151
+ :profiler_config,
14152
+ :profiler_rule_configurations,
14153
+ :profiler_rule_evaluation_statuses,
14154
+ :profiling_status)
12410
14155
  SENSITIVE = []
12411
14156
  include Aws::Structure
12412
14157
  end
@@ -12969,6 +14714,137 @@ module Aws::SageMaker
12969
14714
  include Aws::Structure
12970
14715
  end
12971
14716
 
14717
+ # Information of a particular device.
14718
+ #
14719
+ # @note When making an API call, you may pass Device
14720
+ # data as a hash:
14721
+ #
14722
+ # {
14723
+ # device_name: "DeviceName", # required
14724
+ # description: "DeviceDescription",
14725
+ # iot_thing_name: "ThingName",
14726
+ # }
14727
+ #
14728
+ # @!attribute [rw] device_name
14729
+ # The name of the device.
14730
+ # @return [String]
14731
+ #
14732
+ # @!attribute [rw] description
14733
+ # Description of the device.
14734
+ # @return [String]
14735
+ #
14736
+ # @!attribute [rw] iot_thing_name
14737
+ # AWS Internet of Things (IoT) object name.
14738
+ # @return [String]
14739
+ #
14740
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Device AWS API Documentation
14741
+ #
14742
+ class Device < Struct.new(
14743
+ :device_name,
14744
+ :description,
14745
+ :iot_thing_name)
14746
+ SENSITIVE = []
14747
+ include Aws::Structure
14748
+ end
14749
+
14750
+ # Summary of the device fleet.
14751
+ #
14752
+ # @!attribute [rw] device_fleet_arn
14753
+ # Amazon Resource Name (ARN) of the device fleet.
14754
+ # @return [String]
14755
+ #
14756
+ # @!attribute [rw] device_fleet_name
14757
+ # Name of the device fleet.
14758
+ # @return [String]
14759
+ #
14760
+ # @!attribute [rw] creation_time
14761
+ # Timestamp of when the device fleet was created.
14762
+ # @return [Time]
14763
+ #
14764
+ # @!attribute [rw] last_modified_time
14765
+ # Timestamp of when the device fleet was last updated.
14766
+ # @return [Time]
14767
+ #
14768
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeviceFleetSummary AWS API Documentation
14769
+ #
14770
+ class DeviceFleetSummary < Struct.new(
14771
+ :device_fleet_arn,
14772
+ :device_fleet_name,
14773
+ :creation_time,
14774
+ :last_modified_time)
14775
+ SENSITIVE = []
14776
+ include Aws::Structure
14777
+ end
14778
+
14779
+ # Status of devices.
14780
+ #
14781
+ # @!attribute [rw] connected_device_count
14782
+ # The number of devices connected with a heartbeat.
14783
+ # @return [Integer]
14784
+ #
14785
+ # @!attribute [rw] registered_device_count
14786
+ # The number of registered devices.
14787
+ # @return [Integer]
14788
+ #
14789
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeviceStats AWS API Documentation
14790
+ #
14791
+ class DeviceStats < Struct.new(
14792
+ :connected_device_count,
14793
+ :registered_device_count)
14794
+ SENSITIVE = []
14795
+ include Aws::Structure
14796
+ end
14797
+
14798
+ # Summary of the device.
14799
+ #
14800
+ # @!attribute [rw] device_name
14801
+ # The unique identifier of the device.
14802
+ # @return [String]
14803
+ #
14804
+ # @!attribute [rw] device_arn
14805
+ # Amazon Resource Name (ARN) of the device.
14806
+ # @return [String]
14807
+ #
14808
+ # @!attribute [rw] description
14809
+ # A description of the device.
14810
+ # @return [String]
14811
+ #
14812
+ # @!attribute [rw] device_fleet_name
14813
+ # The name of the fleet the device belongs to.
14814
+ # @return [String]
14815
+ #
14816
+ # @!attribute [rw] iot_thing_name
14817
+ # The AWS Internet of Things (IoT) object thing name associated with
14818
+ # the device..
14819
+ # @return [String]
14820
+ #
14821
+ # @!attribute [rw] registration_time
14822
+ # The timestamp of the last registration or de-reregistration.
14823
+ # @return [Time]
14824
+ #
14825
+ # @!attribute [rw] latest_heartbeat
14826
+ # The last heartbeat received from the device.
14827
+ # @return [Time]
14828
+ #
14829
+ # @!attribute [rw] models
14830
+ # Models on the device.
14831
+ # @return [Array<Types::EdgeModelSummary>]
14832
+ #
14833
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeviceSummary AWS API Documentation
14834
+ #
14835
+ class DeviceSummary < Struct.new(
14836
+ :device_name,
14837
+ :device_arn,
14838
+ :description,
14839
+ :device_fleet_name,
14840
+ :iot_thing_name,
14841
+ :registration_time,
14842
+ :latest_heartbeat,
14843
+ :models)
14844
+ SENSITIVE = []
14845
+ include Aws::Structure
14846
+ end
14847
+
12972
14848
  # @api private
12973
14849
  #
12974
14850
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DisableSagemakerServicecatalogPortfolioInput AWS API Documentation
@@ -13065,6 +14941,176 @@ module Aws::SageMaker
13065
14941
  include Aws::Structure
13066
14942
  end
13067
14943
 
14944
+ # The model on the edge device.
14945
+ #
14946
+ # @!attribute [rw] model_name
14947
+ # The name of the model.
14948
+ # @return [String]
14949
+ #
14950
+ # @!attribute [rw] model_version
14951
+ # The model version.
14952
+ # @return [String]
14953
+ #
14954
+ # @!attribute [rw] latest_sample_time
14955
+ # The timestamp of the last data sample taken.
14956
+ # @return [Time]
14957
+ #
14958
+ # @!attribute [rw] latest_inference
14959
+ # The timestamp of the last inference that was made.
14960
+ # @return [Time]
14961
+ #
14962
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EdgeModel AWS API Documentation
14963
+ #
14964
+ class EdgeModel < Struct.new(
14965
+ :model_name,
14966
+ :model_version,
14967
+ :latest_sample_time,
14968
+ :latest_inference)
14969
+ SENSITIVE = []
14970
+ include Aws::Structure
14971
+ end
14972
+
14973
+ # Status of edge devices with this model.
14974
+ #
14975
+ # @!attribute [rw] model_name
14976
+ # The name of the model.
14977
+ # @return [String]
14978
+ #
14979
+ # @!attribute [rw] model_version
14980
+ # The model version.
14981
+ # @return [String]
14982
+ #
14983
+ # @!attribute [rw] offline_device_count
14984
+ # The number of devices that have this model version and do not have a
14985
+ # heart beat.
14986
+ # @return [Integer]
14987
+ #
14988
+ # @!attribute [rw] connected_device_count
14989
+ # The number of devices that have this model version and have a heart
14990
+ # beat.
14991
+ # @return [Integer]
14992
+ #
14993
+ # @!attribute [rw] active_device_count
14994
+ # The number of devices that have this model version, a heart beat,
14995
+ # and are currently running.
14996
+ # @return [Integer]
14997
+ #
14998
+ # @!attribute [rw] sampling_device_count
14999
+ # The number of devices with this model version and are producing
15000
+ # sample data.
15001
+ # @return [Integer]
15002
+ #
15003
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EdgeModelStat AWS API Documentation
15004
+ #
15005
+ class EdgeModelStat < Struct.new(
15006
+ :model_name,
15007
+ :model_version,
15008
+ :offline_device_count,
15009
+ :connected_device_count,
15010
+ :active_device_count,
15011
+ :sampling_device_count)
15012
+ SENSITIVE = []
15013
+ include Aws::Structure
15014
+ end
15015
+
15016
+ # Summary of model on edge device.
15017
+ #
15018
+ # @!attribute [rw] model_name
15019
+ # The name of the model.
15020
+ # @return [String]
15021
+ #
15022
+ # @!attribute [rw] model_version
15023
+ # The version model.
15024
+ # @return [String]
15025
+ #
15026
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EdgeModelSummary AWS API Documentation
15027
+ #
15028
+ class EdgeModelSummary < Struct.new(
15029
+ :model_name,
15030
+ :model_version)
15031
+ SENSITIVE = []
15032
+ include Aws::Structure
15033
+ end
15034
+
15035
+ # The output configuration.
15036
+ #
15037
+ # @note When making an API call, you may pass EdgeOutputConfig
15038
+ # data as a hash:
15039
+ #
15040
+ # {
15041
+ # s3_output_location: "S3Uri", # required
15042
+ # kms_key_id: "KmsKeyId",
15043
+ # }
15044
+ #
15045
+ # @!attribute [rw] s3_output_location
15046
+ # The Amazon Simple Storage (S3) bucker URI.
15047
+ # @return [String]
15048
+ #
15049
+ # @!attribute [rw] kms_key_id
15050
+ # The AWS Key Management Service (AWS KMS) key that Amazon SageMaker
15051
+ # uses to encrypt data on the storage volume after compilation job. If
15052
+ # you don't provide a KMS key ID, Amazon SageMaker uses the default
15053
+ # KMS key for Amazon S3 for your role's account.
15054
+ # @return [String]
15055
+ #
15056
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EdgeOutputConfig AWS API Documentation
15057
+ #
15058
+ class EdgeOutputConfig < Struct.new(
15059
+ :s3_output_location,
15060
+ :kms_key_id)
15061
+ SENSITIVE = []
15062
+ include Aws::Structure
15063
+ end
15064
+
15065
+ # Summary of edge packaging job.
15066
+ #
15067
+ # @!attribute [rw] edge_packaging_job_arn
15068
+ # The Amazon Resource Name (ARN) of the edge packaging job.
15069
+ # @return [String]
15070
+ #
15071
+ # @!attribute [rw] edge_packaging_job_name
15072
+ # The name of the edge packaging job.
15073
+ # @return [String]
15074
+ #
15075
+ # @!attribute [rw] edge_packaging_job_status
15076
+ # The status of the edge packaging job.
15077
+ # @return [String]
15078
+ #
15079
+ # @!attribute [rw] compilation_job_name
15080
+ # The name of the SageMaker Neo compilation job.
15081
+ # @return [String]
15082
+ #
15083
+ # @!attribute [rw] model_name
15084
+ # The name of the model.
15085
+ # @return [String]
15086
+ #
15087
+ # @!attribute [rw] model_version
15088
+ # The version of the model.
15089
+ # @return [String]
15090
+ #
15091
+ # @!attribute [rw] creation_time
15092
+ # The timestamp of when the job was created.
15093
+ # @return [Time]
15094
+ #
15095
+ # @!attribute [rw] last_modified_time
15096
+ # The timestamp of when the edge packaging job was last updated.
15097
+ # @return [Time]
15098
+ #
15099
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EdgePackagingJobSummary AWS API Documentation
15100
+ #
15101
+ class EdgePackagingJobSummary < Struct.new(
15102
+ :edge_packaging_job_arn,
15103
+ :edge_packaging_job_name,
15104
+ :edge_packaging_job_status,
15105
+ :compilation_job_name,
15106
+ :model_name,
15107
+ :model_version,
15108
+ :creation_time,
15109
+ :last_modified_time)
15110
+ SENSITIVE = []
15111
+ include Aws::Structure
15112
+ end
15113
+
13068
15114
  # @api private
13069
15115
  #
13070
15116
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EnableSagemakerServicecatalogPortfolioInput AWS API Documentation
@@ -13184,6 +15230,12 @@ module Aws::SageMaker
13184
15230
  # local_path: "ProcessingLocalPath", # required
13185
15231
  # s3_input_mode: "Pipe", # accepts Pipe, File
13186
15232
  # s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
15233
+ # features_attribute: "String",
15234
+ # inference_attribute: "String",
15235
+ # probability_attribute: "String",
15236
+ # probability_threshold_attribute: 1.0,
15237
+ # start_time_offset: "MonitoringTimeOffsetString",
15238
+ # end_time_offset: "MonitoringTimeOffsetString",
13187
15239
  # }
13188
15240
  #
13189
15241
  # @!attribute [rw] endpoint_name
@@ -13203,9 +15255,48 @@ module Aws::SageMaker
13203
15255
  # in memory. Defaults to `File`.
13204
15256
  # @return [String]
13205
15257
  #
13206
- # @!attribute [rw] s3_data_distribution_type
13207
- # Whether input data distributed in Amazon S3 is fully replicated or
13208
- # sharded by an S3 key. Defauts to `FullyReplicated`
15258
+ # @!attribute [rw] s3_data_distribution_type
15259
+ # Whether input data distributed in Amazon S3 is fully replicated or
15260
+ # sharded by an S3 key. Defauts to `FullyReplicated`
15261
+ # @return [String]
15262
+ #
15263
+ # @!attribute [rw] features_attribute
15264
+ # The attributes of the input data that are the input features.
15265
+ # @return [String]
15266
+ #
15267
+ # @!attribute [rw] inference_attribute
15268
+ # The attribute of the input data that represents the ground truth
15269
+ # label.
15270
+ # @return [String]
15271
+ #
15272
+ # @!attribute [rw] probability_attribute
15273
+ # In a classification problem, the attribute that represents the class
15274
+ # probability.
15275
+ # @return [String]
15276
+ #
15277
+ # @!attribute [rw] probability_threshold_attribute
15278
+ # The threshold for the class probability to be evaluated as a
15279
+ # positive result.
15280
+ # @return [Float]
15281
+ #
15282
+ # @!attribute [rw] start_time_offset
15283
+ # If specified, monitoring jobs substract this time from the start
15284
+ # time. For information about using offsets for scheduling monitoring
15285
+ # jobs, see [Schedule Model Quality Monitoring Jobs][1].
15286
+ #
15287
+ #
15288
+ #
15289
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor-model-quality-schedule.html
15290
+ # @return [String]
15291
+ #
15292
+ # @!attribute [rw] end_time_offset
15293
+ # If specified, monitoring jobs substract this time from the end time.
15294
+ # For information about using offsets for scheduling monitoring jobs,
15295
+ # see [Schedule Model Quality Monitoring Jobs][1].
15296
+ #
15297
+ #
15298
+ #
15299
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor-model-quality-schedule.html
13209
15300
  # @return [String]
13210
15301
  #
13211
15302
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EndpointInput AWS API Documentation
@@ -13214,7 +15305,13 @@ module Aws::SageMaker
13214
15305
  :endpoint_name,
13215
15306
  :local_path,
13216
15307
  :s3_input_mode,
13217
- :s3_data_distribution_type)
15308
+ :s3_data_distribution_type,
15309
+ :features_attribute,
15310
+ :inference_attribute,
15311
+ :probability_attribute,
15312
+ :probability_threshold_attribute,
15313
+ :start_time_offset,
15314
+ :end_time_offset)
13218
15315
  SENSITIVE = []
13219
15316
  include Aws::Structure
13220
15317
  end
@@ -14025,6 +16122,73 @@ module Aws::SageMaker
14025
16122
  include Aws::Structure
14026
16123
  end
14027
16124
 
16125
+ # @note When making an API call, you may pass GetDeviceFleetReportRequest
16126
+ # data as a hash:
16127
+ #
16128
+ # {
16129
+ # device_fleet_name: "EntityName", # required
16130
+ # }
16131
+ #
16132
+ # @!attribute [rw] device_fleet_name
16133
+ # The name of the fleet.
16134
+ # @return [String]
16135
+ #
16136
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/GetDeviceFleetReportRequest AWS API Documentation
16137
+ #
16138
+ class GetDeviceFleetReportRequest < Struct.new(
16139
+ :device_fleet_name)
16140
+ SENSITIVE = []
16141
+ include Aws::Structure
16142
+ end
16143
+
16144
+ # @!attribute [rw] device_fleet_arn
16145
+ # The Amazon Resource Name (ARN) of the device.
16146
+ # @return [String]
16147
+ #
16148
+ # @!attribute [rw] device_fleet_name
16149
+ # The name of the fleet.
16150
+ # @return [String]
16151
+ #
16152
+ # @!attribute [rw] output_config
16153
+ # The output configuration for storing sample data collected by the
16154
+ # fleet.
16155
+ # @return [Types::EdgeOutputConfig]
16156
+ #
16157
+ # @!attribute [rw] description
16158
+ # Description of the fleet.
16159
+ # @return [String]
16160
+ #
16161
+ # @!attribute [rw] report_generated
16162
+ # Timestamp of when the report was generated.
16163
+ # @return [Time]
16164
+ #
16165
+ # @!attribute [rw] device_stats
16166
+ # Status of devices.
16167
+ # @return [Types::DeviceStats]
16168
+ #
16169
+ # @!attribute [rw] agent_versions
16170
+ # The versions of Edge Manager agent deployed on the fleet.
16171
+ # @return [Array<Types::AgentVersion>]
16172
+ #
16173
+ # @!attribute [rw] model_stats
16174
+ # Status of model on device.
16175
+ # @return [Array<Types::EdgeModelStat>]
16176
+ #
16177
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/GetDeviceFleetReportResponse AWS API Documentation
16178
+ #
16179
+ class GetDeviceFleetReportResponse < Struct.new(
16180
+ :device_fleet_arn,
16181
+ :device_fleet_name,
16182
+ :output_config,
16183
+ :description,
16184
+ :report_generated,
16185
+ :device_stats,
16186
+ :agent_versions,
16187
+ :model_stats)
16188
+ SENSITIVE = []
16189
+ include Aws::Structure
16190
+ end
16191
+
14028
16192
  # @note When making an API call, you may pass GetModelPackageGroupPolicyInput
14029
16193
  # data as a hash:
14030
16194
  #
@@ -18232,6 +20396,246 @@ module Aws::SageMaker
18232
20396
  include Aws::Structure
18233
20397
  end
18234
20398
 
20399
+ # @note When making an API call, you may pass ListDataQualityJobDefinitionsRequest
20400
+ # data as a hash:
20401
+ #
20402
+ # {
20403
+ # endpoint_name: "EndpointName",
20404
+ # sort_by: "Name", # accepts Name, CreationTime
20405
+ # sort_order: "Ascending", # accepts Ascending, Descending
20406
+ # next_token: "NextToken",
20407
+ # max_results: 1,
20408
+ # name_contains: "NameContains",
20409
+ # creation_time_before: Time.now,
20410
+ # creation_time_after: Time.now,
20411
+ # }
20412
+ #
20413
+ # @!attribute [rw] endpoint_name
20414
+ # A filter that lists the data quality job definitions associated with
20415
+ # the specified endpoint.
20416
+ # @return [String]
20417
+ #
20418
+ # @!attribute [rw] sort_by
20419
+ # The field to sort results by. The default is `CreationTime`.
20420
+ # @return [String]
20421
+ #
20422
+ # @!attribute [rw] sort_order
20423
+ # The sort order for results. The default is `Descending`.
20424
+ # @return [String]
20425
+ #
20426
+ # @!attribute [rw] next_token
20427
+ # If the result of the previous `ListDataQualityJobDefinitions`
20428
+ # request was truncated, the response includes a `NextToken`. To
20429
+ # retrieve the next set of transform jobs, use the token in the next
20430
+ # request.&gt;
20431
+ # @return [String]
20432
+ #
20433
+ # @!attribute [rw] max_results
20434
+ # The maximum number of data quality monitoring job definitions to
20435
+ # return in the response.
20436
+ # @return [Integer]
20437
+ #
20438
+ # @!attribute [rw] name_contains
20439
+ # A string in the data quality monitoring job definition name. This
20440
+ # filter returns only data quality monitoring job definitions whose
20441
+ # name contains the specified string.
20442
+ # @return [String]
20443
+ #
20444
+ # @!attribute [rw] creation_time_before
20445
+ # A filter that returns only data quality monitoring job definitions
20446
+ # created before the specified time.
20447
+ # @return [Time]
20448
+ #
20449
+ # @!attribute [rw] creation_time_after
20450
+ # A filter that returns only data quality monitoring job definitions
20451
+ # created after the specified time.
20452
+ # @return [Time]
20453
+ #
20454
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListDataQualityJobDefinitionsRequest AWS API Documentation
20455
+ #
20456
+ class ListDataQualityJobDefinitionsRequest < Struct.new(
20457
+ :endpoint_name,
20458
+ :sort_by,
20459
+ :sort_order,
20460
+ :next_token,
20461
+ :max_results,
20462
+ :name_contains,
20463
+ :creation_time_before,
20464
+ :creation_time_after)
20465
+ SENSITIVE = []
20466
+ include Aws::Structure
20467
+ end
20468
+
20469
+ # @!attribute [rw] job_definition_summaries
20470
+ # A list of data quality monitoring job definitions.
20471
+ # @return [Array<Types::MonitoringJobDefinitionSummary>]
20472
+ #
20473
+ # @!attribute [rw] next_token
20474
+ # If the result of the previous `ListDataQualityJobDefinitions`
20475
+ # request was truncated, the response includes a `NextToken`. To
20476
+ # retrieve the next set of data quality monitoring job definitions,
20477
+ # use the token in the next request.
20478
+ # @return [String]
20479
+ #
20480
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListDataQualityJobDefinitionsResponse AWS API Documentation
20481
+ #
20482
+ class ListDataQualityJobDefinitionsResponse < Struct.new(
20483
+ :job_definition_summaries,
20484
+ :next_token)
20485
+ SENSITIVE = []
20486
+ include Aws::Structure
20487
+ end
20488
+
20489
+ # @note When making an API call, you may pass ListDeviceFleetsRequest
20490
+ # data as a hash:
20491
+ #
20492
+ # {
20493
+ # next_token: "NextToken",
20494
+ # max_results: 1,
20495
+ # creation_time_after: Time.now,
20496
+ # creation_time_before: Time.now,
20497
+ # last_modified_time_after: Time.now,
20498
+ # last_modified_time_before: Time.now,
20499
+ # name_contains: "NameContains",
20500
+ # sort_by: "NAME", # accepts NAME, CREATION_TIME, LAST_MODIFIED_TIME
20501
+ # sort_order: "Ascending", # accepts Ascending, Descending
20502
+ # }
20503
+ #
20504
+ # @!attribute [rw] next_token
20505
+ # The response from the last list when returning a list large enough
20506
+ # to need tokening.
20507
+ # @return [String]
20508
+ #
20509
+ # @!attribute [rw] max_results
20510
+ # The maximum number of results to select.
20511
+ # @return [Integer]
20512
+ #
20513
+ # @!attribute [rw] creation_time_after
20514
+ # Filter fleets where packaging job was created after specified time.
20515
+ # @return [Time]
20516
+ #
20517
+ # @!attribute [rw] creation_time_before
20518
+ # Filter fleets where the edge packaging job was created before
20519
+ # specified time.
20520
+ # @return [Time]
20521
+ #
20522
+ # @!attribute [rw] last_modified_time_after
20523
+ # Select fleets where the job was updated after X
20524
+ # @return [Time]
20525
+ #
20526
+ # @!attribute [rw] last_modified_time_before
20527
+ # Select fleets where the job was updated before X
20528
+ # @return [Time]
20529
+ #
20530
+ # @!attribute [rw] name_contains
20531
+ # Filter for fleets containing this name in their fleet device name.
20532
+ # @return [String]
20533
+ #
20534
+ # @!attribute [rw] sort_by
20535
+ # The column to sort by.
20536
+ # @return [String]
20537
+ #
20538
+ # @!attribute [rw] sort_order
20539
+ # What direction to sort in.
20540
+ # @return [String]
20541
+ #
20542
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListDeviceFleetsRequest AWS API Documentation
20543
+ #
20544
+ class ListDeviceFleetsRequest < Struct.new(
20545
+ :next_token,
20546
+ :max_results,
20547
+ :creation_time_after,
20548
+ :creation_time_before,
20549
+ :last_modified_time_after,
20550
+ :last_modified_time_before,
20551
+ :name_contains,
20552
+ :sort_by,
20553
+ :sort_order)
20554
+ SENSITIVE = []
20555
+ include Aws::Structure
20556
+ end
20557
+
20558
+ # @!attribute [rw] device_fleet_summaries
20559
+ # Summary of the device fleet.
20560
+ # @return [Array<Types::DeviceFleetSummary>]
20561
+ #
20562
+ # @!attribute [rw] next_token
20563
+ # The response from the last list when returning a list large enough
20564
+ # to need tokening.
20565
+ # @return [String]
20566
+ #
20567
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListDeviceFleetsResponse AWS API Documentation
20568
+ #
20569
+ class ListDeviceFleetsResponse < Struct.new(
20570
+ :device_fleet_summaries,
20571
+ :next_token)
20572
+ SENSITIVE = []
20573
+ include Aws::Structure
20574
+ end
20575
+
20576
+ # @note When making an API call, you may pass ListDevicesRequest
20577
+ # data as a hash:
20578
+ #
20579
+ # {
20580
+ # next_token: "NextToken",
20581
+ # max_results: 1,
20582
+ # latest_heartbeat_after: Time.now,
20583
+ # model_name: "EntityName",
20584
+ # device_fleet_name: "EntityName",
20585
+ # }
20586
+ #
20587
+ # @!attribute [rw] next_token
20588
+ # The response from the last list when returning a list large enough
20589
+ # to need tokening.
20590
+ # @return [String]
20591
+ #
20592
+ # @!attribute [rw] max_results
20593
+ # Maximum number of results to select.
20594
+ # @return [Integer]
20595
+ #
20596
+ # @!attribute [rw] latest_heartbeat_after
20597
+ # Select fleets where the job was updated after X
20598
+ # @return [Time]
20599
+ #
20600
+ # @!attribute [rw] model_name
20601
+ # A filter that searches devices that contains this name in any of
20602
+ # their models.
20603
+ # @return [String]
20604
+ #
20605
+ # @!attribute [rw] device_fleet_name
20606
+ # Filter for fleets containing this name in their device fleet name.
20607
+ # @return [String]
20608
+ #
20609
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListDevicesRequest AWS API Documentation
20610
+ #
20611
+ class ListDevicesRequest < Struct.new(
20612
+ :next_token,
20613
+ :max_results,
20614
+ :latest_heartbeat_after,
20615
+ :model_name,
20616
+ :device_fleet_name)
20617
+ SENSITIVE = []
20618
+ include Aws::Structure
20619
+ end
20620
+
20621
+ # @!attribute [rw] device_summaries
20622
+ # Summary of devices.
20623
+ # @return [Array<Types::DeviceSummary>]
20624
+ #
20625
+ # @!attribute [rw] next_token
20626
+ # The response from the last list when returning a list large enough
20627
+ # to need tokening.
20628
+ # @return [String]
20629
+ #
20630
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListDevicesResponse AWS API Documentation
20631
+ #
20632
+ class ListDevicesResponse < Struct.new(
20633
+ :device_summaries,
20634
+ :next_token)
20635
+ SENSITIVE = []
20636
+ include Aws::Structure
20637
+ end
20638
+
18235
20639
  # @note When making an API call, you may pass ListDomainsRequest
18236
20640
  # data as a hash:
18237
20641
  #
@@ -18241,36 +20645,133 @@ module Aws::SageMaker
18241
20645
  # }
18242
20646
  #
18243
20647
  # @!attribute [rw] next_token
18244
- # If the previous response was truncated, you will receive this token.
18245
- # Use it in your next request to receive the next set of results.
20648
+ # If the previous response was truncated, you will receive this token.
20649
+ # Use it in your next request to receive the next set of results.
20650
+ # @return [String]
20651
+ #
20652
+ # @!attribute [rw] max_results
20653
+ # Returns a list up to a specified limit.
20654
+ # @return [Integer]
20655
+ #
20656
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListDomainsRequest AWS API Documentation
20657
+ #
20658
+ class ListDomainsRequest < Struct.new(
20659
+ :next_token,
20660
+ :max_results)
20661
+ SENSITIVE = []
20662
+ include Aws::Structure
20663
+ end
20664
+
20665
+ # @!attribute [rw] domains
20666
+ # The list of domains.
20667
+ # @return [Array<Types::DomainDetails>]
20668
+ #
20669
+ # @!attribute [rw] next_token
20670
+ # If the previous response was truncated, you will receive this token.
20671
+ # Use it in your next request to receive the next set of results.
20672
+ # @return [String]
20673
+ #
20674
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListDomainsResponse AWS API Documentation
20675
+ #
20676
+ class ListDomainsResponse < Struct.new(
20677
+ :domains,
20678
+ :next_token)
20679
+ SENSITIVE = []
20680
+ include Aws::Structure
20681
+ end
20682
+
20683
+ # @note When making an API call, you may pass ListEdgePackagingJobsRequest
20684
+ # data as a hash:
20685
+ #
20686
+ # {
20687
+ # next_token: "NextToken",
20688
+ # max_results: 1,
20689
+ # creation_time_after: Time.now,
20690
+ # creation_time_before: Time.now,
20691
+ # last_modified_time_after: Time.now,
20692
+ # last_modified_time_before: Time.now,
20693
+ # name_contains: "NameContains",
20694
+ # model_name_contains: "NameContains",
20695
+ # status_equals: "STARTING", # accepts STARTING, INPROGRESS, COMPLETED, FAILED, STOPPING, STOPPED
20696
+ # sort_by: "NAME", # accepts NAME, MODEL_NAME, CREATION_TIME, LAST_MODIFIED_TIME, STATUS
20697
+ # sort_order: "Ascending", # accepts Ascending, Descending
20698
+ # }
20699
+ #
20700
+ # @!attribute [rw] next_token
20701
+ # The response from the last list when returning a list large enough
20702
+ # to need tokening.
18246
20703
  # @return [String]
18247
20704
  #
18248
20705
  # @!attribute [rw] max_results
18249
- # Returns a list up to a specified limit.
20706
+ # Maximum number of results to select.
18250
20707
  # @return [Integer]
18251
20708
  #
18252
- # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListDomainsRequest AWS API Documentation
20709
+ # @!attribute [rw] creation_time_after
20710
+ # Select jobs where the job was created after specified time.
20711
+ # @return [Time]
18253
20712
  #
18254
- class ListDomainsRequest < Struct.new(
20713
+ # @!attribute [rw] creation_time_before
20714
+ # Select jobs where the job was created before specified time.
20715
+ # @return [Time]
20716
+ #
20717
+ # @!attribute [rw] last_modified_time_after
20718
+ # Select jobs where the job was updated after specified time.
20719
+ # @return [Time]
20720
+ #
20721
+ # @!attribute [rw] last_modified_time_before
20722
+ # Select jobs where the job was updated before specified time.
20723
+ # @return [Time]
20724
+ #
20725
+ # @!attribute [rw] name_contains
20726
+ # Filter for jobs containing this name in their packaging job name.
20727
+ # @return [String]
20728
+ #
20729
+ # @!attribute [rw] model_name_contains
20730
+ # Filter for jobs where the model name contains this string.
20731
+ # @return [String]
20732
+ #
20733
+ # @!attribute [rw] status_equals
20734
+ # The job status to filter for.
20735
+ # @return [String]
20736
+ #
20737
+ # @!attribute [rw] sort_by
20738
+ # Use to specify what column to sort by.
20739
+ # @return [String]
20740
+ #
20741
+ # @!attribute [rw] sort_order
20742
+ # What direction to sort by.
20743
+ # @return [String]
20744
+ #
20745
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListEdgePackagingJobsRequest AWS API Documentation
20746
+ #
20747
+ class ListEdgePackagingJobsRequest < Struct.new(
18255
20748
  :next_token,
18256
- :max_results)
20749
+ :max_results,
20750
+ :creation_time_after,
20751
+ :creation_time_before,
20752
+ :last_modified_time_after,
20753
+ :last_modified_time_before,
20754
+ :name_contains,
20755
+ :model_name_contains,
20756
+ :status_equals,
20757
+ :sort_by,
20758
+ :sort_order)
18257
20759
  SENSITIVE = []
18258
20760
  include Aws::Structure
18259
20761
  end
18260
20762
 
18261
- # @!attribute [rw] domains
18262
- # The list of domains.
18263
- # @return [Array<Types::DomainDetails>]
20763
+ # @!attribute [rw] edge_packaging_job_summaries
20764
+ # Summaries of edge packaging jobs.
20765
+ # @return [Array<Types::EdgePackagingJobSummary>]
18264
20766
  #
18265
20767
  # @!attribute [rw] next_token
18266
- # If the previous response was truncated, you will receive this token.
18267
- # Use it in your next request to receive the next set of results.
20768
+ # Token to use when calling the next page of results.
18268
20769
  # @return [String]
18269
20770
  #
18270
- # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListDomainsResponse AWS API Documentation
20771
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListEdgePackagingJobsResponse AWS API Documentation
18271
20772
  #
18272
- class ListDomainsResponse < Struct.new(
18273
- :domains,
20773
+ class ListEdgePackagingJobsResponse < Struct.new(
20774
+ :edge_packaging_job_summaries,
18274
20775
  :next_token)
18275
20776
  SENSITIVE = []
18276
20777
  include Aws::Structure
@@ -19221,6 +21722,179 @@ module Aws::SageMaker
19221
21722
  include Aws::Structure
19222
21723
  end
19223
21724
 
21725
+ # @note When making an API call, you may pass ListModelBiasJobDefinitionsRequest
21726
+ # data as a hash:
21727
+ #
21728
+ # {
21729
+ # endpoint_name: "EndpointName",
21730
+ # sort_by: "Name", # accepts Name, CreationTime
21731
+ # sort_order: "Ascending", # accepts Ascending, Descending
21732
+ # next_token: "NextToken",
21733
+ # max_results: 1,
21734
+ # name_contains: "NameContains",
21735
+ # creation_time_before: Time.now,
21736
+ # creation_time_after: Time.now,
21737
+ # }
21738
+ #
21739
+ # @!attribute [rw] endpoint_name
21740
+ # Name of the endpoint to monitor for model bias.
21741
+ # @return [String]
21742
+ #
21743
+ # @!attribute [rw] sort_by
21744
+ # Whether to sort results by the `Name` or `CreationTime` field. The
21745
+ # default is `CreationTime`.
21746
+ # @return [String]
21747
+ #
21748
+ # @!attribute [rw] sort_order
21749
+ # Whether to sort the results in `Ascending` or `Descending` order.
21750
+ # The default is `Descending`.
21751
+ # @return [String]
21752
+ #
21753
+ # @!attribute [rw] next_token
21754
+ # The token returned if the response is truncated. To retrieve the
21755
+ # next set of job executions, use it in the next request.
21756
+ # @return [String]
21757
+ #
21758
+ # @!attribute [rw] max_results
21759
+ # The maximum number of model bias jobs to return in the response. The
21760
+ # default value is 10.
21761
+ # @return [Integer]
21762
+ #
21763
+ # @!attribute [rw] name_contains
21764
+ # Filter for model bias jobs whose name contains a specified string.
21765
+ # @return [String]
21766
+ #
21767
+ # @!attribute [rw] creation_time_before
21768
+ # A filter that returns only model bias jobs created before a
21769
+ # specified time.
21770
+ # @return [Time]
21771
+ #
21772
+ # @!attribute [rw] creation_time_after
21773
+ # A filter that returns only model bias jobs created after a specified
21774
+ # time.
21775
+ # @return [Time]
21776
+ #
21777
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelBiasJobDefinitionsRequest AWS API Documentation
21778
+ #
21779
+ class ListModelBiasJobDefinitionsRequest < Struct.new(
21780
+ :endpoint_name,
21781
+ :sort_by,
21782
+ :sort_order,
21783
+ :next_token,
21784
+ :max_results,
21785
+ :name_contains,
21786
+ :creation_time_before,
21787
+ :creation_time_after)
21788
+ SENSITIVE = []
21789
+ include Aws::Structure
21790
+ end
21791
+
21792
+ # @!attribute [rw] job_definition_summaries
21793
+ # A JSON array in which each element is a summary for a model bias
21794
+ # jobs.
21795
+ # @return [Array<Types::MonitoringJobDefinitionSummary>]
21796
+ #
21797
+ # @!attribute [rw] next_token
21798
+ # If the response is truncated, Amazon SageMaker returns this token.
21799
+ # To retrieve the next set of jobs, use it in the subsequent request.
21800
+ # @return [String]
21801
+ #
21802
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelBiasJobDefinitionsResponse AWS API Documentation
21803
+ #
21804
+ class ListModelBiasJobDefinitionsResponse < Struct.new(
21805
+ :job_definition_summaries,
21806
+ :next_token)
21807
+ SENSITIVE = []
21808
+ include Aws::Structure
21809
+ end
21810
+
21811
+ # @note When making an API call, you may pass ListModelExplainabilityJobDefinitionsRequest
21812
+ # data as a hash:
21813
+ #
21814
+ # {
21815
+ # endpoint_name: "EndpointName",
21816
+ # sort_by: "Name", # accepts Name, CreationTime
21817
+ # sort_order: "Ascending", # accepts Ascending, Descending
21818
+ # next_token: "NextToken",
21819
+ # max_results: 1,
21820
+ # name_contains: "NameContains",
21821
+ # creation_time_before: Time.now,
21822
+ # creation_time_after: Time.now,
21823
+ # }
21824
+ #
21825
+ # @!attribute [rw] endpoint_name
21826
+ # Name of the endpoint to monitor for model explainability.
21827
+ # @return [String]
21828
+ #
21829
+ # @!attribute [rw] sort_by
21830
+ # Whether to sort results by the `Name` or `CreationTime` field. The
21831
+ # default is `CreationTime`.
21832
+ # @return [String]
21833
+ #
21834
+ # @!attribute [rw] sort_order
21835
+ # Whether to sort the results in `Ascending` or `Descending` order.
21836
+ # The default is `Descending`.
21837
+ # @return [String]
21838
+ #
21839
+ # @!attribute [rw] next_token
21840
+ # The token returned if the response is truncated. To retrieve the
21841
+ # next set of job executions, use it in the next request.
21842
+ # @return [String]
21843
+ #
21844
+ # @!attribute [rw] max_results
21845
+ # The maximum number of jobs to return in the response. The default
21846
+ # value is 10.
21847
+ # @return [Integer]
21848
+ #
21849
+ # @!attribute [rw] name_contains
21850
+ # Filter for model explainability jobs whose name contains a specified
21851
+ # string.
21852
+ # @return [String]
21853
+ #
21854
+ # @!attribute [rw] creation_time_before
21855
+ # A filter that returns only model explainability jobs created before
21856
+ # a specified time.
21857
+ # @return [Time]
21858
+ #
21859
+ # @!attribute [rw] creation_time_after
21860
+ # A filter that returns only model explainability jobs created after a
21861
+ # specified time.
21862
+ # @return [Time]
21863
+ #
21864
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelExplainabilityJobDefinitionsRequest AWS API Documentation
21865
+ #
21866
+ class ListModelExplainabilityJobDefinitionsRequest < Struct.new(
21867
+ :endpoint_name,
21868
+ :sort_by,
21869
+ :sort_order,
21870
+ :next_token,
21871
+ :max_results,
21872
+ :name_contains,
21873
+ :creation_time_before,
21874
+ :creation_time_after)
21875
+ SENSITIVE = []
21876
+ include Aws::Structure
21877
+ end
21878
+
21879
+ # @!attribute [rw] job_definition_summaries
21880
+ # A JSON array in which each element is a summary for a explainability
21881
+ # bias jobs.
21882
+ # @return [Array<Types::MonitoringJobDefinitionSummary>]
21883
+ #
21884
+ # @!attribute [rw] next_token
21885
+ # If the response is truncated, Amazon SageMaker returns this token.
21886
+ # To retrieve the next set of jobs, use it in the subsequent request.
21887
+ # @return [String]
21888
+ #
21889
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelExplainabilityJobDefinitionsResponse AWS API Documentation
21890
+ #
21891
+ class ListModelExplainabilityJobDefinitionsResponse < Struct.new(
21892
+ :job_definition_summaries,
21893
+ :next_token)
21894
+ SENSITIVE = []
21895
+ include Aws::Structure
21896
+ end
21897
+
19224
21898
  # @note When making an API call, you may pass ListModelPackageGroupsInput
19225
21899
  # data as a hash:
19226
21900
  #
@@ -19408,6 +22082,95 @@ module Aws::SageMaker
19408
22082
  include Aws::Structure
19409
22083
  end
19410
22084
 
22085
+ # @note When making an API call, you may pass ListModelQualityJobDefinitionsRequest
22086
+ # data as a hash:
22087
+ #
22088
+ # {
22089
+ # endpoint_name: "EndpointName",
22090
+ # sort_by: "Name", # accepts Name, CreationTime
22091
+ # sort_order: "Ascending", # accepts Ascending, Descending
22092
+ # next_token: "NextToken",
22093
+ # max_results: 1,
22094
+ # name_contains: "NameContains",
22095
+ # creation_time_before: Time.now,
22096
+ # creation_time_after: Time.now,
22097
+ # }
22098
+ #
22099
+ # @!attribute [rw] endpoint_name
22100
+ # A filter that returns only model quality monitoring job definitions
22101
+ # that are associated with the specified endpoint.
22102
+ # @return [String]
22103
+ #
22104
+ # @!attribute [rw] sort_by
22105
+ # The field to sort results by. The default is `CreationTime`.
22106
+ # @return [String]
22107
+ #
22108
+ # @!attribute [rw] sort_order
22109
+ # The sort order for results. The default is `Descending`.
22110
+ # @return [String]
22111
+ #
22112
+ # @!attribute [rw] next_token
22113
+ # If the result of the previous `ListModelQualityJobDefinitions`
22114
+ # request was truncated, the response includes a `NextToken`. To
22115
+ # retrieve the next set of model quality monitoring job definitions,
22116
+ # use the token in the next request.
22117
+ # @return [String]
22118
+ #
22119
+ # @!attribute [rw] max_results
22120
+ # The maximum number of results to return in a call to
22121
+ # `ListModelQualityJobDefinitions`.
22122
+ # @return [Integer]
22123
+ #
22124
+ # @!attribute [rw] name_contains
22125
+ # A string in the transform job name. This filter returns only model
22126
+ # quality monitoring job definitions whose name contains the specified
22127
+ # string.
22128
+ # @return [String]
22129
+ #
22130
+ # @!attribute [rw] creation_time_before
22131
+ # A filter that returns only model quality monitoring job definitions
22132
+ # created before the specified time.
22133
+ # @return [Time]
22134
+ #
22135
+ # @!attribute [rw] creation_time_after
22136
+ # A filter that returns only model quality monitoring job definitions
22137
+ # created after the specified time.
22138
+ # @return [Time]
22139
+ #
22140
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelQualityJobDefinitionsRequest AWS API Documentation
22141
+ #
22142
+ class ListModelQualityJobDefinitionsRequest < Struct.new(
22143
+ :endpoint_name,
22144
+ :sort_by,
22145
+ :sort_order,
22146
+ :next_token,
22147
+ :max_results,
22148
+ :name_contains,
22149
+ :creation_time_before,
22150
+ :creation_time_after)
22151
+ SENSITIVE = []
22152
+ include Aws::Structure
22153
+ end
22154
+
22155
+ # @!attribute [rw] job_definition_summaries
22156
+ # A list of summaries of model quality monitoring job definitions.
22157
+ # @return [Array<Types::MonitoringJobDefinitionSummary>]
22158
+ #
22159
+ # @!attribute [rw] next_token
22160
+ # If the response is truncated, Amazon SageMaker returns this token.
22161
+ # To retrieve the next set of model quality monitoring job
22162
+ # definitions, use it in the next request.
22163
+ # @return [String]
22164
+ #
22165
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelQualityJobDefinitionsResponse AWS API Documentation
22166
+ #
22167
+ class ListModelQualityJobDefinitionsResponse < Struct.new(
22168
+ :job_definition_summaries,
22169
+ :next_token)
22170
+ SENSITIVE = []
22171
+ include Aws::Structure
22172
+ end
22173
+
19411
22174
  # @note When making an API call, you may pass ListModelsInput
19412
22175
  # data as a hash:
19413
22176
  #
@@ -19504,6 +22267,8 @@ module Aws::SageMaker
19504
22267
  # last_modified_time_before: Time.now,
19505
22268
  # last_modified_time_after: Time.now,
19506
22269
  # status_equals: "Pending", # accepts Pending, Completed, CompletedWithViolations, InProgress, Failed, Stopping, Stopped
22270
+ # monitoring_job_definition_name: "MonitoringJobDefinitionName",
22271
+ # monitoring_type_equals: "DataQuality", # accepts DataQuality, ModelQuality, ModelBias, ModelExplainability
19507
22272
  # }
19508
22273
  #
19509
22274
  # @!attribute [rw] monitoring_schedule_name
@@ -19562,6 +22327,16 @@ module Aws::SageMaker
19562
22327
  # A filter that retrieves only jobs with a specific status.
19563
22328
  # @return [String]
19564
22329
  #
22330
+ # @!attribute [rw] monitoring_job_definition_name
22331
+ # Gets a list of the monitoring job runs of the specified monitoring
22332
+ # job definitions.
22333
+ # @return [String]
22334
+ #
22335
+ # @!attribute [rw] monitoring_type_equals
22336
+ # A filter that returns only the monitoring job runs of the specified
22337
+ # monitoring type.
22338
+ # @return [String]
22339
+ #
19565
22340
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListMonitoringExecutionsRequest AWS API Documentation
19566
22341
  #
19567
22342
  class ListMonitoringExecutionsRequest < Struct.new(
@@ -19577,7 +22352,9 @@ module Aws::SageMaker
19577
22352
  :creation_time_after,
19578
22353
  :last_modified_time_before,
19579
22354
  :last_modified_time_after,
19580
- :status_equals)
22355
+ :status_equals,
22356
+ :monitoring_job_definition_name,
22357
+ :monitoring_type_equals)
19581
22358
  SENSITIVE = []
19582
22359
  include Aws::Structure
19583
22360
  end
@@ -19616,6 +22393,8 @@ module Aws::SageMaker
19616
22393
  # last_modified_time_before: Time.now,
19617
22394
  # last_modified_time_after: Time.now,
19618
22395
  # status_equals: "Pending", # accepts Pending, Failed, Scheduled, Stopped
22396
+ # monitoring_job_definition_name: "MonitoringJobDefinitionName",
22397
+ # monitoring_type_equals: "DataQuality", # accepts DataQuality, ModelQuality, ModelBias, ModelExplainability
19619
22398
  # }
19620
22399
  #
19621
22400
  # @!attribute [rw] endpoint_name
@@ -19672,6 +22451,16 @@ module Aws::SageMaker
19672
22451
  # specified time.
19673
22452
  # @return [String]
19674
22453
  #
22454
+ # @!attribute [rw] monitoring_job_definition_name
22455
+ # Gets a list of the monitoring schedules for the specified monitoring
22456
+ # job definition.
22457
+ # @return [String]
22458
+ #
22459
+ # @!attribute [rw] monitoring_type_equals
22460
+ # A filter that returns only the monitoring schedules for the
22461
+ # specified monitoring type.
22462
+ # @return [String]
22463
+ #
19675
22464
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListMonitoringSchedulesRequest AWS API Documentation
19676
22465
  #
19677
22466
  class ListMonitoringSchedulesRequest < Struct.new(
@@ -19685,7 +22474,9 @@ module Aws::SageMaker
19685
22474
  :creation_time_after,
19686
22475
  :last_modified_time_before,
19687
22476
  :last_modified_time_after,
19688
- :status_equals)
22477
+ :status_equals,
22478
+ :monitoring_job_definition_name,
22479
+ :monitoring_type_equals)
19689
22480
  SENSITIVE = []
19690
22481
  include Aws::Structure
19691
22482
  end
@@ -19697,7 +22488,7 @@ module Aws::SageMaker
19697
22488
  #
19698
22489
  # @!attribute [rw] next_token
19699
22490
  # If the response is truncated, Amazon SageMaker returns this token.
19700
- # To retrieve the next set of jobs, use it in the subsequent reques
22491
+ # To retrieve the next set of jobs, use it in the subsequent request.
19701
22492
  # @return [String]
19702
22493
  #
19703
22494
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListMonitoringSchedulesResponse AWS API Documentation
@@ -21347,6 +24138,116 @@ module Aws::SageMaker
21347
24138
  include Aws::Structure
21348
24139
  end
21349
24140
 
24141
+ # Docker container image configuration object for the model bias job.
24142
+ #
24143
+ # @note When making an API call, you may pass ModelBiasAppSpecification
24144
+ # data as a hash:
24145
+ #
24146
+ # {
24147
+ # image_uri: "ImageUri", # required
24148
+ # config_uri: "S3Uri", # required
24149
+ # environment: {
24150
+ # "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
24151
+ # },
24152
+ # }
24153
+ #
24154
+ # @!attribute [rw] image_uri
24155
+ # The container image to be run by the model bias job.
24156
+ # @return [String]
24157
+ #
24158
+ # @!attribute [rw] config_uri
24159
+ # JSON formatted S3 file that defines bias parameters. For more
24160
+ # information on this JSON configuration file, see [Configure bias
24161
+ # parameters][1].
24162
+ #
24163
+ #
24164
+ #
24165
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/json-bias-parameter-config.html
24166
+ # @return [String]
24167
+ #
24168
+ # @!attribute [rw] environment
24169
+ # Sets the environment variables in the Docker container.
24170
+ # @return [Hash<String,String>]
24171
+ #
24172
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelBiasAppSpecification AWS API Documentation
24173
+ #
24174
+ class ModelBiasAppSpecification < Struct.new(
24175
+ :image_uri,
24176
+ :config_uri,
24177
+ :environment)
24178
+ SENSITIVE = []
24179
+ include Aws::Structure
24180
+ end
24181
+
24182
+ # The configuration for a baseline model bias job.
24183
+ #
24184
+ # @note When making an API call, you may pass ModelBiasBaselineConfig
24185
+ # data as a hash:
24186
+ #
24187
+ # {
24188
+ # baselining_job_name: "ProcessingJobName",
24189
+ # constraints_resource: {
24190
+ # s3_uri: "S3Uri",
24191
+ # },
24192
+ # }
24193
+ #
24194
+ # @!attribute [rw] baselining_job_name
24195
+ # The name of the baseline model bias job.
24196
+ # @return [String]
24197
+ #
24198
+ # @!attribute [rw] constraints_resource
24199
+ # The constraints resource for a monitoring job.
24200
+ # @return [Types::MonitoringConstraintsResource]
24201
+ #
24202
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelBiasBaselineConfig AWS API Documentation
24203
+ #
24204
+ class ModelBiasBaselineConfig < Struct.new(
24205
+ :baselining_job_name,
24206
+ :constraints_resource)
24207
+ SENSITIVE = []
24208
+ include Aws::Structure
24209
+ end
24210
+
24211
+ # Inputs for the model bias job.
24212
+ #
24213
+ # @note When making an API call, you may pass ModelBiasJobInput
24214
+ # data as a hash:
24215
+ #
24216
+ # {
24217
+ # endpoint_input: { # required
24218
+ # endpoint_name: "EndpointName", # required
24219
+ # local_path: "ProcessingLocalPath", # required
24220
+ # s3_input_mode: "Pipe", # accepts Pipe, File
24221
+ # s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
24222
+ # features_attribute: "String",
24223
+ # inference_attribute: "String",
24224
+ # probability_attribute: "String",
24225
+ # probability_threshold_attribute: 1.0,
24226
+ # start_time_offset: "MonitoringTimeOffsetString",
24227
+ # end_time_offset: "MonitoringTimeOffsetString",
24228
+ # },
24229
+ # ground_truth_s3_input: { # required
24230
+ # s3_uri: "MonitoringS3Uri",
24231
+ # },
24232
+ # }
24233
+ #
24234
+ # @!attribute [rw] endpoint_input
24235
+ # Input object for the endpoint
24236
+ # @return [Types::EndpointInput]
24237
+ #
24238
+ # @!attribute [rw] ground_truth_s3_input
24239
+ # Location of ground truth labels to use in model bias job.
24240
+ # @return [Types::MonitoringGroundTruthS3Input]
24241
+ #
24242
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelBiasJobInput AWS API Documentation
24243
+ #
24244
+ class ModelBiasJobInput < Struct.new(
24245
+ :endpoint_input,
24246
+ :ground_truth_s3_input)
24247
+ SENSITIVE = []
24248
+ include Aws::Structure
24249
+ end
24250
+
21350
24251
  # Configures the timeout and maximum number of retries for processing a
21351
24252
  # transform job invocation.
21352
24253
  #
@@ -21426,6 +24327,109 @@ module Aws::SageMaker
21426
24327
  include Aws::Structure
21427
24328
  end
21428
24329
 
24330
+ # Docker container image configuration object for the model
24331
+ # explainability job.
24332
+ #
24333
+ # @note When making an API call, you may pass ModelExplainabilityAppSpecification
24334
+ # data as a hash:
24335
+ #
24336
+ # {
24337
+ # image_uri: "ImageUri", # required
24338
+ # config_uri: "S3Uri", # required
24339
+ # environment: {
24340
+ # "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
24341
+ # },
24342
+ # }
24343
+ #
24344
+ # @!attribute [rw] image_uri
24345
+ # The container image to be run by the model explainability job.
24346
+ # @return [String]
24347
+ #
24348
+ # @!attribute [rw] config_uri
24349
+ # JSON formatted S3 file that defines explainability parameters. For
24350
+ # more information on this JSON configuration file, see [Configure
24351
+ # model explainability parameters][1].
24352
+ #
24353
+ #
24354
+ #
24355
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/json-model-explainability-parameter-config.html
24356
+ # @return [String]
24357
+ #
24358
+ # @!attribute [rw] environment
24359
+ # Sets the environment variables in the Docker container.
24360
+ # @return [Hash<String,String>]
24361
+ #
24362
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelExplainabilityAppSpecification AWS API Documentation
24363
+ #
24364
+ class ModelExplainabilityAppSpecification < Struct.new(
24365
+ :image_uri,
24366
+ :config_uri,
24367
+ :environment)
24368
+ SENSITIVE = []
24369
+ include Aws::Structure
24370
+ end
24371
+
24372
+ # The configuration for a baseline model explainability job.
24373
+ #
24374
+ # @note When making an API call, you may pass ModelExplainabilityBaselineConfig
24375
+ # data as a hash:
24376
+ #
24377
+ # {
24378
+ # baselining_job_name: "ProcessingJobName",
24379
+ # constraints_resource: {
24380
+ # s3_uri: "S3Uri",
24381
+ # },
24382
+ # }
24383
+ #
24384
+ # @!attribute [rw] baselining_job_name
24385
+ # The name of the baseline model explainability job.
24386
+ # @return [String]
24387
+ #
24388
+ # @!attribute [rw] constraints_resource
24389
+ # The constraints resource for a monitoring job.
24390
+ # @return [Types::MonitoringConstraintsResource]
24391
+ #
24392
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelExplainabilityBaselineConfig AWS API Documentation
24393
+ #
24394
+ class ModelExplainabilityBaselineConfig < Struct.new(
24395
+ :baselining_job_name,
24396
+ :constraints_resource)
24397
+ SENSITIVE = []
24398
+ include Aws::Structure
24399
+ end
24400
+
24401
+ # Inputs for the model explainability job.
24402
+ #
24403
+ # @note When making an API call, you may pass ModelExplainabilityJobInput
24404
+ # data as a hash:
24405
+ #
24406
+ # {
24407
+ # endpoint_input: { # required
24408
+ # endpoint_name: "EndpointName", # required
24409
+ # local_path: "ProcessingLocalPath", # required
24410
+ # s3_input_mode: "Pipe", # accepts Pipe, File
24411
+ # s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
24412
+ # features_attribute: "String",
24413
+ # inference_attribute: "String",
24414
+ # probability_attribute: "String",
24415
+ # probability_threshold_attribute: 1.0,
24416
+ # start_time_offset: "MonitoringTimeOffsetString",
24417
+ # end_time_offset: "MonitoringTimeOffsetString",
24418
+ # },
24419
+ # }
24420
+ #
24421
+ # @!attribute [rw] endpoint_input
24422
+ # Input object for the endpoint
24423
+ # @return [Types::EndpointInput]
24424
+ #
24425
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelExplainabilityJobInput AWS API Documentation
24426
+ #
24427
+ class ModelExplainabilityJobInput < Struct.new(
24428
+ :endpoint_input)
24429
+ SENSITIVE = []
24430
+ include Aws::Structure
24431
+ end
24432
+
21429
24433
  # Contains metrics captured from a model.
21430
24434
  #
21431
24435
  # @note When making an API call, you may pass ModelMetrics
@@ -22057,19 +25061,160 @@ module Aws::SageMaker
22057
25061
  # },
22058
25062
  # }
22059
25063
  #
22060
- # @!attribute [rw] statistics
22061
- # Model quality statistics.
22062
- # @return [Types::MetricsSource]
25064
+ # @!attribute [rw] statistics
25065
+ # Model quality statistics.
25066
+ # @return [Types::MetricsSource]
25067
+ #
25068
+ # @!attribute [rw] constraints
25069
+ # Model quality constraints.
25070
+ # @return [Types::MetricsSource]
25071
+ #
25072
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelQuality AWS API Documentation
25073
+ #
25074
+ class ModelQuality < Struct.new(
25075
+ :statistics,
25076
+ :constraints)
25077
+ SENSITIVE = []
25078
+ include Aws::Structure
25079
+ end
25080
+
25081
+ # Container image configuration object for the monitoring job.
25082
+ #
25083
+ # @note When making an API call, you may pass ModelQualityAppSpecification
25084
+ # data as a hash:
25085
+ #
25086
+ # {
25087
+ # image_uri: "ImageUri", # required
25088
+ # container_entrypoint: ["ContainerEntrypointString"],
25089
+ # container_arguments: ["ContainerArgument"],
25090
+ # record_preprocessor_source_uri: "S3Uri",
25091
+ # post_analytics_processor_source_uri: "S3Uri",
25092
+ # problem_type: "BinaryClassification", # accepts BinaryClassification, MulticlassClassification, Regression
25093
+ # environment: {
25094
+ # "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
25095
+ # },
25096
+ # }
25097
+ #
25098
+ # @!attribute [rw] image_uri
25099
+ # The address of the container image that the monitoring job runs.
25100
+ # @return [String]
25101
+ #
25102
+ # @!attribute [rw] container_entrypoint
25103
+ # Specifies the entrypoint for a container that the monitoring job
25104
+ # runs.
25105
+ # @return [Array<String>]
25106
+ #
25107
+ # @!attribute [rw] container_arguments
25108
+ # An array of arguments for the container used to run the monitoring
25109
+ # job.
25110
+ # @return [Array<String>]
25111
+ #
25112
+ # @!attribute [rw] record_preprocessor_source_uri
25113
+ # An Amazon S3 URI to a script that is called per row prior to running
25114
+ # analysis. It can base64 decode the payload and convert it into a
25115
+ # flatted json so that the built-in container can use the converted
25116
+ # data. Applicable only for the built-in (first party) containers.
25117
+ # @return [String]
25118
+ #
25119
+ # @!attribute [rw] post_analytics_processor_source_uri
25120
+ # An Amazon S3 URI to a script that is called after analysis has been
25121
+ # performed. Applicable only for the built-in (first party)
25122
+ # containers.
25123
+ # @return [String]
25124
+ #
25125
+ # @!attribute [rw] problem_type
25126
+ # The machine learning problem type of the model that the monitoring
25127
+ # job monitors.
25128
+ # @return [String]
25129
+ #
25130
+ # @!attribute [rw] environment
25131
+ # Sets the environment variables in the container that the monitoring
25132
+ # job runs.
25133
+ # @return [Hash<String,String>]
25134
+ #
25135
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelQualityAppSpecification AWS API Documentation
25136
+ #
25137
+ class ModelQualityAppSpecification < Struct.new(
25138
+ :image_uri,
25139
+ :container_entrypoint,
25140
+ :container_arguments,
25141
+ :record_preprocessor_source_uri,
25142
+ :post_analytics_processor_source_uri,
25143
+ :problem_type,
25144
+ :environment)
25145
+ SENSITIVE = []
25146
+ include Aws::Structure
25147
+ end
25148
+
25149
+ # Configuration for monitoring constraints and monitoring statistics.
25150
+ # These baseline resources are compared against the results of the
25151
+ # current job from the series of jobs scheduled to collect data
25152
+ # periodically.
25153
+ #
25154
+ # @note When making an API call, you may pass ModelQualityBaselineConfig
25155
+ # data as a hash:
25156
+ #
25157
+ # {
25158
+ # baselining_job_name: "ProcessingJobName",
25159
+ # constraints_resource: {
25160
+ # s3_uri: "S3Uri",
25161
+ # },
25162
+ # }
25163
+ #
25164
+ # @!attribute [rw] baselining_job_name
25165
+ # The name of the job that performs baselining for the monitoring job.
25166
+ # @return [String]
25167
+ #
25168
+ # @!attribute [rw] constraints_resource
25169
+ # The constraints resource for a monitoring job.
25170
+ # @return [Types::MonitoringConstraintsResource]
25171
+ #
25172
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelQualityBaselineConfig AWS API Documentation
25173
+ #
25174
+ class ModelQualityBaselineConfig < Struct.new(
25175
+ :baselining_job_name,
25176
+ :constraints_resource)
25177
+ SENSITIVE = []
25178
+ include Aws::Structure
25179
+ end
25180
+
25181
+ # The input for the model quality monitoring job. Currently endponts are
25182
+ # supported for input for model quality monitoring jobs.
25183
+ #
25184
+ # @note When making an API call, you may pass ModelQualityJobInput
25185
+ # data as a hash:
25186
+ #
25187
+ # {
25188
+ # endpoint_input: { # required
25189
+ # endpoint_name: "EndpointName", # required
25190
+ # local_path: "ProcessingLocalPath", # required
25191
+ # s3_input_mode: "Pipe", # accepts Pipe, File
25192
+ # s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
25193
+ # features_attribute: "String",
25194
+ # inference_attribute: "String",
25195
+ # probability_attribute: "String",
25196
+ # probability_threshold_attribute: 1.0,
25197
+ # start_time_offset: "MonitoringTimeOffsetString",
25198
+ # end_time_offset: "MonitoringTimeOffsetString",
25199
+ # },
25200
+ # ground_truth_s3_input: { # required
25201
+ # s3_uri: "MonitoringS3Uri",
25202
+ # },
25203
+ # }
25204
+ #
25205
+ # @!attribute [rw] endpoint_input
25206
+ # Input object for the endpoint
25207
+ # @return [Types::EndpointInput]
22063
25208
  #
22064
- # @!attribute [rw] constraints
22065
- # Model quality constraints.
22066
- # @return [Types::MetricsSource]
25209
+ # @!attribute [rw] ground_truth_s3_input
25210
+ # The ground truth label provided for the model.
25211
+ # @return [Types::MonitoringGroundTruthS3Input]
22067
25212
  #
22068
- # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelQuality AWS API Documentation
25213
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelQualityJobInput AWS API Documentation
22069
25214
  #
22070
- class ModelQuality < Struct.new(
22071
- :statistics,
22072
- :constraints)
25215
+ class ModelQualityJobInput < Struct.new(
25216
+ :endpoint_input,
25217
+ :ground_truth_s3_input)
22073
25218
  SENSITIVE = []
22074
25219
  include Aws::Structure
22075
25220
  end
@@ -22173,6 +25318,7 @@ module Aws::SageMaker
22173
25318
  # data as a hash:
22174
25319
  #
22175
25320
  # {
25321
+ # baselining_job_name: "ProcessingJobName",
22176
25322
  # constraints_resource: {
22177
25323
  # s3_uri: "S3Uri",
22178
25324
  # },
@@ -22181,6 +25327,10 @@ module Aws::SageMaker
22181
25327
  # },
22182
25328
  # }
22183
25329
  #
25330
+ # @!attribute [rw] baselining_job_name
25331
+ # The name of the job that performs baselining for the monitoring job.
25332
+ # @return [String]
25333
+ #
22184
25334
  # @!attribute [rw] constraints_resource
22185
25335
  # The baseline constraint file in Amazon S3 that the current
22186
25336
  # monitoring job should validated against.
@@ -22194,6 +25344,7 @@ module Aws::SageMaker
22194
25344
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MonitoringBaselineConfig AWS API Documentation
22195
25345
  #
22196
25346
  class MonitoringBaselineConfig < Struct.new(
25347
+ :baselining_job_name,
22197
25348
  :constraints_resource,
22198
25349
  :statistics_resource)
22199
25350
  SENSITIVE = []
@@ -22293,13 +25444,21 @@ module Aws::SageMaker
22293
25444
  # @return [String]
22294
25445
  #
22295
25446
  # @!attribute [rw] endpoint_name
22296
- # The name of teh endpoint used to run the monitoring job.
25447
+ # The name of the endpoint used to run the monitoring job.
22297
25448
  # @return [String]
22298
25449
  #
22299
25450
  # @!attribute [rw] failure_reason
22300
25451
  # Contains the reason a monitoring job failed, if it failed.
22301
25452
  # @return [String]
22302
25453
  #
25454
+ # @!attribute [rw] monitoring_job_definition_name
25455
+ # The name of the monitoring job.
25456
+ # @return [String]
25457
+ #
25458
+ # @!attribute [rw] monitoring_type
25459
+ # The type of the monitoring job.
25460
+ # @return [String]
25461
+ #
22303
25462
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MonitoringExecutionSummary AWS API Documentation
22304
25463
  #
22305
25464
  class MonitoringExecutionSummary < Struct.new(
@@ -22310,7 +25469,30 @@ module Aws::SageMaker
22310
25469
  :monitoring_execution_status,
22311
25470
  :processing_job_arn,
22312
25471
  :endpoint_name,
22313
- :failure_reason)
25472
+ :failure_reason,
25473
+ :monitoring_job_definition_name,
25474
+ :monitoring_type)
25475
+ SENSITIVE = []
25476
+ include Aws::Structure
25477
+ end
25478
+
25479
+ # The ground truth labels for the dataset used for the monitoring job.
25480
+ #
25481
+ # @note When making an API call, you may pass MonitoringGroundTruthS3Input
25482
+ # data as a hash:
25483
+ #
25484
+ # {
25485
+ # s3_uri: "MonitoringS3Uri",
25486
+ # }
25487
+ #
25488
+ # @!attribute [rw] s3_uri
25489
+ # The address of the Amazon S3 location of the ground truth labels.
25490
+ # @return [String]
25491
+ #
25492
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MonitoringGroundTruthS3Input AWS API Documentation
25493
+ #
25494
+ class MonitoringGroundTruthS3Input < Struct.new(
25495
+ :s3_uri)
22314
25496
  SENSITIVE = []
22315
25497
  include Aws::Structure
22316
25498
  end
@@ -22326,6 +25508,12 @@ module Aws::SageMaker
22326
25508
  # local_path: "ProcessingLocalPath", # required
22327
25509
  # s3_input_mode: "Pipe", # accepts Pipe, File
22328
25510
  # s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
25511
+ # features_attribute: "String",
25512
+ # inference_attribute: "String",
25513
+ # probability_attribute: "String",
25514
+ # probability_threshold_attribute: 1.0,
25515
+ # start_time_offset: "MonitoringTimeOffsetString",
25516
+ # end_time_offset: "MonitoringTimeOffsetString",
22329
25517
  # },
22330
25518
  # }
22331
25519
  #
@@ -22348,6 +25536,7 @@ module Aws::SageMaker
22348
25536
  #
22349
25537
  # {
22350
25538
  # baseline_config: {
25539
+ # baselining_job_name: "ProcessingJobName",
22351
25540
  # constraints_resource: {
22352
25541
  # s3_uri: "S3Uri",
22353
25542
  # },
@@ -22362,6 +25551,12 @@ module Aws::SageMaker
22362
25551
  # local_path: "ProcessingLocalPath", # required
22363
25552
  # s3_input_mode: "Pipe", # accepts Pipe, File
22364
25553
  # s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
25554
+ # features_attribute: "String",
25555
+ # inference_attribute: "String",
25556
+ # probability_attribute: "String",
25557
+ # probability_threshold_attribute: 1.0,
25558
+ # start_time_offset: "MonitoringTimeOffsetString",
25559
+ # end_time_offset: "MonitoringTimeOffsetString",
22365
25560
  # },
22366
25561
  # },
22367
25562
  # ],
@@ -22469,6 +25664,84 @@ module Aws::SageMaker
22469
25664
  include Aws::Structure
22470
25665
  end
22471
25666
 
25667
+ # Summary information about a monitoring job.
25668
+ #
25669
+ # @!attribute [rw] monitoring_job_definition_name
25670
+ # The name of the monitoring job.
25671
+ # @return [String]
25672
+ #
25673
+ # @!attribute [rw] monitoring_job_definition_arn
25674
+ # The Amazon Resource Name (ARN) of the monitoring job.
25675
+ # @return [String]
25676
+ #
25677
+ # @!attribute [rw] creation_time
25678
+ # The time that the monitoring job was created.
25679
+ # @return [Time]
25680
+ #
25681
+ # @!attribute [rw] endpoint_name
25682
+ # The name of the endpoint that the job monitors.
25683
+ # @return [String]
25684
+ #
25685
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MonitoringJobDefinitionSummary AWS API Documentation
25686
+ #
25687
+ class MonitoringJobDefinitionSummary < Struct.new(
25688
+ :monitoring_job_definition_name,
25689
+ :monitoring_job_definition_arn,
25690
+ :creation_time,
25691
+ :endpoint_name)
25692
+ SENSITIVE = []
25693
+ include Aws::Structure
25694
+ end
25695
+
25696
+ # The networking configuration for the monitoring job.
25697
+ #
25698
+ # @note When making an API call, you may pass MonitoringNetworkConfig
25699
+ # data as a hash:
25700
+ #
25701
+ # {
25702
+ # enable_inter_container_traffic_encryption: false,
25703
+ # enable_network_isolation: false,
25704
+ # vpc_config: {
25705
+ # security_group_ids: ["SecurityGroupId"], # required
25706
+ # subnets: ["SubnetId"], # required
25707
+ # },
25708
+ # }
25709
+ #
25710
+ # @!attribute [rw] enable_inter_container_traffic_encryption
25711
+ # Whether to encrypt all communications between the instances used for
25712
+ # the monitoring jobs. Choose `True` to encrypt communications.
25713
+ # Encryption provides greater security for distributed jobs, but the
25714
+ # processing might take longer.
25715
+ # @return [Boolean]
25716
+ #
25717
+ # @!attribute [rw] enable_network_isolation
25718
+ # Whether to allow inbound and outbound network calls to and from the
25719
+ # containers used for the monitoring job.
25720
+ # @return [Boolean]
25721
+ #
25722
+ # @!attribute [rw] vpc_config
25723
+ # Specifies a VPC that your training jobs and hosted models have
25724
+ # access to. Control access to and from your training and model
25725
+ # containers by configuring the VPC. For more information, see
25726
+ # [Protect Endpoints by Using an Amazon Virtual Private Cloud][1] and
25727
+ # [Protect Training Jobs by Using an Amazon Virtual Private Cloud][2].
25728
+ #
25729
+ #
25730
+ #
25731
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/host-vpc.html
25732
+ # [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/train-vpc.html
25733
+ # @return [Types::VpcConfig]
25734
+ #
25735
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MonitoringNetworkConfig AWS API Documentation
25736
+ #
25737
+ class MonitoringNetworkConfig < Struct.new(
25738
+ :enable_inter_container_traffic_encryption,
25739
+ :enable_network_isolation,
25740
+ :vpc_config)
25741
+ SENSITIVE = []
25742
+ include Aws::Structure
25743
+ end
25744
+
22472
25745
  # The output object for a monitoring job.
22473
25746
  #
22474
25747
  # @note When making an API call, you may pass MonitoringOutput
@@ -22626,6 +25899,10 @@ module Aws::SageMaker
22626
25899
  # * `STOPPED` - The schedule was stopped.
22627
25900
  # @return [String]
22628
25901
  #
25902
+ # @!attribute [rw] monitoring_type
25903
+ # The type of the monitoring job definition to schedule.
25904
+ # @return [String]
25905
+ #
22629
25906
  # @!attribute [rw] failure_reason
22630
25907
  # If the monitoring schedule failed, the reason it failed.
22631
25908
  # @return [String]
@@ -22666,6 +25943,7 @@ module Aws::SageMaker
22666
25943
  :monitoring_schedule_arn,
22667
25944
  :monitoring_schedule_name,
22668
25945
  :monitoring_schedule_status,
25946
+ :monitoring_type,
22669
25947
  :failure_reason,
22670
25948
  :creation_time,
22671
25949
  :last_modified_time,
@@ -22688,6 +25966,7 @@ module Aws::SageMaker
22688
25966
  # },
22689
25967
  # monitoring_job_definition: {
22690
25968
  # baseline_config: {
25969
+ # baselining_job_name: "ProcessingJobName",
22691
25970
  # constraints_resource: {
22692
25971
  # s3_uri: "S3Uri",
22693
25972
  # },
@@ -22702,6 +25981,12 @@ module Aws::SageMaker
22702
25981
  # local_path: "ProcessingLocalPath", # required
22703
25982
  # s3_input_mode: "Pipe", # accepts Pipe, File
22704
25983
  # s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
25984
+ # features_attribute: "String",
25985
+ # inference_attribute: "String",
25986
+ # probability_attribute: "String",
25987
+ # probability_threshold_attribute: 1.0,
25988
+ # start_time_offset: "MonitoringTimeOffsetString",
25989
+ # end_time_offset: "MonitoringTimeOffsetString",
22705
25990
  # },
22706
25991
  # },
22707
25992
  # ],
@@ -22748,6 +26033,8 @@ module Aws::SageMaker
22748
26033
  # },
22749
26034
  # role_arn: "RoleArn", # required
22750
26035
  # },
26036
+ # monitoring_job_definition_name: "MonitoringJobDefinitionName",
26037
+ # monitoring_type: "DataQuality", # accepts DataQuality, ModelQuality, ModelBias, ModelExplainability
22751
26038
  # }
22752
26039
  #
22753
26040
  # @!attribute [rw] schedule_config
@@ -22758,11 +26045,21 @@ module Aws::SageMaker
22758
26045
  # Defines the monitoring job.
22759
26046
  # @return [Types::MonitoringJobDefinition]
22760
26047
  #
26048
+ # @!attribute [rw] monitoring_job_definition_name
26049
+ # The name of the monitoring job definition to schedule.
26050
+ # @return [String]
26051
+ #
26052
+ # @!attribute [rw] monitoring_type
26053
+ # The type of the monitoring job definition to schedule.
26054
+ # @return [String]
26055
+ #
22761
26056
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MonitoringScheduleConfig AWS API Documentation
22762
26057
  #
22763
26058
  class MonitoringScheduleConfig < Struct.new(
22764
26059
  :schedule_config,
22765
- :monitoring_job_definition)
26060
+ :monitoring_job_definition,
26061
+ :monitoring_job_definition_name,
26062
+ :monitoring_type)
22766
26063
  SENSITIVE = []
22767
26064
  include Aws::Structure
22768
26065
  end
@@ -22793,6 +26090,14 @@ module Aws::SageMaker
22793
26090
  # The name of the endpoint using the monitoring schedule.
22794
26091
  # @return [String]
22795
26092
  #
26093
+ # @!attribute [rw] monitoring_job_definition_name
26094
+ # The name of the monitoring job definition that the schedule is for.
26095
+ # @return [String]
26096
+ #
26097
+ # @!attribute [rw] monitoring_type
26098
+ # The type of the monitoring job definition that the schedule is for.
26099
+ # @return [String]
26100
+ #
22796
26101
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MonitoringScheduleSummary AWS API Documentation
22797
26102
  #
22798
26103
  class MonitoringScheduleSummary < Struct.new(
@@ -22801,7 +26106,9 @@ module Aws::SageMaker
22801
26106
  :creation_time,
22802
26107
  :last_modified_time,
22803
26108
  :monitoring_schedule_status,
22804
- :endpoint_name)
26109
+ :endpoint_name,
26110
+ :monitoring_job_definition_name,
26111
+ :monitoring_type)
22805
26112
  SENSITIVE = []
22806
26113
  include Aws::Structure
22807
26114
  end
@@ -24848,97 +28155,302 @@ module Aws::SageMaker
24848
28155
  # accelerator_type: "ml.eia1.medium", # accepts ml.eia1.medium, ml.eia1.large, ml.eia1.xlarge, ml.eia2.medium, ml.eia2.large, ml.eia2.xlarge
24849
28156
  # }
24850
28157
  #
24851
- # @!attribute [rw] variant_name
24852
- # The name of the production variant.
28158
+ # @!attribute [rw] variant_name
28159
+ # The name of the production variant.
28160
+ # @return [String]
28161
+ #
28162
+ # @!attribute [rw] model_name
28163
+ # The name of the model that you want to host. This is the name that
28164
+ # you specified when creating the model.
28165
+ # @return [String]
28166
+ #
28167
+ # @!attribute [rw] initial_instance_count
28168
+ # Number of instances to launch initially.
28169
+ # @return [Integer]
28170
+ #
28171
+ # @!attribute [rw] instance_type
28172
+ # The ML compute instance type.
28173
+ # @return [String]
28174
+ #
28175
+ # @!attribute [rw] initial_variant_weight
28176
+ # Determines initial traffic distribution among all of the models that
28177
+ # you specify in the endpoint configuration. The traffic to a
28178
+ # production variant is determined by the ratio of the `VariantWeight`
28179
+ # to the sum of all `VariantWeight` values across all
28180
+ # ProductionVariants. If unspecified, it defaults to 1.0.
28181
+ # @return [Float]
28182
+ #
28183
+ # @!attribute [rw] accelerator_type
28184
+ # The size of the Elastic Inference (EI) instance to use for the
28185
+ # production variant. EI instances provide on-demand GPU computing for
28186
+ # inference. For more information, see [Using Elastic Inference in
28187
+ # Amazon SageMaker][1].
28188
+ #
28189
+ #
28190
+ #
28191
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/ei.html
28192
+ # @return [String]
28193
+ #
28194
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariant AWS API Documentation
28195
+ #
28196
+ class ProductionVariant < Struct.new(
28197
+ :variant_name,
28198
+ :model_name,
28199
+ :initial_instance_count,
28200
+ :instance_type,
28201
+ :initial_variant_weight,
28202
+ :accelerator_type)
28203
+ SENSITIVE = []
28204
+ include Aws::Structure
28205
+ end
28206
+
28207
+ # Describes weight and capacities for a production variant associated
28208
+ # with an endpoint. If you sent a request to the
28209
+ # `UpdateEndpointWeightsAndCapacities` API and the endpoint status is
28210
+ # `Updating`, you get different desired and current values.
28211
+ #
28212
+ # @!attribute [rw] variant_name
28213
+ # The name of the variant.
28214
+ # @return [String]
28215
+ #
28216
+ # @!attribute [rw] deployed_images
28217
+ # An array of `DeployedImage` objects that specify the Amazon EC2
28218
+ # Container Registry paths of the inference images deployed on
28219
+ # instances of this `ProductionVariant`.
28220
+ # @return [Array<Types::DeployedImage>]
28221
+ #
28222
+ # @!attribute [rw] current_weight
28223
+ # The weight associated with the variant.
28224
+ # @return [Float]
28225
+ #
28226
+ # @!attribute [rw] desired_weight
28227
+ # The requested weight, as specified in the
28228
+ # `UpdateEndpointWeightsAndCapacities` request.
28229
+ # @return [Float]
28230
+ #
28231
+ # @!attribute [rw] current_instance_count
28232
+ # The number of instances associated with the variant.
28233
+ # @return [Integer]
28234
+ #
28235
+ # @!attribute [rw] desired_instance_count
28236
+ # The number of instances requested in the
28237
+ # `UpdateEndpointWeightsAndCapacities` request.
28238
+ # @return [Integer]
28239
+ #
28240
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariantSummary AWS API Documentation
28241
+ #
28242
+ class ProductionVariantSummary < Struct.new(
28243
+ :variant_name,
28244
+ :deployed_images,
28245
+ :current_weight,
28246
+ :desired_weight,
28247
+ :current_instance_count,
28248
+ :desired_instance_count)
28249
+ SENSITIVE = []
28250
+ include Aws::Structure
28251
+ end
28252
+
28253
+ # Configuration information for Debugger system monitoring, framework
28254
+ # profiling, and storage paths.
28255
+ #
28256
+ # @note When making an API call, you may pass ProfilerConfig
28257
+ # data as a hash:
28258
+ #
28259
+ # {
28260
+ # s3_output_path: "S3Uri", # required
28261
+ # profiling_interval_in_milliseconds: 1,
28262
+ # profiling_parameters: {
28263
+ # "ConfigKey" => "ConfigValue",
28264
+ # },
28265
+ # }
28266
+ #
28267
+ # @!attribute [rw] s3_output_path
28268
+ # Path to Amazon S3 storage location for system and framework metrics.
28269
+ # @return [String]
28270
+ #
28271
+ # @!attribute [rw] profiling_interval_in_milliseconds
28272
+ # A time interval for capturing system metrics in milliseconds.
28273
+ # Available values are 100, 200, 500, 1000 (1 second), 5000 (5
28274
+ # seconds), and 60000 (1 minute) milliseconds. The default value is
28275
+ # 500 milliseconds.
28276
+ # @return [Integer]
28277
+ #
28278
+ # @!attribute [rw] profiling_parameters
28279
+ # Configuration information for capturing framework metrics. Available
28280
+ # key strings for different profiling options are
28281
+ # `DetailedProfilingConfig`, `PythonProfilingConfig`, and
28282
+ # `DataLoaderProfilingConfig`. The following codes are configuration
28283
+ # structures for the `ProfilingParameters` parameter. To learn more
28284
+ # about how to configure the `ProfilingParameters` parameter, see [Use
28285
+ # the SageMaker and Debugger Configuration API Operations to Create,
28286
+ # Update, and Debug Your Training Job][1].
28287
+ #
28288
+ #
28289
+ #
28290
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/debugger-createtrainingjob-api.html
28291
+ # @return [Hash<String,String>]
28292
+ #
28293
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProfilerConfig AWS API Documentation
28294
+ #
28295
+ class ProfilerConfig < Struct.new(
28296
+ :s3_output_path,
28297
+ :profiling_interval_in_milliseconds,
28298
+ :profiling_parameters)
28299
+ SENSITIVE = []
28300
+ include Aws::Structure
28301
+ end
28302
+
28303
+ # Configuration information for updating the Debugger profile
28304
+ # parameters, system and framework metrics configurations, and storage
28305
+ # paths.
28306
+ #
28307
+ # @note When making an API call, you may pass ProfilerConfigForUpdate
28308
+ # data as a hash:
28309
+ #
28310
+ # {
28311
+ # s3_output_path: "S3Uri",
28312
+ # profiling_interval_in_milliseconds: 1,
28313
+ # profiling_parameters: {
28314
+ # "ConfigKey" => "ConfigValue",
28315
+ # },
28316
+ # disable_profiler: false,
28317
+ # }
28318
+ #
28319
+ # @!attribute [rw] s3_output_path
28320
+ # Path to Amazon S3 storage location for system and framework metrics.
28321
+ # @return [String]
28322
+ #
28323
+ # @!attribute [rw] profiling_interval_in_milliseconds
28324
+ # A time interval for capturing system metrics in milliseconds.
28325
+ # Available values are 100, 200, 500, 1000 (1 second), 5000 (5
28326
+ # seconds), and 60000 (1 minute) milliseconds. The default value is
28327
+ # 500 milliseconds.
28328
+ # @return [Integer]
28329
+ #
28330
+ # @!attribute [rw] profiling_parameters
28331
+ # Configuration information for capturing framework metrics. Available
28332
+ # key strings for different profiling options are
28333
+ # `DetailedProfilingConfig`, `PythonProfilingConfig`, and
28334
+ # `DataLoaderProfilingConfig`. The following codes are configuration
28335
+ # structures for the `ProfilingParameters` parameter. To learn more
28336
+ # about how to configure the `ProfilingParameters` parameter, see [Use
28337
+ # the SageMaker and Debugger Configuration API Operations to Create,
28338
+ # Update, and Debug Your Training Job][1].
28339
+ #
28340
+ #
28341
+ #
28342
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/debugger-createtrainingjob-api.html
28343
+ # @return [Hash<String,String>]
28344
+ #
28345
+ # @!attribute [rw] disable_profiler
28346
+ # To disable Debugger monitoring and profiling, set to `True`.
28347
+ # @return [Boolean]
28348
+ #
28349
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProfilerConfigForUpdate AWS API Documentation
28350
+ #
28351
+ class ProfilerConfigForUpdate < Struct.new(
28352
+ :s3_output_path,
28353
+ :profiling_interval_in_milliseconds,
28354
+ :profiling_parameters,
28355
+ :disable_profiler)
28356
+ SENSITIVE = []
28357
+ include Aws::Structure
28358
+ end
28359
+
28360
+ # Configuration information for profiling rules.
28361
+ #
28362
+ # @note When making an API call, you may pass ProfilerRuleConfiguration
28363
+ # data as a hash:
28364
+ #
28365
+ # {
28366
+ # rule_configuration_name: "RuleConfigurationName", # required
28367
+ # local_path: "DirectoryPath",
28368
+ # s3_output_path: "S3Uri",
28369
+ # rule_evaluator_image: "AlgorithmImage", # required
28370
+ # instance_type: "ml.t3.medium", # accepts ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
28371
+ # volume_size_in_gb: 1,
28372
+ # rule_parameters: {
28373
+ # "ConfigKey" => "ConfigValue",
28374
+ # },
28375
+ # }
28376
+ #
28377
+ # @!attribute [rw] rule_configuration_name
28378
+ # The name of the rule configuration. It must be unique relative to
28379
+ # other rule configuration names.
24853
28380
  # @return [String]
24854
28381
  #
24855
- # @!attribute [rw] model_name
24856
- # The name of the model that you want to host. This is the name that
24857
- # you specified when creating the model.
28382
+ # @!attribute [rw] local_path
28383
+ # Path to local storage location for output of rules. Defaults to
28384
+ # `/opt/ml/processing/output/rule/`.
24858
28385
  # @return [String]
24859
28386
  #
24860
- # @!attribute [rw] initial_instance_count
24861
- # Number of instances to launch initially.
24862
- # @return [Integer]
24863
- #
24864
- # @!attribute [rw] instance_type
24865
- # The ML compute instance type.
28387
+ # @!attribute [rw] s3_output_path
28388
+ # Path to Amazon S3 storage location for rules.
24866
28389
  # @return [String]
24867
28390
  #
24868
- # @!attribute [rw] initial_variant_weight
24869
- # Determines initial traffic distribution among all of the models that
24870
- # you specify in the endpoint configuration. The traffic to a
24871
- # production variant is determined by the ratio of the `VariantWeight`
24872
- # to the sum of all `VariantWeight` values across all
24873
- # ProductionVariants. If unspecified, it defaults to 1.0.
24874
- # @return [Float]
24875
- #
24876
- # @!attribute [rw] accelerator_type
24877
- # The size of the Elastic Inference (EI) instance to use for the
24878
- # production variant. EI instances provide on-demand GPU computing for
24879
- # inference. For more information, see [Using Elastic Inference in
24880
- # Amazon SageMaker][1].
28391
+ # @!attribute [rw] rule_evaluator_image
28392
+ # The Amazon Elastic Container (ECR) Image for the managed rule
28393
+ # evaluation.
28394
+ # @return [String]
24881
28395
  #
28396
+ # @!attribute [rw] instance_type
28397
+ # The instance type to deploy a Debugger custom rule for profiling a
28398
+ # training job.
28399
+ # @return [String]
24882
28400
  #
28401
+ # @!attribute [rw] volume_size_in_gb
28402
+ # The size, in GB, of the ML storage volume attached to the processing
28403
+ # instance.
28404
+ # @return [Integer]
24883
28405
  #
24884
- # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/ei.html
24885
- # @return [String]
28406
+ # @!attribute [rw] rule_parameters
28407
+ # Runtime configuration for rule container.
28408
+ # @return [Hash<String,String>]
24886
28409
  #
24887
- # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariant AWS API Documentation
28410
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProfilerRuleConfiguration AWS API Documentation
24888
28411
  #
24889
- class ProductionVariant < Struct.new(
24890
- :variant_name,
24891
- :model_name,
24892
- :initial_instance_count,
28412
+ class ProfilerRuleConfiguration < Struct.new(
28413
+ :rule_configuration_name,
28414
+ :local_path,
28415
+ :s3_output_path,
28416
+ :rule_evaluator_image,
24893
28417
  :instance_type,
24894
- :initial_variant_weight,
24895
- :accelerator_type)
28418
+ :volume_size_in_gb,
28419
+ :rule_parameters)
24896
28420
  SENSITIVE = []
24897
28421
  include Aws::Structure
24898
28422
  end
24899
28423
 
24900
- # Describes weight and capacities for a production variant associated
24901
- # with an endpoint. If you sent a request to the
24902
- # `UpdateEndpointWeightsAndCapacities` API and the endpoint status is
24903
- # `Updating`, you get different desired and current values.
28424
+ # Information about the status of the rule evaluation.
24904
28425
  #
24905
- # @!attribute [rw] variant_name
24906
- # The name of the variant.
28426
+ # @!attribute [rw] rule_configuration_name
28427
+ # The name of the rule configuration.
24907
28428
  # @return [String]
24908
28429
  #
24909
- # @!attribute [rw] deployed_images
24910
- # An array of `DeployedImage` objects that specify the Amazon EC2
24911
- # Container Registry paths of the inference images deployed on
24912
- # instances of this `ProductionVariant`.
24913
- # @return [Array<Types::DeployedImage>]
24914
- #
24915
- # @!attribute [rw] current_weight
24916
- # The weight associated with the variant.
24917
- # @return [Float]
28430
+ # @!attribute [rw] rule_evaluation_job_arn
28431
+ # The Amazon Resource Name (ARN) of the rule evaluation job.
28432
+ # @return [String]
24918
28433
  #
24919
- # @!attribute [rw] desired_weight
24920
- # The requested weight, as specified in the
24921
- # `UpdateEndpointWeightsAndCapacities` request.
24922
- # @return [Float]
28434
+ # @!attribute [rw] rule_evaluation_status
28435
+ # Status of the rule evaluation.
28436
+ # @return [String]
24923
28437
  #
24924
- # @!attribute [rw] current_instance_count
24925
- # The number of instances associated with the variant.
24926
- # @return [Integer]
28438
+ # @!attribute [rw] status_details
28439
+ # Details from the rule evaluation.
28440
+ # @return [String]
24927
28441
  #
24928
- # @!attribute [rw] desired_instance_count
24929
- # The number of instances requested in the
24930
- # `UpdateEndpointWeightsAndCapacities` request.
24931
- # @return [Integer]
28442
+ # @!attribute [rw] last_modified_time
28443
+ # Timestamp when the rule evaluation status was last modified.
28444
+ # @return [Time]
24932
28445
  #
24933
- # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariantSummary AWS API Documentation
28446
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProfilerRuleEvaluationStatus AWS API Documentation
24934
28447
  #
24935
- class ProductionVariantSummary < Struct.new(
24936
- :variant_name,
24937
- :deployed_images,
24938
- :current_weight,
24939
- :desired_weight,
24940
- :current_instance_count,
24941
- :desired_instance_count)
28448
+ class ProfilerRuleEvaluationStatus < Struct.new(
28449
+ :rule_configuration_name,
28450
+ :rule_evaluation_job_arn,
28451
+ :rule_evaluation_status,
28452
+ :status_details,
28453
+ :last_modified_time)
24942
28454
  SENSITIVE = []
24943
28455
  include Aws::Structure
24944
28456
  end
@@ -25392,6 +28904,48 @@ module Aws::SageMaker
25392
28904
  include Aws::Structure
25393
28905
  end
25394
28906
 
28907
+ # @note When making an API call, you may pass RegisterDevicesRequest
28908
+ # data as a hash:
28909
+ #
28910
+ # {
28911
+ # device_fleet_name: "EntityName", # required
28912
+ # devices: [ # required
28913
+ # {
28914
+ # device_name: "DeviceName", # required
28915
+ # description: "DeviceDescription",
28916
+ # iot_thing_name: "ThingName",
28917
+ # },
28918
+ # ],
28919
+ # tags: [
28920
+ # {
28921
+ # key: "TagKey", # required
28922
+ # value: "TagValue", # required
28923
+ # },
28924
+ # ],
28925
+ # }
28926
+ #
28927
+ # @!attribute [rw] device_fleet_name
28928
+ # The name of the fleet.
28929
+ # @return [String]
28930
+ #
28931
+ # @!attribute [rw] devices
28932
+ # A list of devices to register with SageMaker Edge Manager.
28933
+ # @return [Array<Types::Device>]
28934
+ #
28935
+ # @!attribute [rw] tags
28936
+ # The tags associated with devices.
28937
+ # @return [Array<Types::Tag>]
28938
+ #
28939
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RegisterDevicesRequest AWS API Documentation
28940
+ #
28941
+ class RegisterDevicesRequest < Struct.new(
28942
+ :device_fleet_name,
28943
+ :devices,
28944
+ :tags)
28945
+ SENSITIVE = []
28946
+ include Aws::Structure
28947
+ end
28948
+
25395
28949
  # Metadata for a register model job step.
25396
28950
  #
25397
28951
  # @!attribute [rw] arn
@@ -26804,6 +30358,25 @@ module Aws::SageMaker
26804
30358
  include Aws::Structure
26805
30359
  end
26806
30360
 
30361
+ # @note When making an API call, you may pass StopEdgePackagingJobRequest
30362
+ # data as a hash:
30363
+ #
30364
+ # {
30365
+ # edge_packaging_job_name: "EntityName", # required
30366
+ # }
30367
+ #
30368
+ # @!attribute [rw] edge_packaging_job_name
30369
+ # The name of the edge packaging job.
30370
+ # @return [String]
30371
+ #
30372
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopEdgePackagingJobRequest AWS API Documentation
30373
+ #
30374
+ class StopEdgePackagingJobRequest < Struct.new(
30375
+ :edge_packaging_job_name)
30376
+ SENSITIVE = []
30377
+ include Aws::Structure
30378
+ end
30379
+
26807
30380
  # @note When making an API call, you may pass StopHyperParameterTuningJobRequest
26808
30381
  # data as a hash:
26809
30382
  #
@@ -27209,7 +30782,8 @@ module Aws::SageMaker
27209
30782
  include Aws::Structure
27210
30783
  end
27211
30784
 
27212
- # Configuration of storage locations for TensorBoard output.
30785
+ # Configuration of storage locations for the Debugger TensorBoard output
30786
+ # data.
27213
30787
  #
27214
30788
  # @note When making an API call, you may pass TensorBoardOutputConfig
27215
30789
  # data as a hash:
@@ -27505,8 +31079,15 @@ module Aws::SageMaker
27505
31079
  # @return [Integer]
27506
31080
  #
27507
31081
  # @!attribute [rw] debug_hook_config
27508
- # Configuration information for the debug hook parameters, collection
27509
- # configuration, and storage paths.
31082
+ # Configuration information for the Debugger hook parameters, metric
31083
+ # and tensor collections, and storage paths. To learn more about how
31084
+ # to configure the `DebugHookConfig` parameter, see [Use the SageMaker
31085
+ # and Debugger Configuration API Operations to Create, Update, and
31086
+ # Debug Your Training Job][1].
31087
+ #
31088
+ #
31089
+ #
31090
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/debugger-createtrainingjob-api.html
27510
31091
  # @return [Types::DebugHookConfig]
27511
31092
  #
27512
31093
  # @!attribute [rw] experiment_config
@@ -27525,7 +31106,8 @@ module Aws::SageMaker
27525
31106
  # @return [Array<Types::DebugRuleConfiguration>]
27526
31107
  #
27527
31108
  # @!attribute [rw] tensor_board_output_config
27528
- # Configuration of storage locations for TensorBoard output.
31109
+ # Configuration of storage locations for the Debugger TensorBoard
31110
+ # output data.
27529
31111
  # @return [Types::TensorBoardOutputConfig]
27530
31112
  #
27531
31113
  # @!attribute [rw] debug_rule_evaluation_statuses
@@ -29561,6 +33143,77 @@ module Aws::SageMaker
29561
33143
  include Aws::Structure
29562
33144
  end
29563
33145
 
33146
+ # @note When making an API call, you may pass UpdateDeviceFleetRequest
33147
+ # data as a hash:
33148
+ #
33149
+ # {
33150
+ # device_fleet_name: "EntityName", # required
33151
+ # role_arn: "RoleArn",
33152
+ # description: "DeviceFleetDescription",
33153
+ # output_config: { # required
33154
+ # s3_output_location: "S3Uri", # required
33155
+ # kms_key_id: "KmsKeyId",
33156
+ # },
33157
+ # }
33158
+ #
33159
+ # @!attribute [rw] device_fleet_name
33160
+ # The name of the fleet.
33161
+ # @return [String]
33162
+ #
33163
+ # @!attribute [rw] role_arn
33164
+ # The Amazon Resource Name (ARN) of the device.
33165
+ # @return [String]
33166
+ #
33167
+ # @!attribute [rw] description
33168
+ # Description of the fleet.
33169
+ # @return [String]
33170
+ #
33171
+ # @!attribute [rw] output_config
33172
+ # Output configuration for storing sample data collected by the fleet.
33173
+ # @return [Types::EdgeOutputConfig]
33174
+ #
33175
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateDeviceFleetRequest AWS API Documentation
33176
+ #
33177
+ class UpdateDeviceFleetRequest < Struct.new(
33178
+ :device_fleet_name,
33179
+ :role_arn,
33180
+ :description,
33181
+ :output_config)
33182
+ SENSITIVE = []
33183
+ include Aws::Structure
33184
+ end
33185
+
33186
+ # @note When making an API call, you may pass UpdateDevicesRequest
33187
+ # data as a hash:
33188
+ #
33189
+ # {
33190
+ # device_fleet_name: "EntityName", # required
33191
+ # devices: [ # required
33192
+ # {
33193
+ # device_name: "DeviceName", # required
33194
+ # description: "DeviceDescription",
33195
+ # iot_thing_name: "ThingName",
33196
+ # },
33197
+ # ],
33198
+ # }
33199
+ #
33200
+ # @!attribute [rw] device_fleet_name
33201
+ # The name of the fleet the devices belong to.
33202
+ # @return [String]
33203
+ #
33204
+ # @!attribute [rw] devices
33205
+ # List of devices to register with Edge Manager agent.
33206
+ # @return [Array<Types::Device>]
33207
+ #
33208
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateDevicesRequest AWS API Documentation
33209
+ #
33210
+ class UpdateDevicesRequest < Struct.new(
33211
+ :device_fleet_name,
33212
+ :devices)
33213
+ SENSITIVE = []
33214
+ include Aws::Structure
33215
+ end
33216
+
29564
33217
  # @note When making an API call, you may pass UpdateDomainRequest
29565
33218
  # data as a hash:
29566
33219
  #
@@ -29928,6 +33581,7 @@ module Aws::SageMaker
29928
33581
  # },
29929
33582
  # monitoring_job_definition: {
29930
33583
  # baseline_config: {
33584
+ # baselining_job_name: "ProcessingJobName",
29931
33585
  # constraints_resource: {
29932
33586
  # s3_uri: "S3Uri",
29933
33587
  # },
@@ -29942,6 +33596,12 @@ module Aws::SageMaker
29942
33596
  # local_path: "ProcessingLocalPath", # required
29943
33597
  # s3_input_mode: "Pipe", # accepts Pipe, File
29944
33598
  # s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
33599
+ # features_attribute: "String",
33600
+ # inference_attribute: "String",
33601
+ # probability_attribute: "String",
33602
+ # probability_threshold_attribute: 1.0,
33603
+ # start_time_offset: "MonitoringTimeOffsetString",
33604
+ # end_time_offset: "MonitoringTimeOffsetString",
29945
33605
  # },
29946
33606
  # },
29947
33607
  # ],
@@ -29988,6 +33648,8 @@ module Aws::SageMaker
29988
33648
  # },
29989
33649
  # role_arn: "RoleArn", # required
29990
33650
  # },
33651
+ # monitoring_job_definition_name: "MonitoringJobDefinitionName",
33652
+ # monitoring_type: "DataQuality", # accepts DataQuality, ModelQuality, ModelBias, ModelExplainability
29991
33653
  # },
29992
33654
  # }
29993
33655
  #
@@ -30334,6 +33996,71 @@ module Aws::SageMaker
30334
33996
  include Aws::Structure
30335
33997
  end
30336
33998
 
33999
+ # @note When making an API call, you may pass UpdateTrainingJobRequest
34000
+ # data as a hash:
34001
+ #
34002
+ # {
34003
+ # training_job_name: "TrainingJobName", # required
34004
+ # profiler_config: {
34005
+ # s3_output_path: "S3Uri",
34006
+ # profiling_interval_in_milliseconds: 1,
34007
+ # profiling_parameters: {
34008
+ # "ConfigKey" => "ConfigValue",
34009
+ # },
34010
+ # disable_profiler: false,
34011
+ # },
34012
+ # profiler_rule_configurations: [
34013
+ # {
34014
+ # rule_configuration_name: "RuleConfigurationName", # required
34015
+ # local_path: "DirectoryPath",
34016
+ # s3_output_path: "S3Uri",
34017
+ # rule_evaluator_image: "AlgorithmImage", # required
34018
+ # instance_type: "ml.t3.medium", # accepts ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
34019
+ # volume_size_in_gb: 1,
34020
+ # rule_parameters: {
34021
+ # "ConfigKey" => "ConfigValue",
34022
+ # },
34023
+ # },
34024
+ # ],
34025
+ # }
34026
+ #
34027
+ # @!attribute [rw] training_job_name
34028
+ # The name of a training job to update the Debugger profiling
34029
+ # configuration.
34030
+ # @return [String]
34031
+ #
34032
+ # @!attribute [rw] profiler_config
34033
+ # Configuration information for Debugger system monitoring, framework
34034
+ # profiling, and storage paths.
34035
+ # @return [Types::ProfilerConfigForUpdate]
34036
+ #
34037
+ # @!attribute [rw] profiler_rule_configurations
34038
+ # Configuration information for Debugger rules for profiling system
34039
+ # and framework metrics.
34040
+ # @return [Array<Types::ProfilerRuleConfiguration>]
34041
+ #
34042
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateTrainingJobRequest AWS API Documentation
34043
+ #
34044
+ class UpdateTrainingJobRequest < Struct.new(
34045
+ :training_job_name,
34046
+ :profiler_config,
34047
+ :profiler_rule_configurations)
34048
+ SENSITIVE = []
34049
+ include Aws::Structure
34050
+ end
34051
+
34052
+ # @!attribute [rw] training_job_arn
34053
+ # The Amazon Resource Name (ARN) of the training job.
34054
+ # @return [String]
34055
+ #
34056
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateTrainingJobResponse AWS API Documentation
34057
+ #
34058
+ class UpdateTrainingJobResponse < Struct.new(
34059
+ :training_job_arn)
34060
+ SENSITIVE = []
34061
+ include Aws::Structure
34062
+ end
34063
+
30337
34064
  # @note When making an API call, you may pass UpdateTrialComponentRequest
30338
34065
  # data as a hash:
30339
34066
  #