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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ad9decbcfc4b10b3f9c3e1af20b34c69c498d995ec1304eeba5487ae408a437c
4
- data.tar.gz: ba17afa2deb0a5d732f42f463089a4875347b3b1f4f2fcee6f0832cc86ede5ba
3
+ metadata.gz: 482dcccea18e108a3ef6e62a921d7929ab98ee1bb96e50a7efdf6e0b4cd65394
4
+ data.tar.gz: 361feb5c8cc143c0256191749a014b02e2dc0be0cc2aefc5da61f9875de8691d
5
5
  SHA512:
6
- metadata.gz: e2da02a108b0b30748e3c306324b9541012c71812420e64f080e40cc0c8d0a2f315fdaf20deefd1dd4822687a3424af4109c7e720ae379ca6a989fbf40987cfb
7
- data.tar.gz: 0e421b196816e6d9cc134446d68989a95974889624066113a023f74ff218c8d44fa43bbc6bde87f6182dd43f5b498e037d87b40394b0d3fddafa903c22f41af0
6
+ metadata.gz: dafecab74abf595f392aa49f45da19ba9f4ed644f2fdeaf28e8d45a8e025dcfbc657877feac4f48b540705a007eb3dd0c60a60dc96079b10e20936053255b8b6
7
+ data.tar.gz: c8550c22fa7625a7d47164d624805c22a1eed852f6fc02bd6dcd115eb3c1e4d26488ce283cd3bff071652154fd0d7259b0befe2f003230c5c65cf4c941e60a89
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
49
49
  # @!group service
50
50
  module Aws::SageMaker
51
51
 
52
- GEM_VERSION = '1.73.0'
52
+ GEM_VERSION = '1.74.0'
53
53
 
54
54
  end
@@ -1404,6 +1404,195 @@ module Aws::SageMaker
1404
1404
  req.send_request(options)
1405
1405
  end
1406
1406
 
1407
+ # Creates a definition for a job that monitors data quality and drift.
1408
+ # For information about model monitor, see [Amazon SageMaker Model
1409
+ # Monitor][1].
1410
+ #
1411
+ #
1412
+ #
1413
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor.html
1414
+ #
1415
+ # @option params [required, String] :job_definition_name
1416
+ # The name for the monitoring job definition.
1417
+ #
1418
+ # @option params [Types::DataQualityBaselineConfig] :data_quality_baseline_config
1419
+ # Configures the constraints and baselines for the monitoring job.
1420
+ #
1421
+ # @option params [required, Types::DataQualityAppSpecification] :data_quality_app_specification
1422
+ # Specifies the container that runs the monitoring job.
1423
+ #
1424
+ # @option params [required, Types::DataQualityJobInput] :data_quality_job_input
1425
+ # A list of inputs for the monitoring job. Currently endpoints are
1426
+ # supported as monitoring inputs.
1427
+ #
1428
+ # @option params [required, Types::MonitoringOutputConfig] :data_quality_job_output_config
1429
+ # The output configuration for monitoring jobs.
1430
+ #
1431
+ # @option params [required, Types::MonitoringResources] :job_resources
1432
+ # Identifies the resources to deploy for a monitoring job.
1433
+ #
1434
+ # @option params [Types::MonitoringNetworkConfig] :network_config
1435
+ # Specifies networking configuration for the monitoring job.
1436
+ #
1437
+ # @option params [required, String] :role_arn
1438
+ # The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
1439
+ # can assume to perform tasks on your behalf.
1440
+ #
1441
+ # @option params [Types::MonitoringStoppingCondition] :stopping_condition
1442
+ # A time limit for how long the monitoring job is allowed to run before
1443
+ # stopping.
1444
+ #
1445
+ # @option params [Array<Types::Tag>] :tags
1446
+ # (Optional) An array of key-value pairs. For more information, see
1447
+ # [Using Cost Allocation Tags][1] in the *AWS Billing and Cost
1448
+ # Management User Guide*.
1449
+ #
1450
+ #
1451
+ #
1452
+ # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL
1453
+ #
1454
+ # @return [Types::CreateDataQualityJobDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1455
+ #
1456
+ # * {Types::CreateDataQualityJobDefinitionResponse#job_definition_arn #job_definition_arn} => String
1457
+ #
1458
+ # @example Request syntax with placeholder values
1459
+ #
1460
+ # resp = client.create_data_quality_job_definition({
1461
+ # job_definition_name: "MonitoringJobDefinitionName", # required
1462
+ # data_quality_baseline_config: {
1463
+ # baselining_job_name: "ProcessingJobName",
1464
+ # constraints_resource: {
1465
+ # s3_uri: "S3Uri",
1466
+ # },
1467
+ # statistics_resource: {
1468
+ # s3_uri: "S3Uri",
1469
+ # },
1470
+ # },
1471
+ # data_quality_app_specification: { # required
1472
+ # image_uri: "ImageUri", # required
1473
+ # container_entrypoint: ["ContainerEntrypointString"],
1474
+ # container_arguments: ["ContainerArgument"],
1475
+ # record_preprocessor_source_uri: "S3Uri",
1476
+ # post_analytics_processor_source_uri: "S3Uri",
1477
+ # environment: {
1478
+ # "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
1479
+ # },
1480
+ # },
1481
+ # data_quality_job_input: { # required
1482
+ # endpoint_input: { # required
1483
+ # endpoint_name: "EndpointName", # required
1484
+ # local_path: "ProcessingLocalPath", # required
1485
+ # s3_input_mode: "Pipe", # accepts Pipe, File
1486
+ # s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
1487
+ # features_attribute: "String",
1488
+ # inference_attribute: "String",
1489
+ # probability_attribute: "String",
1490
+ # probability_threshold_attribute: 1.0,
1491
+ # start_time_offset: "MonitoringTimeOffsetString",
1492
+ # end_time_offset: "MonitoringTimeOffsetString",
1493
+ # },
1494
+ # },
1495
+ # data_quality_job_output_config: { # required
1496
+ # monitoring_outputs: [ # required
1497
+ # {
1498
+ # s3_output: { # required
1499
+ # s3_uri: "MonitoringS3Uri", # required
1500
+ # local_path: "ProcessingLocalPath", # required
1501
+ # s3_upload_mode: "Continuous", # accepts Continuous, EndOfJob
1502
+ # },
1503
+ # },
1504
+ # ],
1505
+ # kms_key_id: "KmsKeyId",
1506
+ # },
1507
+ # job_resources: { # required
1508
+ # cluster_config: { # required
1509
+ # instance_count: 1, # required
1510
+ # 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
1511
+ # volume_size_in_gb: 1, # required
1512
+ # volume_kms_key_id: "KmsKeyId",
1513
+ # },
1514
+ # },
1515
+ # network_config: {
1516
+ # enable_inter_container_traffic_encryption: false,
1517
+ # enable_network_isolation: false,
1518
+ # vpc_config: {
1519
+ # security_group_ids: ["SecurityGroupId"], # required
1520
+ # subnets: ["SubnetId"], # required
1521
+ # },
1522
+ # },
1523
+ # role_arn: "RoleArn", # required
1524
+ # stopping_condition: {
1525
+ # max_runtime_in_seconds: 1, # required
1526
+ # },
1527
+ # tags: [
1528
+ # {
1529
+ # key: "TagKey", # required
1530
+ # value: "TagValue", # required
1531
+ # },
1532
+ # ],
1533
+ # })
1534
+ #
1535
+ # @example Response structure
1536
+ #
1537
+ # resp.job_definition_arn #=> String
1538
+ #
1539
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateDataQualityJobDefinition AWS API Documentation
1540
+ #
1541
+ # @overload create_data_quality_job_definition(params = {})
1542
+ # @param [Hash] params ({})
1543
+ def create_data_quality_job_definition(params = {}, options = {})
1544
+ req = build_request(:create_data_quality_job_definition, params)
1545
+ req.send_request(options)
1546
+ end
1547
+
1548
+ # Creates a device fleet.
1549
+ #
1550
+ # @option params [required, String] :device_fleet_name
1551
+ # The name of the fleet that the device belongs to.
1552
+ #
1553
+ # @option params [String] :role_arn
1554
+ # The Amazon Resource Name (ARN) that has access to AWS Internet of
1555
+ # Things (IoT).
1556
+ #
1557
+ # @option params [String] :description
1558
+ # A description of the fleet.
1559
+ #
1560
+ # @option params [required, Types::EdgeOutputConfig] :output_config
1561
+ # The output configuration for storing sample data collected by the
1562
+ # fleet.
1563
+ #
1564
+ # @option params [Array<Types::Tag>] :tags
1565
+ # Creates tags for the specified fleet.
1566
+ #
1567
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1568
+ #
1569
+ # @example Request syntax with placeholder values
1570
+ #
1571
+ # resp = client.create_device_fleet({
1572
+ # device_fleet_name: "EntityName", # required
1573
+ # role_arn: "RoleArn",
1574
+ # description: "DeviceFleetDescription",
1575
+ # output_config: { # required
1576
+ # s3_output_location: "S3Uri", # required
1577
+ # kms_key_id: "KmsKeyId",
1578
+ # },
1579
+ # tags: [
1580
+ # {
1581
+ # key: "TagKey", # required
1582
+ # value: "TagValue", # required
1583
+ # },
1584
+ # ],
1585
+ # })
1586
+ #
1587
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateDeviceFleet AWS API Documentation
1588
+ #
1589
+ # @overload create_device_fleet(params = {})
1590
+ # @param [Hash] params ({})
1591
+ def create_device_fleet(params = {}, options = {})
1592
+ req = build_request(:create_device_fleet, params)
1593
+ req.send_request(options)
1594
+ end
1595
+
1407
1596
  # Creates a `Domain` used by Amazon SageMaker Studio. A domain consists
1408
1597
  # of an associated Amazon Elastic File System (EFS) volume, a list of
1409
1598
  # authorized users, and a variety of security, application, policy, and
@@ -1567,6 +1756,71 @@ module Aws::SageMaker
1567
1756
  req.send_request(options)
1568
1757
  end
1569
1758
 
1759
+ # Starts a SageMaker Edge Manager model packaging job. Edge Manager will
1760
+ # use the model artifacts from the Amazon Simple Storage Service bucket
1761
+ # that you specify. After the model has been packaged, Amazon SageMaker
1762
+ # saves the resulting artifacts to an S3 bucket that you specify.
1763
+ #
1764
+ # @option params [required, String] :edge_packaging_job_name
1765
+ # The name of the edge packaging job.
1766
+ #
1767
+ # @option params [required, String] :compilation_job_name
1768
+ # The name of the SageMaker Neo compilation job that will be used to
1769
+ # locate model artifacts for packaging.
1770
+ #
1771
+ # @option params [required, String] :model_name
1772
+ # The name of the model.
1773
+ #
1774
+ # @option params [required, String] :model_version
1775
+ # The version of the model.
1776
+ #
1777
+ # @option params [required, String] :role_arn
1778
+ # The Amazon Resource Name (ARN) of an IAM role that enables Amazon
1779
+ # SageMaker to download and upload the model, and to contact SageMaker
1780
+ # Neo.
1781
+ #
1782
+ # @option params [required, Types::EdgeOutputConfig] :output_config
1783
+ # Provides information about the output location for the packaged model.
1784
+ #
1785
+ # @option params [String] :resource_key
1786
+ # The CMK to use when encrypting the EBS volume the edge packaging job
1787
+ # runs on.
1788
+ #
1789
+ # @option params [Array<Types::Tag>] :tags
1790
+ # Creates tags for the packaging job.
1791
+ #
1792
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1793
+ #
1794
+ # @example Request syntax with placeholder values
1795
+ #
1796
+ # resp = client.create_edge_packaging_job({
1797
+ # edge_packaging_job_name: "EntityName", # required
1798
+ # compilation_job_name: "EntityName", # required
1799
+ # model_name: "EntityName", # required
1800
+ # model_version: "EdgeVersion", # required
1801
+ # role_arn: "RoleArn", # required
1802
+ # output_config: { # required
1803
+ # s3_output_location: "S3Uri", # required
1804
+ # kms_key_id: "KmsKeyId",
1805
+ # },
1806
+ # resource_key: "KmsKeyId",
1807
+ # tags: [
1808
+ # {
1809
+ # key: "TagKey", # required
1810
+ # value: "TagValue", # required
1811
+ # },
1812
+ # ],
1813
+ # })
1814
+ #
1815
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateEdgePackagingJob AWS API Documentation
1816
+ #
1817
+ # @overload create_edge_packaging_job(params = {})
1818
+ # @param [Hash] params ({})
1819
+ def create_edge_packaging_job(params = {}, options = {})
1820
+ req = build_request(:create_edge_packaging_job, params)
1821
+ req.send_request(options)
1822
+ end
1823
+
1570
1824
  # Creates an endpoint using the endpoint configuration specified in the
1571
1825
  # request. Amazon SageMaker uses the endpoint to provision resources and
1572
1826
  # deploy models. You create the endpoint configuration with the
@@ -3069,76 +3323,339 @@ module Aws::SageMaker
3069
3323
  req.send_request(options)
3070
3324
  end
3071
3325
 
3072
- # Creates a model package that you can use to create Amazon SageMaker
3073
- # models or list on AWS Marketplace, or a versioned model that is part
3074
- # of a model group. Buyers can subscribe to model packages listed on AWS
3075
- # Marketplace to create models in Amazon SageMaker.
3326
+ # Creates the definition for a model bias job.
3076
3327
  #
3077
- # To create a model package by specifying a Docker container that
3078
- # contains your inference code and the Amazon S3 location of your model
3079
- # artifacts, provide values for `InferenceSpecification`. To create a
3080
- # model from an algorithm resource that you created or subscribed to in
3081
- # AWS Marketplace, provide a value for `SourceAlgorithmSpecification`.
3328
+ # @option params [required, String] :job_definition_name
3329
+ # The name of the bias job definition. The name must be unique within an
3330
+ # AWS Region in the AWS account.
3082
3331
  #
3083
- # <note markdown="1"> There are two types of model packages:
3332
+ # @option params [Types::ModelBiasBaselineConfig] :model_bias_baseline_config
3333
+ # The baseline configuration for a model bias job.
3084
3334
  #
3085
- # * Versioned - a model that is part of a model group in the model
3086
- # registry.
3335
+ # @option params [required, Types::ModelBiasAppSpecification] :model_bias_app_specification
3336
+ # Configures the model bias job to run a specified Docker container
3337
+ # image.
3087
3338
  #
3088
- # * Unversioned - a model package that is not part of a model group.
3339
+ # @option params [required, Types::ModelBiasJobInput] :model_bias_job_input
3340
+ # Inputs for the model bias job.
3089
3341
  #
3090
- # </note>
3342
+ # @option params [required, Types::MonitoringOutputConfig] :model_bias_job_output_config
3343
+ # The output configuration for monitoring jobs.
3091
3344
  #
3092
- # @option params [String] :model_package_name
3093
- # The name of the model package. The name must have 1 to 63 characters.
3094
- # Valid characters are a-z, A-Z, 0-9, and - (hyphen).
3345
+ # @option params [required, Types::MonitoringResources] :job_resources
3346
+ # Identifies the resources to deploy for a monitoring job.
3095
3347
  #
3096
- # This parameter is required for unversioned models. It is not
3097
- # applicable to versioned models.
3348
+ # @option params [Types::MonitoringNetworkConfig] :network_config
3349
+ # Networking options for a model bias job.
3098
3350
  #
3099
- # @option params [String] :model_package_group_name
3100
- # The name of the model group that this model version belongs to.
3351
+ # @option params [required, String] :role_arn
3352
+ # The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
3353
+ # can assume to perform tasks on your behalf.
3101
3354
  #
3102
- # This parameter is required for versioned models, and does not apply to
3103
- # unversioned models.
3355
+ # @option params [Types::MonitoringStoppingCondition] :stopping_condition
3356
+ # A time limit for how long the monitoring job is allowed to run before
3357
+ # stopping.
3104
3358
  #
3105
- # @option params [String] :model_package_description
3106
- # A description of the model package.
3359
+ # @option params [Array<Types::Tag>] :tags
3360
+ # (Optional) An array of key-value pairs. For more information, see
3361
+ # [Using Cost Allocation Tags][1] in the *AWS Billing and Cost
3362
+ # Management User Guide*.
3107
3363
  #
3108
- # @option params [Types::InferenceSpecification] :inference_specification
3109
- # Specifies details about inference jobs that can be run with models
3110
- # based on this model package, including the following:
3111
3364
  #
3112
- # * The Amazon ECR paths of containers that contain the inference code
3113
- # and model artifacts.
3114
3365
  #
3115
- # * The instance types that the model package supports for transform
3116
- # jobs and real-time endpoints used for inference.
3366
+ # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL
3117
3367
  #
3118
- # * The input and output content formats that the model package supports
3119
- # for inference.
3368
+ # @return [Types::CreateModelBiasJobDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3120
3369
  #
3121
- # @option params [Types::ModelPackageValidationSpecification] :validation_specification
3122
- # Specifies configurations for one or more transform jobs that Amazon
3123
- # SageMaker runs to test the model package.
3370
+ # * {Types::CreateModelBiasJobDefinitionResponse#job_definition_arn #job_definition_arn} => String
3124
3371
  #
3125
- # @option params [Types::SourceAlgorithmSpecification] :source_algorithm_specification
3126
- # Details about the algorithm that was used to create the model package.
3372
+ # @example Request syntax with placeholder values
3127
3373
  #
3128
- # @option params [Boolean] :certify_for_marketplace
3129
- # Whether to certify the model package for listing on AWS Marketplace.
3374
+ # resp = client.create_model_bias_job_definition({
3375
+ # job_definition_name: "MonitoringJobDefinitionName", # required
3376
+ # model_bias_baseline_config: {
3377
+ # baselining_job_name: "ProcessingJobName",
3378
+ # constraints_resource: {
3379
+ # s3_uri: "S3Uri",
3380
+ # },
3381
+ # },
3382
+ # model_bias_app_specification: { # required
3383
+ # image_uri: "ImageUri", # required
3384
+ # config_uri: "S3Uri", # required
3385
+ # environment: {
3386
+ # "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
3387
+ # },
3388
+ # },
3389
+ # model_bias_job_input: { # required
3390
+ # endpoint_input: { # required
3391
+ # endpoint_name: "EndpointName", # required
3392
+ # local_path: "ProcessingLocalPath", # required
3393
+ # s3_input_mode: "Pipe", # accepts Pipe, File
3394
+ # s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
3395
+ # features_attribute: "String",
3396
+ # inference_attribute: "String",
3397
+ # probability_attribute: "String",
3398
+ # probability_threshold_attribute: 1.0,
3399
+ # start_time_offset: "MonitoringTimeOffsetString",
3400
+ # end_time_offset: "MonitoringTimeOffsetString",
3401
+ # },
3402
+ # ground_truth_s3_input: { # required
3403
+ # s3_uri: "MonitoringS3Uri",
3404
+ # },
3405
+ # },
3406
+ # model_bias_job_output_config: { # required
3407
+ # monitoring_outputs: [ # required
3408
+ # {
3409
+ # s3_output: { # required
3410
+ # s3_uri: "MonitoringS3Uri", # required
3411
+ # local_path: "ProcessingLocalPath", # required
3412
+ # s3_upload_mode: "Continuous", # accepts Continuous, EndOfJob
3413
+ # },
3414
+ # },
3415
+ # ],
3416
+ # kms_key_id: "KmsKeyId",
3417
+ # },
3418
+ # job_resources: { # required
3419
+ # cluster_config: { # required
3420
+ # instance_count: 1, # required
3421
+ # 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
3422
+ # volume_size_in_gb: 1, # required
3423
+ # volume_kms_key_id: "KmsKeyId",
3424
+ # },
3425
+ # },
3426
+ # network_config: {
3427
+ # enable_inter_container_traffic_encryption: false,
3428
+ # enable_network_isolation: false,
3429
+ # vpc_config: {
3430
+ # security_group_ids: ["SecurityGroupId"], # required
3431
+ # subnets: ["SubnetId"], # required
3432
+ # },
3433
+ # },
3434
+ # role_arn: "RoleArn", # required
3435
+ # stopping_condition: {
3436
+ # max_runtime_in_seconds: 1, # required
3437
+ # },
3438
+ # tags: [
3439
+ # {
3440
+ # key: "TagKey", # required
3441
+ # value: "TagValue", # required
3442
+ # },
3443
+ # ],
3444
+ # })
3130
3445
  #
3131
- # This parameter is optional for unversioned models, and does not apply
3132
- # to versioned models.
3446
+ # @example Response structure
3133
3447
  #
3134
- # @option params [Array<Types::Tag>] :tags
3135
- # A list of key value pairs associated with the model. For more
3136
- # information, see [Tagging AWS resources][1] in the *AWS General
3137
- # Reference Guide*.
3448
+ # resp.job_definition_arn #=> String
3138
3449
  #
3450
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelBiasJobDefinition AWS API Documentation
3139
3451
  #
3452
+ # @overload create_model_bias_job_definition(params = {})
3453
+ # @param [Hash] params ({})
3454
+ def create_model_bias_job_definition(params = {}, options = {})
3455
+ req = build_request(:create_model_bias_job_definition, params)
3456
+ req.send_request(options)
3457
+ end
3458
+
3459
+ # Creates the definition for a model explainability job.
3140
3460
  #
3141
- # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
3461
+ # @option params [required, String] :job_definition_name
3462
+ # The name of the model explainability job definition. The name must be
3463
+ # unique within an AWS Region in the AWS account.
3464
+ #
3465
+ # @option params [Types::ModelExplainabilityBaselineConfig] :model_explainability_baseline_config
3466
+ # The baseline configuration for a model explainability job.
3467
+ #
3468
+ # @option params [required, Types::ModelExplainabilityAppSpecification] :model_explainability_app_specification
3469
+ # Configures the model explainability job to run a specified Docker
3470
+ # container image.
3471
+ #
3472
+ # @option params [required, Types::ModelExplainabilityJobInput] :model_explainability_job_input
3473
+ # Inputs for the model explainability job.
3474
+ #
3475
+ # @option params [required, Types::MonitoringOutputConfig] :model_explainability_job_output_config
3476
+ # The output configuration for monitoring jobs.
3477
+ #
3478
+ # @option params [required, Types::MonitoringResources] :job_resources
3479
+ # Identifies the resources to deploy for a monitoring job.
3480
+ #
3481
+ # @option params [Types::MonitoringNetworkConfig] :network_config
3482
+ # Networking options for a model explainability job.
3483
+ #
3484
+ # @option params [required, String] :role_arn
3485
+ # The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
3486
+ # can assume to perform tasks on your behalf.
3487
+ #
3488
+ # @option params [Types::MonitoringStoppingCondition] :stopping_condition
3489
+ # A time limit for how long the monitoring job is allowed to run before
3490
+ # stopping.
3491
+ #
3492
+ # @option params [Array<Types::Tag>] :tags
3493
+ # (Optional) An array of key-value pairs. For more information, see
3494
+ # [Using Cost Allocation Tags][1] in the *AWS Billing and Cost
3495
+ # Management User Guide*.
3496
+ #
3497
+ #
3498
+ #
3499
+ # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL
3500
+ #
3501
+ # @return [Types::CreateModelExplainabilityJobDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3502
+ #
3503
+ # * {Types::CreateModelExplainabilityJobDefinitionResponse#job_definition_arn #job_definition_arn} => String
3504
+ #
3505
+ # @example Request syntax with placeholder values
3506
+ #
3507
+ # resp = client.create_model_explainability_job_definition({
3508
+ # job_definition_name: "MonitoringJobDefinitionName", # required
3509
+ # model_explainability_baseline_config: {
3510
+ # baselining_job_name: "ProcessingJobName",
3511
+ # constraints_resource: {
3512
+ # s3_uri: "S3Uri",
3513
+ # },
3514
+ # },
3515
+ # model_explainability_app_specification: { # required
3516
+ # image_uri: "ImageUri", # required
3517
+ # config_uri: "S3Uri", # required
3518
+ # environment: {
3519
+ # "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
3520
+ # },
3521
+ # },
3522
+ # model_explainability_job_input: { # required
3523
+ # endpoint_input: { # required
3524
+ # endpoint_name: "EndpointName", # required
3525
+ # local_path: "ProcessingLocalPath", # required
3526
+ # s3_input_mode: "Pipe", # accepts Pipe, File
3527
+ # s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
3528
+ # features_attribute: "String",
3529
+ # inference_attribute: "String",
3530
+ # probability_attribute: "String",
3531
+ # probability_threshold_attribute: 1.0,
3532
+ # start_time_offset: "MonitoringTimeOffsetString",
3533
+ # end_time_offset: "MonitoringTimeOffsetString",
3534
+ # },
3535
+ # },
3536
+ # model_explainability_job_output_config: { # required
3537
+ # monitoring_outputs: [ # required
3538
+ # {
3539
+ # s3_output: { # required
3540
+ # s3_uri: "MonitoringS3Uri", # required
3541
+ # local_path: "ProcessingLocalPath", # required
3542
+ # s3_upload_mode: "Continuous", # accepts Continuous, EndOfJob
3543
+ # },
3544
+ # },
3545
+ # ],
3546
+ # kms_key_id: "KmsKeyId",
3547
+ # },
3548
+ # job_resources: { # required
3549
+ # cluster_config: { # required
3550
+ # instance_count: 1, # required
3551
+ # 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
3552
+ # volume_size_in_gb: 1, # required
3553
+ # volume_kms_key_id: "KmsKeyId",
3554
+ # },
3555
+ # },
3556
+ # network_config: {
3557
+ # enable_inter_container_traffic_encryption: false,
3558
+ # enable_network_isolation: false,
3559
+ # vpc_config: {
3560
+ # security_group_ids: ["SecurityGroupId"], # required
3561
+ # subnets: ["SubnetId"], # required
3562
+ # },
3563
+ # },
3564
+ # role_arn: "RoleArn", # required
3565
+ # stopping_condition: {
3566
+ # max_runtime_in_seconds: 1, # required
3567
+ # },
3568
+ # tags: [
3569
+ # {
3570
+ # key: "TagKey", # required
3571
+ # value: "TagValue", # required
3572
+ # },
3573
+ # ],
3574
+ # })
3575
+ #
3576
+ # @example Response structure
3577
+ #
3578
+ # resp.job_definition_arn #=> String
3579
+ #
3580
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelExplainabilityJobDefinition AWS API Documentation
3581
+ #
3582
+ # @overload create_model_explainability_job_definition(params = {})
3583
+ # @param [Hash] params ({})
3584
+ def create_model_explainability_job_definition(params = {}, options = {})
3585
+ req = build_request(:create_model_explainability_job_definition, params)
3586
+ req.send_request(options)
3587
+ end
3588
+
3589
+ # Creates a model package that you can use to create Amazon SageMaker
3590
+ # models or list on AWS Marketplace, or a versioned model that is part
3591
+ # of a model group. Buyers can subscribe to model packages listed on AWS
3592
+ # Marketplace to create models in Amazon SageMaker.
3593
+ #
3594
+ # To create a model package by specifying a Docker container that
3595
+ # contains your inference code and the Amazon S3 location of your model
3596
+ # artifacts, provide values for `InferenceSpecification`. To create a
3597
+ # model from an algorithm resource that you created or subscribed to in
3598
+ # AWS Marketplace, provide a value for `SourceAlgorithmSpecification`.
3599
+ #
3600
+ # <note markdown="1"> There are two types of model packages:
3601
+ #
3602
+ # * Versioned - a model that is part of a model group in the model
3603
+ # registry.
3604
+ #
3605
+ # * Unversioned - a model package that is not part of a model group.
3606
+ #
3607
+ # </note>
3608
+ #
3609
+ # @option params [String] :model_package_name
3610
+ # The name of the model package. The name must have 1 to 63 characters.
3611
+ # Valid characters are a-z, A-Z, 0-9, and - (hyphen).
3612
+ #
3613
+ # This parameter is required for unversioned models. It is not
3614
+ # applicable to versioned models.
3615
+ #
3616
+ # @option params [String] :model_package_group_name
3617
+ # The name of the model group that this model version belongs to.
3618
+ #
3619
+ # This parameter is required for versioned models, and does not apply to
3620
+ # unversioned models.
3621
+ #
3622
+ # @option params [String] :model_package_description
3623
+ # A description of the model package.
3624
+ #
3625
+ # @option params [Types::InferenceSpecification] :inference_specification
3626
+ # Specifies details about inference jobs that can be run with models
3627
+ # based on this model package, including the following:
3628
+ #
3629
+ # * The Amazon ECR paths of containers that contain the inference code
3630
+ # and model artifacts.
3631
+ #
3632
+ # * The instance types that the model package supports for transform
3633
+ # jobs and real-time endpoints used for inference.
3634
+ #
3635
+ # * The input and output content formats that the model package supports
3636
+ # for inference.
3637
+ #
3638
+ # @option params [Types::ModelPackageValidationSpecification] :validation_specification
3639
+ # Specifies configurations for one or more transform jobs that Amazon
3640
+ # SageMaker runs to test the model package.
3641
+ #
3642
+ # @option params [Types::SourceAlgorithmSpecification] :source_algorithm_specification
3643
+ # Details about the algorithm that was used to create the model package.
3644
+ #
3645
+ # @option params [Boolean] :certify_for_marketplace
3646
+ # Whether to certify the model package for listing on AWS Marketplace.
3647
+ #
3648
+ # This parameter is optional for unversioned models, and does not apply
3649
+ # to versioned models.
3650
+ #
3651
+ # @option params [Array<Types::Tag>] :tags
3652
+ # A list of key value pairs associated with the model. For more
3653
+ # information, see [Tagging AWS resources][1] in the *AWS General
3654
+ # Reference Guide*.
3655
+ #
3656
+ #
3657
+ #
3658
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
3142
3659
  #
3143
3660
  # @option params [String] :model_approval_status
3144
3661
  # Whether the model is approved for deployment.
@@ -3351,6 +3868,148 @@ module Aws::SageMaker
3351
3868
  req.send_request(options)
3352
3869
  end
3353
3870
 
3871
+ # Creates a definition for a job that monitors model quality and drift.
3872
+ # For information about model monitor, see [Amazon SageMaker Model
3873
+ # Monitor][1].
3874
+ #
3875
+ #
3876
+ #
3877
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor.html
3878
+ #
3879
+ # @option params [required, String] :job_definition_name
3880
+ # The name of the monitoring job definition.
3881
+ #
3882
+ # @option params [Types::ModelQualityBaselineConfig] :model_quality_baseline_config
3883
+ # Specifies the constraints and baselines for the monitoring job.
3884
+ #
3885
+ # @option params [required, Types::ModelQualityAppSpecification] :model_quality_app_specification
3886
+ # The container that runs the monitoring job.
3887
+ #
3888
+ # @option params [required, Types::ModelQualityJobInput] :model_quality_job_input
3889
+ # A list of the inputs that are monitored. Currently endpoints are
3890
+ # supported.
3891
+ #
3892
+ # @option params [required, Types::MonitoringOutputConfig] :model_quality_job_output_config
3893
+ # The output configuration for monitoring jobs.
3894
+ #
3895
+ # @option params [required, Types::MonitoringResources] :job_resources
3896
+ # Identifies the resources to deploy for a monitoring job.
3897
+ #
3898
+ # @option params [Types::MonitoringNetworkConfig] :network_config
3899
+ # Specifies the network configuration for the monitoring job.
3900
+ #
3901
+ # @option params [required, String] :role_arn
3902
+ # The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
3903
+ # can assume to perform tasks on your behalf.
3904
+ #
3905
+ # @option params [Types::MonitoringStoppingCondition] :stopping_condition
3906
+ # A time limit for how long the monitoring job is allowed to run before
3907
+ # stopping.
3908
+ #
3909
+ # @option params [Array<Types::Tag>] :tags
3910
+ # (Optional) An array of key-value pairs. For more information, see
3911
+ # [Using Cost Allocation Tags][1] in the *AWS Billing and Cost
3912
+ # Management User Guide*.
3913
+ #
3914
+ #
3915
+ #
3916
+ # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL
3917
+ #
3918
+ # @return [Types::CreateModelQualityJobDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3919
+ #
3920
+ # * {Types::CreateModelQualityJobDefinitionResponse#job_definition_arn #job_definition_arn} => String
3921
+ #
3922
+ # @example Request syntax with placeholder values
3923
+ #
3924
+ # resp = client.create_model_quality_job_definition({
3925
+ # job_definition_name: "MonitoringJobDefinitionName", # required
3926
+ # model_quality_baseline_config: {
3927
+ # baselining_job_name: "ProcessingJobName",
3928
+ # constraints_resource: {
3929
+ # s3_uri: "S3Uri",
3930
+ # },
3931
+ # },
3932
+ # model_quality_app_specification: { # required
3933
+ # image_uri: "ImageUri", # required
3934
+ # container_entrypoint: ["ContainerEntrypointString"],
3935
+ # container_arguments: ["ContainerArgument"],
3936
+ # record_preprocessor_source_uri: "S3Uri",
3937
+ # post_analytics_processor_source_uri: "S3Uri",
3938
+ # problem_type: "BinaryClassification", # accepts BinaryClassification, MulticlassClassification, Regression
3939
+ # environment: {
3940
+ # "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
3941
+ # },
3942
+ # },
3943
+ # model_quality_job_input: { # required
3944
+ # endpoint_input: { # required
3945
+ # endpoint_name: "EndpointName", # required
3946
+ # local_path: "ProcessingLocalPath", # required
3947
+ # s3_input_mode: "Pipe", # accepts Pipe, File
3948
+ # s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
3949
+ # features_attribute: "String",
3950
+ # inference_attribute: "String",
3951
+ # probability_attribute: "String",
3952
+ # probability_threshold_attribute: 1.0,
3953
+ # start_time_offset: "MonitoringTimeOffsetString",
3954
+ # end_time_offset: "MonitoringTimeOffsetString",
3955
+ # },
3956
+ # ground_truth_s3_input: { # required
3957
+ # s3_uri: "MonitoringS3Uri",
3958
+ # },
3959
+ # },
3960
+ # model_quality_job_output_config: { # required
3961
+ # monitoring_outputs: [ # required
3962
+ # {
3963
+ # s3_output: { # required
3964
+ # s3_uri: "MonitoringS3Uri", # required
3965
+ # local_path: "ProcessingLocalPath", # required
3966
+ # s3_upload_mode: "Continuous", # accepts Continuous, EndOfJob
3967
+ # },
3968
+ # },
3969
+ # ],
3970
+ # kms_key_id: "KmsKeyId",
3971
+ # },
3972
+ # job_resources: { # required
3973
+ # cluster_config: { # required
3974
+ # instance_count: 1, # required
3975
+ # 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
3976
+ # volume_size_in_gb: 1, # required
3977
+ # volume_kms_key_id: "KmsKeyId",
3978
+ # },
3979
+ # },
3980
+ # network_config: {
3981
+ # enable_inter_container_traffic_encryption: false,
3982
+ # enable_network_isolation: false,
3983
+ # vpc_config: {
3984
+ # security_group_ids: ["SecurityGroupId"], # required
3985
+ # subnets: ["SubnetId"], # required
3986
+ # },
3987
+ # },
3988
+ # role_arn: "RoleArn", # required
3989
+ # stopping_condition: {
3990
+ # max_runtime_in_seconds: 1, # required
3991
+ # },
3992
+ # tags: [
3993
+ # {
3994
+ # key: "TagKey", # required
3995
+ # value: "TagValue", # required
3996
+ # },
3997
+ # ],
3998
+ # })
3999
+ #
4000
+ # @example Response structure
4001
+ #
4002
+ # resp.job_definition_arn #=> String
4003
+ #
4004
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelQualityJobDefinition AWS API Documentation
4005
+ #
4006
+ # @overload create_model_quality_job_definition(params = {})
4007
+ # @param [Hash] params ({})
4008
+ def create_model_quality_job_definition(params = {}, options = {})
4009
+ req = build_request(:create_model_quality_job_definition, params)
4010
+ req.send_request(options)
4011
+ end
4012
+
3354
4013
  # Creates a schedule that regularly starts Amazon SageMaker Processing
3355
4014
  # Jobs to monitor the data captured for an Amazon SageMaker Endoint.
3356
4015
  #
@@ -3382,6 +4041,7 @@ module Aws::SageMaker
3382
4041
  # },
3383
4042
  # monitoring_job_definition: {
3384
4043
  # baseline_config: {
4044
+ # baselining_job_name: "ProcessingJobName",
3385
4045
  # constraints_resource: {
3386
4046
  # s3_uri: "S3Uri",
3387
4047
  # },
@@ -3396,6 +4056,12 @@ module Aws::SageMaker
3396
4056
  # local_path: "ProcessingLocalPath", # required
3397
4057
  # s3_input_mode: "Pipe", # accepts Pipe, File
3398
4058
  # s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
4059
+ # features_attribute: "String",
4060
+ # inference_attribute: "String",
4061
+ # probability_attribute: "String",
4062
+ # probability_threshold_attribute: 1.0,
4063
+ # start_time_offset: "MonitoringTimeOffsetString",
4064
+ # end_time_offset: "MonitoringTimeOffsetString",
3399
4065
  # },
3400
4066
  # },
3401
4067
  # ],
@@ -3442,6 +4108,8 @@ module Aws::SageMaker
3442
4108
  # },
3443
4109
  # role_arn: "RoleArn", # required
3444
4110
  # },
4111
+ # monitoring_job_definition_name: "MonitoringJobDefinitionName",
4112
+ # monitoring_type: "DataQuality", # accepts DataQuality, ModelQuality, ModelBias, ModelExplainability
3445
4113
  # },
3446
4114
  # tags: [
3447
4115
  # {
@@ -4370,14 +5038,23 @@ module Aws::SageMaker
4370
5038
  # training checkpoint data.
4371
5039
  #
4372
5040
  # @option params [Types::DebugHookConfig] :debug_hook_config
4373
- # Configuration information for the debug hook parameters, collection
4374
- # configuration, and storage paths.
5041
+ # Configuration information for the Debugger hook parameters, metric and
5042
+ # tensor collections, and storage paths. To learn more about how to
5043
+ # configure the `DebugHookConfig` parameter, see [Use the SageMaker and
5044
+ # Debugger Configuration API Operations to Create, Update, and Debug
5045
+ # Your Training Job][1].
5046
+ #
5047
+ #
5048
+ #
5049
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/debugger-createtrainingjob-api.html
4375
5050
  #
4376
5051
  # @option params [Array<Types::DebugRuleConfiguration>] :debug_rule_configurations
4377
- # Configuration information for debugging rules.
5052
+ # Configuration information for Debugger rules for debugging output
5053
+ # tensors.
4378
5054
  #
4379
5055
  # @option params [Types::TensorBoardOutputConfig] :tensor_board_output_config
4380
- # Configuration of storage locations for TensorBoard output.
5056
+ # Configuration of storage locations for the Debugger TensorBoard output
5057
+ # data.
4381
5058
  #
4382
5059
  # @option params [Types::ExperimentConfig] :experiment_config
4383
5060
  # Associates a SageMaker job as a trial component with an experiment and
@@ -4389,6 +5066,14 @@ module Aws::SageMaker
4389
5066
  #
4390
5067
  # * CreateTransformJob
4391
5068
  #
5069
+ # @option params [Types::ProfilerConfig] :profiler_config
5070
+ # Configuration information for Debugger system monitoring, framework
5071
+ # profiling, and storage paths.
5072
+ #
5073
+ # @option params [Array<Types::ProfilerRuleConfiguration>] :profiler_rule_configurations
5074
+ # Configuration information for Debugger rules for profiling system and
5075
+ # framework metrics.
5076
+ #
4392
5077
  # @return [Types::CreateTrainingJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4393
5078
  #
4394
5079
  # * {Types::CreateTrainingJobResponse#training_job_arn #training_job_arn} => String
@@ -4507,6 +5192,26 @@ module Aws::SageMaker
4507
5192
  # trial_name: "ExperimentEntityName",
4508
5193
  # trial_component_display_name: "ExperimentEntityName",
4509
5194
  # },
5195
+ # profiler_config: {
5196
+ # s3_output_path: "S3Uri", # required
5197
+ # profiling_interval_in_milliseconds: 1,
5198
+ # profiling_parameters: {
5199
+ # "ConfigKey" => "ConfigValue",
5200
+ # },
5201
+ # },
5202
+ # profiler_rule_configurations: [
5203
+ # {
5204
+ # rule_configuration_name: "RuleConfigurationName", # required
5205
+ # local_path: "DirectoryPath",
5206
+ # s3_output_path: "S3Uri",
5207
+ # rule_evaluator_image: "AlgorithmImage", # required
5208
+ # 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
5209
+ # volume_size_in_gb: 1,
5210
+ # rule_parameters: {
5211
+ # "ConfigKey" => "ConfigValue",
5212
+ # },
5213
+ # },
5214
+ # ],
4510
5215
  # })
4511
5216
  #
4512
5217
  # @example Response structure
@@ -5471,16 +6176,60 @@ module Aws::SageMaker
5471
6176
  req.send_request(options)
5472
6177
  end
5473
6178
 
5474
- # Used to delete a domain. If you onboarded with IAM mode, you will need
5475
- # to delete your domain to onboard again using SSO. Use with caution.
5476
- # All of the members of the domain will lose access to their EFS volume,
5477
- # including data, notebooks, and other artifacts.
6179
+ # Deletes a data quality monitoring job definition.
5478
6180
  #
5479
- # @option params [required, String] :domain_id
5480
- # The domain ID.
6181
+ # @option params [required, String] :job_definition_name
6182
+ # The name of the data quality monitoring job definition to delete.
5481
6183
  #
5482
- # @option params [Types::RetentionPolicy] :retention_policy
5483
- # The retention policy for this domain, which specifies whether
6184
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
6185
+ #
6186
+ # @example Request syntax with placeholder values
6187
+ #
6188
+ # resp = client.delete_data_quality_job_definition({
6189
+ # job_definition_name: "MonitoringJobDefinitionName", # required
6190
+ # })
6191
+ #
6192
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteDataQualityJobDefinition AWS API Documentation
6193
+ #
6194
+ # @overload delete_data_quality_job_definition(params = {})
6195
+ # @param [Hash] params ({})
6196
+ def delete_data_quality_job_definition(params = {}, options = {})
6197
+ req = build_request(:delete_data_quality_job_definition, params)
6198
+ req.send_request(options)
6199
+ end
6200
+
6201
+ # Deletes a fleet.
6202
+ #
6203
+ # @option params [required, String] :device_fleet_name
6204
+ # The name of the fleet to delete.
6205
+ #
6206
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
6207
+ #
6208
+ # @example Request syntax with placeholder values
6209
+ #
6210
+ # resp = client.delete_device_fleet({
6211
+ # device_fleet_name: "EntityName", # required
6212
+ # })
6213
+ #
6214
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteDeviceFleet AWS API Documentation
6215
+ #
6216
+ # @overload delete_device_fleet(params = {})
6217
+ # @param [Hash] params ({})
6218
+ def delete_device_fleet(params = {}, options = {})
6219
+ req = build_request(:delete_device_fleet, params)
6220
+ req.send_request(options)
6221
+ end
6222
+
6223
+ # Used to delete a domain. If you onboarded with IAM mode, you will need
6224
+ # to delete your domain to onboard again using SSO. Use with caution.
6225
+ # All of the members of the domain will lose access to their EFS volume,
6226
+ # including data, notebooks, and other artifacts.
6227
+ #
6228
+ # @option params [required, String] :domain_id
6229
+ # The domain ID.
6230
+ #
6231
+ # @option params [Types::RetentionPolicy] :retention_policy
6232
+ # The retention policy for this domain, which specifies whether
5484
6233
  # resources will be retained after the Domain is deleted. By default,
5485
6234
  # all resources are retained (not automatically deleted).
5486
6235
  #
@@ -5750,6 +6499,50 @@ module Aws::SageMaker
5750
6499
  req.send_request(options)
5751
6500
  end
5752
6501
 
6502
+ # Deletes an Amazon SageMaker model bias job definition.
6503
+ #
6504
+ # @option params [required, String] :job_definition_name
6505
+ # The name of the model bias job definition to delete.
6506
+ #
6507
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
6508
+ #
6509
+ # @example Request syntax with placeholder values
6510
+ #
6511
+ # resp = client.delete_model_bias_job_definition({
6512
+ # job_definition_name: "MonitoringJobDefinitionName", # required
6513
+ # })
6514
+ #
6515
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteModelBiasJobDefinition AWS API Documentation
6516
+ #
6517
+ # @overload delete_model_bias_job_definition(params = {})
6518
+ # @param [Hash] params ({})
6519
+ def delete_model_bias_job_definition(params = {}, options = {})
6520
+ req = build_request(:delete_model_bias_job_definition, params)
6521
+ req.send_request(options)
6522
+ end
6523
+
6524
+ # Deletes an Amazon SageMaker model explainability job definition.
6525
+ #
6526
+ # @option params [required, String] :job_definition_name
6527
+ # The name of the model explainability job definition to delete.
6528
+ #
6529
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
6530
+ #
6531
+ # @example Request syntax with placeholder values
6532
+ #
6533
+ # resp = client.delete_model_explainability_job_definition({
6534
+ # job_definition_name: "MonitoringJobDefinitionName", # required
6535
+ # })
6536
+ #
6537
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteModelExplainabilityJobDefinition AWS API Documentation
6538
+ #
6539
+ # @overload delete_model_explainability_job_definition(params = {})
6540
+ # @param [Hash] params ({})
6541
+ def delete_model_explainability_job_definition(params = {}, options = {})
6542
+ req = build_request(:delete_model_explainability_job_definition, params)
6543
+ req.send_request(options)
6544
+ end
6545
+
5753
6546
  # Deletes a model package.
5754
6547
  #
5755
6548
  # A model package is used to create Amazon SageMaker models or list on
@@ -5821,6 +6614,28 @@ module Aws::SageMaker
5821
6614
  req.send_request(options)
5822
6615
  end
5823
6616
 
6617
+ # Deletes the secified model quality monitoring job definition.
6618
+ #
6619
+ # @option params [required, String] :job_definition_name
6620
+ # The name of the model quality monitoring job definition to delete.
6621
+ #
6622
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
6623
+ #
6624
+ # @example Request syntax with placeholder values
6625
+ #
6626
+ # resp = client.delete_model_quality_job_definition({
6627
+ # job_definition_name: "MonitoringJobDefinitionName", # required
6628
+ # })
6629
+ #
6630
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteModelQualityJobDefinition AWS API Documentation
6631
+ #
6632
+ # @overload delete_model_quality_job_definition(params = {})
6633
+ # @param [Hash] params ({})
6634
+ def delete_model_quality_job_definition(params = {}, options = {})
6635
+ req = build_request(:delete_model_quality_job_definition, params)
6636
+ req.send_request(options)
6637
+ end
6638
+
5824
6639
  # Deletes a monitoring schedule. Also stops the schedule had not already
5825
6640
  # been stopped. This does not delete the job execution history of the
5826
6641
  # monitoring schedule.
@@ -5895,7 +6710,7 @@ module Aws::SageMaker
5895
6710
  req.send_request(options)
5896
6711
  end
5897
6712
 
5898
- # Deletes a pipeline.
6713
+ # Deletes a pipeline if there are no in-progress executions.
5899
6714
  #
5900
6715
  # @option params [required, String] :pipeline_name
5901
6716
  # The name of the pipeline to delete.
@@ -6137,6 +6952,33 @@ module Aws::SageMaker
6137
6952
  req.send_request(options)
6138
6953
  end
6139
6954
 
6955
+ # Deregisters the specified devices. After you deregister a device, you
6956
+ # will need to re-register the devices.
6957
+ #
6958
+ # @option params [required, String] :device_fleet_name
6959
+ # The name of the fleet the devices belong to.
6960
+ #
6961
+ # @option params [required, Array<String>] :device_names
6962
+ # The unique IDs of the devices.
6963
+ #
6964
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
6965
+ #
6966
+ # @example Request syntax with placeholder values
6967
+ #
6968
+ # resp = client.deregister_devices({
6969
+ # device_fleet_name: "EntityName", # required
6970
+ # device_names: ["DeviceName"], # required
6971
+ # })
6972
+ #
6973
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeregisterDevices AWS API Documentation
6974
+ #
6975
+ # @overload deregister_devices(params = {})
6976
+ # @param [Hash] params ({})
6977
+ def deregister_devices(params = {}, options = {})
6978
+ req = build_request(:deregister_devices, params)
6979
+ req.send_request(options)
6980
+ end
6981
+
6140
6982
  # Describes an action.
6141
6983
  #
6142
6984
  # @option params [required, String] :action_name
@@ -6761,6 +7603,186 @@ module Aws::SageMaker
6761
7603
  req.send_request(options)
6762
7604
  end
6763
7605
 
7606
+ # Gets the details of a data quality monitoring job definition.
7607
+ #
7608
+ # @option params [required, String] :job_definition_name
7609
+ # The name of the data quality monitoring job definition to describe.
7610
+ #
7611
+ # @return [Types::DescribeDataQualityJobDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7612
+ #
7613
+ # * {Types::DescribeDataQualityJobDefinitionResponse#job_definition_arn #job_definition_arn} => String
7614
+ # * {Types::DescribeDataQualityJobDefinitionResponse#job_definition_name #job_definition_name} => String
7615
+ # * {Types::DescribeDataQualityJobDefinitionResponse#creation_time #creation_time} => Time
7616
+ # * {Types::DescribeDataQualityJobDefinitionResponse#data_quality_baseline_config #data_quality_baseline_config} => Types::DataQualityBaselineConfig
7617
+ # * {Types::DescribeDataQualityJobDefinitionResponse#data_quality_app_specification #data_quality_app_specification} => Types::DataQualityAppSpecification
7618
+ # * {Types::DescribeDataQualityJobDefinitionResponse#data_quality_job_input #data_quality_job_input} => Types::DataQualityJobInput
7619
+ # * {Types::DescribeDataQualityJobDefinitionResponse#data_quality_job_output_config #data_quality_job_output_config} => Types::MonitoringOutputConfig
7620
+ # * {Types::DescribeDataQualityJobDefinitionResponse#job_resources #job_resources} => Types::MonitoringResources
7621
+ # * {Types::DescribeDataQualityJobDefinitionResponse#network_config #network_config} => Types::MonitoringNetworkConfig
7622
+ # * {Types::DescribeDataQualityJobDefinitionResponse#role_arn #role_arn} => String
7623
+ # * {Types::DescribeDataQualityJobDefinitionResponse#stopping_condition #stopping_condition} => Types::MonitoringStoppingCondition
7624
+ #
7625
+ # @example Request syntax with placeholder values
7626
+ #
7627
+ # resp = client.describe_data_quality_job_definition({
7628
+ # job_definition_name: "MonitoringJobDefinitionName", # required
7629
+ # })
7630
+ #
7631
+ # @example Response structure
7632
+ #
7633
+ # resp.job_definition_arn #=> String
7634
+ # resp.job_definition_name #=> String
7635
+ # resp.creation_time #=> Time
7636
+ # resp.data_quality_baseline_config.baselining_job_name #=> String
7637
+ # resp.data_quality_baseline_config.constraints_resource.s3_uri #=> String
7638
+ # resp.data_quality_baseline_config.statistics_resource.s3_uri #=> String
7639
+ # resp.data_quality_app_specification.image_uri #=> String
7640
+ # resp.data_quality_app_specification.container_entrypoint #=> Array
7641
+ # resp.data_quality_app_specification.container_entrypoint[0] #=> String
7642
+ # resp.data_quality_app_specification.container_arguments #=> Array
7643
+ # resp.data_quality_app_specification.container_arguments[0] #=> String
7644
+ # resp.data_quality_app_specification.record_preprocessor_source_uri #=> String
7645
+ # resp.data_quality_app_specification.post_analytics_processor_source_uri #=> String
7646
+ # resp.data_quality_app_specification.environment #=> Hash
7647
+ # resp.data_quality_app_specification.environment["ProcessingEnvironmentKey"] #=> String
7648
+ # resp.data_quality_job_input.endpoint_input.endpoint_name #=> String
7649
+ # resp.data_quality_job_input.endpoint_input.local_path #=> String
7650
+ # resp.data_quality_job_input.endpoint_input.s3_input_mode #=> String, one of "Pipe", "File"
7651
+ # resp.data_quality_job_input.endpoint_input.s3_data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
7652
+ # resp.data_quality_job_input.endpoint_input.features_attribute #=> String
7653
+ # resp.data_quality_job_input.endpoint_input.inference_attribute #=> String
7654
+ # resp.data_quality_job_input.endpoint_input.probability_attribute #=> String
7655
+ # resp.data_quality_job_input.endpoint_input.probability_threshold_attribute #=> Float
7656
+ # resp.data_quality_job_input.endpoint_input.start_time_offset #=> String
7657
+ # resp.data_quality_job_input.endpoint_input.end_time_offset #=> String
7658
+ # resp.data_quality_job_output_config.monitoring_outputs #=> Array
7659
+ # resp.data_quality_job_output_config.monitoring_outputs[0].s3_output.s3_uri #=> String
7660
+ # resp.data_quality_job_output_config.monitoring_outputs[0].s3_output.local_path #=> String
7661
+ # resp.data_quality_job_output_config.monitoring_outputs[0].s3_output.s3_upload_mode #=> String, one of "Continuous", "EndOfJob"
7662
+ # resp.data_quality_job_output_config.kms_key_id #=> String
7663
+ # resp.job_resources.cluster_config.instance_count #=> Integer
7664
+ # resp.job_resources.cluster_config.instance_type #=> String, one of "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"
7665
+ # resp.job_resources.cluster_config.volume_size_in_gb #=> Integer
7666
+ # resp.job_resources.cluster_config.volume_kms_key_id #=> String
7667
+ # resp.network_config.enable_inter_container_traffic_encryption #=> Boolean
7668
+ # resp.network_config.enable_network_isolation #=> Boolean
7669
+ # resp.network_config.vpc_config.security_group_ids #=> Array
7670
+ # resp.network_config.vpc_config.security_group_ids[0] #=> String
7671
+ # resp.network_config.vpc_config.subnets #=> Array
7672
+ # resp.network_config.vpc_config.subnets[0] #=> String
7673
+ # resp.role_arn #=> String
7674
+ # resp.stopping_condition.max_runtime_in_seconds #=> Integer
7675
+ #
7676
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDataQualityJobDefinition AWS API Documentation
7677
+ #
7678
+ # @overload describe_data_quality_job_definition(params = {})
7679
+ # @param [Hash] params ({})
7680
+ def describe_data_quality_job_definition(params = {}, options = {})
7681
+ req = build_request(:describe_data_quality_job_definition, params)
7682
+ req.send_request(options)
7683
+ end
7684
+
7685
+ # Describes the device.
7686
+ #
7687
+ # @option params [String] :next_token
7688
+ # Next token of device description.
7689
+ #
7690
+ # @option params [required, String] :device_name
7691
+ # The unique ID of the device.
7692
+ #
7693
+ # @option params [required, String] :device_fleet_name
7694
+ # The name of the fleet the devices belong to.
7695
+ #
7696
+ # @return [Types::DescribeDeviceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7697
+ #
7698
+ # * {Types::DescribeDeviceResponse#device_arn #device_arn} => String
7699
+ # * {Types::DescribeDeviceResponse#device_name #device_name} => String
7700
+ # * {Types::DescribeDeviceResponse#description #description} => String
7701
+ # * {Types::DescribeDeviceResponse#device_fleet_name #device_fleet_name} => String
7702
+ # * {Types::DescribeDeviceResponse#iot_thing_name #iot_thing_name} => String
7703
+ # * {Types::DescribeDeviceResponse#registration_time #registration_time} => Time
7704
+ # * {Types::DescribeDeviceResponse#latest_heartbeat #latest_heartbeat} => Time
7705
+ # * {Types::DescribeDeviceResponse#models #models} => Array&lt;Types::EdgeModel&gt;
7706
+ # * {Types::DescribeDeviceResponse#max_models #max_models} => Integer
7707
+ # * {Types::DescribeDeviceResponse#next_token #next_token} => String
7708
+ #
7709
+ # @example Request syntax with placeholder values
7710
+ #
7711
+ # resp = client.describe_device({
7712
+ # next_token: "NextToken",
7713
+ # device_name: "EntityName", # required
7714
+ # device_fleet_name: "EntityName", # required
7715
+ # })
7716
+ #
7717
+ # @example Response structure
7718
+ #
7719
+ # resp.device_arn #=> String
7720
+ # resp.device_name #=> String
7721
+ # resp.description #=> String
7722
+ # resp.device_fleet_name #=> String
7723
+ # resp.iot_thing_name #=> String
7724
+ # resp.registration_time #=> Time
7725
+ # resp.latest_heartbeat #=> Time
7726
+ # resp.models #=> Array
7727
+ # resp.models[0].model_name #=> String
7728
+ # resp.models[0].model_version #=> String
7729
+ # resp.models[0].latest_sample_time #=> Time
7730
+ # resp.models[0].latest_inference #=> Time
7731
+ # resp.max_models #=> Integer
7732
+ # resp.next_token #=> String
7733
+ #
7734
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDevice AWS API Documentation
7735
+ #
7736
+ # @overload describe_device(params = {})
7737
+ # @param [Hash] params ({})
7738
+ def describe_device(params = {}, options = {})
7739
+ req = build_request(:describe_device, params)
7740
+ req.send_request(options)
7741
+ end
7742
+
7743
+ # A description of the fleet the device belongs to.
7744
+ #
7745
+ # @option params [required, String] :device_fleet_name
7746
+ # The name of the fleet.
7747
+ #
7748
+ # @return [Types::DescribeDeviceFleetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7749
+ #
7750
+ # * {Types::DescribeDeviceFleetResponse#device_fleet_name #device_fleet_name} => String
7751
+ # * {Types::DescribeDeviceFleetResponse#device_fleet_arn #device_fleet_arn} => String
7752
+ # * {Types::DescribeDeviceFleetResponse#output_config #output_config} => Types::EdgeOutputConfig
7753
+ # * {Types::DescribeDeviceFleetResponse#description #description} => String
7754
+ # * {Types::DescribeDeviceFleetResponse#creation_time #creation_time} => Time
7755
+ # * {Types::DescribeDeviceFleetResponse#last_modified_time #last_modified_time} => Time
7756
+ # * {Types::DescribeDeviceFleetResponse#role_arn #role_arn} => String
7757
+ # * {Types::DescribeDeviceFleetResponse#iot_role_alias #iot_role_alias} => String
7758
+ #
7759
+ # @example Request syntax with placeholder values
7760
+ #
7761
+ # resp = client.describe_device_fleet({
7762
+ # device_fleet_name: "EntityName", # required
7763
+ # })
7764
+ #
7765
+ # @example Response structure
7766
+ #
7767
+ # resp.device_fleet_name #=> String
7768
+ # resp.device_fleet_arn #=> String
7769
+ # resp.output_config.s3_output_location #=> String
7770
+ # resp.output_config.kms_key_id #=> String
7771
+ # resp.description #=> String
7772
+ # resp.creation_time #=> Time
7773
+ # resp.last_modified_time #=> Time
7774
+ # resp.role_arn #=> String
7775
+ # resp.iot_role_alias #=> String
7776
+ #
7777
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDeviceFleet AWS API Documentation
7778
+ #
7779
+ # @overload describe_device_fleet(params = {})
7780
+ # @param [Hash] params ({})
7781
+ def describe_device_fleet(params = {}, options = {})
7782
+ req = build_request(:describe_device_fleet, params)
7783
+ req.send_request(options)
7784
+ end
7785
+
6764
7786
  # The description of the domain.
6765
7787
  #
6766
7788
  # @option params [required, String] :domain_id
@@ -6840,6 +7862,61 @@ module Aws::SageMaker
6840
7862
  req.send_request(options)
6841
7863
  end
6842
7864
 
7865
+ # A description of edge packaging jobs.
7866
+ #
7867
+ # @option params [required, String] :edge_packaging_job_name
7868
+ # The name of the edge packaging job.
7869
+ #
7870
+ # @return [Types::DescribeEdgePackagingJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7871
+ #
7872
+ # * {Types::DescribeEdgePackagingJobResponse#edge_packaging_job_arn #edge_packaging_job_arn} => String
7873
+ # * {Types::DescribeEdgePackagingJobResponse#edge_packaging_job_name #edge_packaging_job_name} => String
7874
+ # * {Types::DescribeEdgePackagingJobResponse#compilation_job_name #compilation_job_name} => String
7875
+ # * {Types::DescribeEdgePackagingJobResponse#model_name #model_name} => String
7876
+ # * {Types::DescribeEdgePackagingJobResponse#model_version #model_version} => String
7877
+ # * {Types::DescribeEdgePackagingJobResponse#role_arn #role_arn} => String
7878
+ # * {Types::DescribeEdgePackagingJobResponse#output_config #output_config} => Types::EdgeOutputConfig
7879
+ # * {Types::DescribeEdgePackagingJobResponse#resource_key #resource_key} => String
7880
+ # * {Types::DescribeEdgePackagingJobResponse#edge_packaging_job_status #edge_packaging_job_status} => String
7881
+ # * {Types::DescribeEdgePackagingJobResponse#edge_packaging_job_status_message #edge_packaging_job_status_message} => String
7882
+ # * {Types::DescribeEdgePackagingJobResponse#creation_time #creation_time} => Time
7883
+ # * {Types::DescribeEdgePackagingJobResponse#last_modified_time #last_modified_time} => Time
7884
+ # * {Types::DescribeEdgePackagingJobResponse#model_artifact #model_artifact} => String
7885
+ # * {Types::DescribeEdgePackagingJobResponse#model_signature #model_signature} => String
7886
+ #
7887
+ # @example Request syntax with placeholder values
7888
+ #
7889
+ # resp = client.describe_edge_packaging_job({
7890
+ # edge_packaging_job_name: "EntityName", # required
7891
+ # })
7892
+ #
7893
+ # @example Response structure
7894
+ #
7895
+ # resp.edge_packaging_job_arn #=> String
7896
+ # resp.edge_packaging_job_name #=> String
7897
+ # resp.compilation_job_name #=> String
7898
+ # resp.model_name #=> String
7899
+ # resp.model_version #=> String
7900
+ # resp.role_arn #=> String
7901
+ # resp.output_config.s3_output_location #=> String
7902
+ # resp.output_config.kms_key_id #=> String
7903
+ # resp.resource_key #=> String
7904
+ # resp.edge_packaging_job_status #=> String, one of "STARTING", "INPROGRESS", "COMPLETED", "FAILED", "STOPPING", "STOPPED"
7905
+ # resp.edge_packaging_job_status_message #=> String
7906
+ # resp.creation_time #=> Time
7907
+ # resp.last_modified_time #=> Time
7908
+ # resp.model_artifact #=> String
7909
+ # resp.model_signature #=> String
7910
+ #
7911
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEdgePackagingJob AWS API Documentation
7912
+ #
7913
+ # @overload describe_edge_packaging_job(params = {})
7914
+ # @param [Hash] params ({})
7915
+ def describe_edge_packaging_job(params = {}, options = {})
7916
+ req = build_request(:describe_edge_packaging_job, params)
7917
+ req.send_request(options)
7918
+ end
7919
+
6843
7920
  # Returns the description of an endpoint.
6844
7921
  #
6845
7922
  # @option params [required, String] :endpoint_name
@@ -7656,6 +8733,155 @@ module Aws::SageMaker
7656
8733
  req.send_request(options)
7657
8734
  end
7658
8735
 
8736
+ # Returns a description of a model bias job definition.
8737
+ #
8738
+ # @option params [required, String] :job_definition_name
8739
+ # The name of the model bias job definition. The name must be unique
8740
+ # within an AWS Region in the AWS account.
8741
+ #
8742
+ # @return [Types::DescribeModelBiasJobDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8743
+ #
8744
+ # * {Types::DescribeModelBiasJobDefinitionResponse#job_definition_arn #job_definition_arn} => String
8745
+ # * {Types::DescribeModelBiasJobDefinitionResponse#job_definition_name #job_definition_name} => String
8746
+ # * {Types::DescribeModelBiasJobDefinitionResponse#creation_time #creation_time} => Time
8747
+ # * {Types::DescribeModelBiasJobDefinitionResponse#model_bias_baseline_config #model_bias_baseline_config} => Types::ModelBiasBaselineConfig
8748
+ # * {Types::DescribeModelBiasJobDefinitionResponse#model_bias_app_specification #model_bias_app_specification} => Types::ModelBiasAppSpecification
8749
+ # * {Types::DescribeModelBiasJobDefinitionResponse#model_bias_job_input #model_bias_job_input} => Types::ModelBiasJobInput
8750
+ # * {Types::DescribeModelBiasJobDefinitionResponse#model_bias_job_output_config #model_bias_job_output_config} => Types::MonitoringOutputConfig
8751
+ # * {Types::DescribeModelBiasJobDefinitionResponse#job_resources #job_resources} => Types::MonitoringResources
8752
+ # * {Types::DescribeModelBiasJobDefinitionResponse#network_config #network_config} => Types::MonitoringNetworkConfig
8753
+ # * {Types::DescribeModelBiasJobDefinitionResponse#role_arn #role_arn} => String
8754
+ # * {Types::DescribeModelBiasJobDefinitionResponse#stopping_condition #stopping_condition} => Types::MonitoringStoppingCondition
8755
+ #
8756
+ # @example Request syntax with placeholder values
8757
+ #
8758
+ # resp = client.describe_model_bias_job_definition({
8759
+ # job_definition_name: "MonitoringJobDefinitionName", # required
8760
+ # })
8761
+ #
8762
+ # @example Response structure
8763
+ #
8764
+ # resp.job_definition_arn #=> String
8765
+ # resp.job_definition_name #=> String
8766
+ # resp.creation_time #=> Time
8767
+ # resp.model_bias_baseline_config.baselining_job_name #=> String
8768
+ # resp.model_bias_baseline_config.constraints_resource.s3_uri #=> String
8769
+ # resp.model_bias_app_specification.image_uri #=> String
8770
+ # resp.model_bias_app_specification.config_uri #=> String
8771
+ # resp.model_bias_app_specification.environment #=> Hash
8772
+ # resp.model_bias_app_specification.environment["ProcessingEnvironmentKey"] #=> String
8773
+ # resp.model_bias_job_input.endpoint_input.endpoint_name #=> String
8774
+ # resp.model_bias_job_input.endpoint_input.local_path #=> String
8775
+ # resp.model_bias_job_input.endpoint_input.s3_input_mode #=> String, one of "Pipe", "File"
8776
+ # resp.model_bias_job_input.endpoint_input.s3_data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
8777
+ # resp.model_bias_job_input.endpoint_input.features_attribute #=> String
8778
+ # resp.model_bias_job_input.endpoint_input.inference_attribute #=> String
8779
+ # resp.model_bias_job_input.endpoint_input.probability_attribute #=> String
8780
+ # resp.model_bias_job_input.endpoint_input.probability_threshold_attribute #=> Float
8781
+ # resp.model_bias_job_input.endpoint_input.start_time_offset #=> String
8782
+ # resp.model_bias_job_input.endpoint_input.end_time_offset #=> String
8783
+ # resp.model_bias_job_input.ground_truth_s3_input.s3_uri #=> String
8784
+ # resp.model_bias_job_output_config.monitoring_outputs #=> Array
8785
+ # resp.model_bias_job_output_config.monitoring_outputs[0].s3_output.s3_uri #=> String
8786
+ # resp.model_bias_job_output_config.monitoring_outputs[0].s3_output.local_path #=> String
8787
+ # resp.model_bias_job_output_config.monitoring_outputs[0].s3_output.s3_upload_mode #=> String, one of "Continuous", "EndOfJob"
8788
+ # resp.model_bias_job_output_config.kms_key_id #=> String
8789
+ # resp.job_resources.cluster_config.instance_count #=> Integer
8790
+ # resp.job_resources.cluster_config.instance_type #=> String, one of "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"
8791
+ # resp.job_resources.cluster_config.volume_size_in_gb #=> Integer
8792
+ # resp.job_resources.cluster_config.volume_kms_key_id #=> String
8793
+ # resp.network_config.enable_inter_container_traffic_encryption #=> Boolean
8794
+ # resp.network_config.enable_network_isolation #=> Boolean
8795
+ # resp.network_config.vpc_config.security_group_ids #=> Array
8796
+ # resp.network_config.vpc_config.security_group_ids[0] #=> String
8797
+ # resp.network_config.vpc_config.subnets #=> Array
8798
+ # resp.network_config.vpc_config.subnets[0] #=> String
8799
+ # resp.role_arn #=> String
8800
+ # resp.stopping_condition.max_runtime_in_seconds #=> Integer
8801
+ #
8802
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelBiasJobDefinition AWS API Documentation
8803
+ #
8804
+ # @overload describe_model_bias_job_definition(params = {})
8805
+ # @param [Hash] params ({})
8806
+ def describe_model_bias_job_definition(params = {}, options = {})
8807
+ req = build_request(:describe_model_bias_job_definition, params)
8808
+ req.send_request(options)
8809
+ end
8810
+
8811
+ # Returns a description of a model explainability job definition.
8812
+ #
8813
+ # @option params [required, String] :job_definition_name
8814
+ # The name of the model explainability job definition. The name must be
8815
+ # unique within an AWS Region in the AWS account.
8816
+ #
8817
+ # @return [Types::DescribeModelExplainabilityJobDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8818
+ #
8819
+ # * {Types::DescribeModelExplainabilityJobDefinitionResponse#job_definition_arn #job_definition_arn} => String
8820
+ # * {Types::DescribeModelExplainabilityJobDefinitionResponse#job_definition_name #job_definition_name} => String
8821
+ # * {Types::DescribeModelExplainabilityJobDefinitionResponse#creation_time #creation_time} => Time
8822
+ # * {Types::DescribeModelExplainabilityJobDefinitionResponse#model_explainability_baseline_config #model_explainability_baseline_config} => Types::ModelExplainabilityBaselineConfig
8823
+ # * {Types::DescribeModelExplainabilityJobDefinitionResponse#model_explainability_app_specification #model_explainability_app_specification} => Types::ModelExplainabilityAppSpecification
8824
+ # * {Types::DescribeModelExplainabilityJobDefinitionResponse#model_explainability_job_input #model_explainability_job_input} => Types::ModelExplainabilityJobInput
8825
+ # * {Types::DescribeModelExplainabilityJobDefinitionResponse#model_explainability_job_output_config #model_explainability_job_output_config} => Types::MonitoringOutputConfig
8826
+ # * {Types::DescribeModelExplainabilityJobDefinitionResponse#job_resources #job_resources} => Types::MonitoringResources
8827
+ # * {Types::DescribeModelExplainabilityJobDefinitionResponse#network_config #network_config} => Types::MonitoringNetworkConfig
8828
+ # * {Types::DescribeModelExplainabilityJobDefinitionResponse#role_arn #role_arn} => String
8829
+ # * {Types::DescribeModelExplainabilityJobDefinitionResponse#stopping_condition #stopping_condition} => Types::MonitoringStoppingCondition
8830
+ #
8831
+ # @example Request syntax with placeholder values
8832
+ #
8833
+ # resp = client.describe_model_explainability_job_definition({
8834
+ # job_definition_name: "MonitoringJobDefinitionName", # required
8835
+ # })
8836
+ #
8837
+ # @example Response structure
8838
+ #
8839
+ # resp.job_definition_arn #=> String
8840
+ # resp.job_definition_name #=> String
8841
+ # resp.creation_time #=> Time
8842
+ # resp.model_explainability_baseline_config.baselining_job_name #=> String
8843
+ # resp.model_explainability_baseline_config.constraints_resource.s3_uri #=> String
8844
+ # resp.model_explainability_app_specification.image_uri #=> String
8845
+ # resp.model_explainability_app_specification.config_uri #=> String
8846
+ # resp.model_explainability_app_specification.environment #=> Hash
8847
+ # resp.model_explainability_app_specification.environment["ProcessingEnvironmentKey"] #=> String
8848
+ # resp.model_explainability_job_input.endpoint_input.endpoint_name #=> String
8849
+ # resp.model_explainability_job_input.endpoint_input.local_path #=> String
8850
+ # resp.model_explainability_job_input.endpoint_input.s3_input_mode #=> String, one of "Pipe", "File"
8851
+ # resp.model_explainability_job_input.endpoint_input.s3_data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
8852
+ # resp.model_explainability_job_input.endpoint_input.features_attribute #=> String
8853
+ # resp.model_explainability_job_input.endpoint_input.inference_attribute #=> String
8854
+ # resp.model_explainability_job_input.endpoint_input.probability_attribute #=> String
8855
+ # resp.model_explainability_job_input.endpoint_input.probability_threshold_attribute #=> Float
8856
+ # resp.model_explainability_job_input.endpoint_input.start_time_offset #=> String
8857
+ # resp.model_explainability_job_input.endpoint_input.end_time_offset #=> String
8858
+ # resp.model_explainability_job_output_config.monitoring_outputs #=> Array
8859
+ # resp.model_explainability_job_output_config.monitoring_outputs[0].s3_output.s3_uri #=> String
8860
+ # resp.model_explainability_job_output_config.monitoring_outputs[0].s3_output.local_path #=> String
8861
+ # resp.model_explainability_job_output_config.monitoring_outputs[0].s3_output.s3_upload_mode #=> String, one of "Continuous", "EndOfJob"
8862
+ # resp.model_explainability_job_output_config.kms_key_id #=> String
8863
+ # resp.job_resources.cluster_config.instance_count #=> Integer
8864
+ # resp.job_resources.cluster_config.instance_type #=> String, one of "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"
8865
+ # resp.job_resources.cluster_config.volume_size_in_gb #=> Integer
8866
+ # resp.job_resources.cluster_config.volume_kms_key_id #=> String
8867
+ # resp.network_config.enable_inter_container_traffic_encryption #=> Boolean
8868
+ # resp.network_config.enable_network_isolation #=> Boolean
8869
+ # resp.network_config.vpc_config.security_group_ids #=> Array
8870
+ # resp.network_config.vpc_config.security_group_ids[0] #=> String
8871
+ # resp.network_config.vpc_config.subnets #=> Array
8872
+ # resp.network_config.vpc_config.subnets[0] #=> String
8873
+ # resp.role_arn #=> String
8874
+ # resp.stopping_condition.max_runtime_in_seconds #=> Integer
8875
+ #
8876
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelExplainabilityJobDefinition AWS API Documentation
8877
+ #
8878
+ # @overload describe_model_explainability_job_definition(params = {})
8879
+ # @param [Hash] params ({})
8880
+ def describe_model_explainability_job_definition(params = {}, options = {})
8881
+ req = build_request(:describe_model_explainability_job_definition, params)
8882
+ req.send_request(options)
8883
+ end
8884
+
7659
8885
  # Returns a description of the specified model package, which is used to
7660
8886
  # create Amazon SageMaker models or list them on AWS Marketplace.
7661
8887
  #
@@ -7829,6 +9055,87 @@ module Aws::SageMaker
7829
9055
  req.send_request(options)
7830
9056
  end
7831
9057
 
9058
+ # Returns a description of a model quality job definition.
9059
+ #
9060
+ # @option params [required, String] :job_definition_name
9061
+ # The name of the model quality job. The name must be unique within an
9062
+ # AWS Region in the AWS account.
9063
+ #
9064
+ # @return [Types::DescribeModelQualityJobDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9065
+ #
9066
+ # * {Types::DescribeModelQualityJobDefinitionResponse#job_definition_arn #job_definition_arn} => String
9067
+ # * {Types::DescribeModelQualityJobDefinitionResponse#job_definition_name #job_definition_name} => String
9068
+ # * {Types::DescribeModelQualityJobDefinitionResponse#creation_time #creation_time} => Time
9069
+ # * {Types::DescribeModelQualityJobDefinitionResponse#model_quality_baseline_config #model_quality_baseline_config} => Types::ModelQualityBaselineConfig
9070
+ # * {Types::DescribeModelQualityJobDefinitionResponse#model_quality_app_specification #model_quality_app_specification} => Types::ModelQualityAppSpecification
9071
+ # * {Types::DescribeModelQualityJobDefinitionResponse#model_quality_job_input #model_quality_job_input} => Types::ModelQualityJobInput
9072
+ # * {Types::DescribeModelQualityJobDefinitionResponse#model_quality_job_output_config #model_quality_job_output_config} => Types::MonitoringOutputConfig
9073
+ # * {Types::DescribeModelQualityJobDefinitionResponse#job_resources #job_resources} => Types::MonitoringResources
9074
+ # * {Types::DescribeModelQualityJobDefinitionResponse#network_config #network_config} => Types::MonitoringNetworkConfig
9075
+ # * {Types::DescribeModelQualityJobDefinitionResponse#role_arn #role_arn} => String
9076
+ # * {Types::DescribeModelQualityJobDefinitionResponse#stopping_condition #stopping_condition} => Types::MonitoringStoppingCondition
9077
+ #
9078
+ # @example Request syntax with placeholder values
9079
+ #
9080
+ # resp = client.describe_model_quality_job_definition({
9081
+ # job_definition_name: "MonitoringJobDefinitionName", # required
9082
+ # })
9083
+ #
9084
+ # @example Response structure
9085
+ #
9086
+ # resp.job_definition_arn #=> String
9087
+ # resp.job_definition_name #=> String
9088
+ # resp.creation_time #=> Time
9089
+ # resp.model_quality_baseline_config.baselining_job_name #=> String
9090
+ # resp.model_quality_baseline_config.constraints_resource.s3_uri #=> String
9091
+ # resp.model_quality_app_specification.image_uri #=> String
9092
+ # resp.model_quality_app_specification.container_entrypoint #=> Array
9093
+ # resp.model_quality_app_specification.container_entrypoint[0] #=> String
9094
+ # resp.model_quality_app_specification.container_arguments #=> Array
9095
+ # resp.model_quality_app_specification.container_arguments[0] #=> String
9096
+ # resp.model_quality_app_specification.record_preprocessor_source_uri #=> String
9097
+ # resp.model_quality_app_specification.post_analytics_processor_source_uri #=> String
9098
+ # resp.model_quality_app_specification.problem_type #=> String, one of "BinaryClassification", "MulticlassClassification", "Regression"
9099
+ # resp.model_quality_app_specification.environment #=> Hash
9100
+ # resp.model_quality_app_specification.environment["ProcessingEnvironmentKey"] #=> String
9101
+ # resp.model_quality_job_input.endpoint_input.endpoint_name #=> String
9102
+ # resp.model_quality_job_input.endpoint_input.local_path #=> String
9103
+ # resp.model_quality_job_input.endpoint_input.s3_input_mode #=> String, one of "Pipe", "File"
9104
+ # resp.model_quality_job_input.endpoint_input.s3_data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
9105
+ # resp.model_quality_job_input.endpoint_input.features_attribute #=> String
9106
+ # resp.model_quality_job_input.endpoint_input.inference_attribute #=> String
9107
+ # resp.model_quality_job_input.endpoint_input.probability_attribute #=> String
9108
+ # resp.model_quality_job_input.endpoint_input.probability_threshold_attribute #=> Float
9109
+ # resp.model_quality_job_input.endpoint_input.start_time_offset #=> String
9110
+ # resp.model_quality_job_input.endpoint_input.end_time_offset #=> String
9111
+ # resp.model_quality_job_input.ground_truth_s3_input.s3_uri #=> String
9112
+ # resp.model_quality_job_output_config.monitoring_outputs #=> Array
9113
+ # resp.model_quality_job_output_config.monitoring_outputs[0].s3_output.s3_uri #=> String
9114
+ # resp.model_quality_job_output_config.monitoring_outputs[0].s3_output.local_path #=> String
9115
+ # resp.model_quality_job_output_config.monitoring_outputs[0].s3_output.s3_upload_mode #=> String, one of "Continuous", "EndOfJob"
9116
+ # resp.model_quality_job_output_config.kms_key_id #=> String
9117
+ # resp.job_resources.cluster_config.instance_count #=> Integer
9118
+ # resp.job_resources.cluster_config.instance_type #=> String, one of "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"
9119
+ # resp.job_resources.cluster_config.volume_size_in_gb #=> Integer
9120
+ # resp.job_resources.cluster_config.volume_kms_key_id #=> String
9121
+ # resp.network_config.enable_inter_container_traffic_encryption #=> Boolean
9122
+ # resp.network_config.enable_network_isolation #=> Boolean
9123
+ # resp.network_config.vpc_config.security_group_ids #=> Array
9124
+ # resp.network_config.vpc_config.security_group_ids[0] #=> String
9125
+ # resp.network_config.vpc_config.subnets #=> Array
9126
+ # resp.network_config.vpc_config.subnets[0] #=> String
9127
+ # resp.role_arn #=> String
9128
+ # resp.stopping_condition.max_runtime_in_seconds #=> Integer
9129
+ #
9130
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelQualityJobDefinition AWS API Documentation
9131
+ #
9132
+ # @overload describe_model_quality_job_definition(params = {})
9133
+ # @param [Hash] params ({})
9134
+ def describe_model_quality_job_definition(params = {}, options = {})
9135
+ req = build_request(:describe_model_quality_job_definition, params)
9136
+ req.send_request(options)
9137
+ end
9138
+
7832
9139
  # Describes the schedule for a monitoring job.
7833
9140
  #
7834
9141
  # @option params [required, String] :monitoring_schedule_name
@@ -7839,6 +9146,7 @@ module Aws::SageMaker
7839
9146
  # * {Types::DescribeMonitoringScheduleResponse#monitoring_schedule_arn #monitoring_schedule_arn} => String
7840
9147
  # * {Types::DescribeMonitoringScheduleResponse#monitoring_schedule_name #monitoring_schedule_name} => String
7841
9148
  # * {Types::DescribeMonitoringScheduleResponse#monitoring_schedule_status #monitoring_schedule_status} => String
9149
+ # * {Types::DescribeMonitoringScheduleResponse#monitoring_type #monitoring_type} => String
7842
9150
  # * {Types::DescribeMonitoringScheduleResponse#failure_reason #failure_reason} => String
7843
9151
  # * {Types::DescribeMonitoringScheduleResponse#creation_time #creation_time} => Time
7844
9152
  # * {Types::DescribeMonitoringScheduleResponse#last_modified_time #last_modified_time} => Time
@@ -7857,10 +9165,12 @@ module Aws::SageMaker
7857
9165
  # resp.monitoring_schedule_arn #=> String
7858
9166
  # resp.monitoring_schedule_name #=> String
7859
9167
  # resp.monitoring_schedule_status #=> String, one of "Pending", "Failed", "Scheduled", "Stopped"
9168
+ # resp.monitoring_type #=> String, one of "DataQuality", "ModelQuality", "ModelBias", "ModelExplainability"
7860
9169
  # resp.failure_reason #=> String
7861
9170
  # resp.creation_time #=> Time
7862
9171
  # resp.last_modified_time #=> Time
7863
9172
  # resp.monitoring_schedule_config.schedule_config.schedule_expression #=> String
9173
+ # resp.monitoring_schedule_config.monitoring_job_definition.baseline_config.baselining_job_name #=> String
7864
9174
  # resp.monitoring_schedule_config.monitoring_job_definition.baseline_config.constraints_resource.s3_uri #=> String
7865
9175
  # resp.monitoring_schedule_config.monitoring_job_definition.baseline_config.statistics_resource.s3_uri #=> String
7866
9176
  # resp.monitoring_schedule_config.monitoring_job_definition.monitoring_inputs #=> Array
@@ -7868,6 +9178,12 @@ module Aws::SageMaker
7868
9178
  # resp.monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.local_path #=> String
7869
9179
  # resp.monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.s3_input_mode #=> String, one of "Pipe", "File"
7870
9180
  # resp.monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.s3_data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
9181
+ # resp.monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.features_attribute #=> String
9182
+ # resp.monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.inference_attribute #=> String
9183
+ # resp.monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.probability_attribute #=> String
9184
+ # resp.monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.probability_threshold_attribute #=> Float
9185
+ # resp.monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.start_time_offset #=> String
9186
+ # resp.monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.end_time_offset #=> String
7871
9187
  # resp.monitoring_schedule_config.monitoring_job_definition.monitoring_output_config.monitoring_outputs #=> Array
7872
9188
  # resp.monitoring_schedule_config.monitoring_job_definition.monitoring_output_config.monitoring_outputs[0].s3_output.s3_uri #=> String
7873
9189
  # resp.monitoring_schedule_config.monitoring_job_definition.monitoring_output_config.monitoring_outputs[0].s3_output.local_path #=> String
@@ -7894,6 +9210,8 @@ module Aws::SageMaker
7894
9210
  # resp.monitoring_schedule_config.monitoring_job_definition.network_config.vpc_config.subnets #=> Array
7895
9211
  # resp.monitoring_schedule_config.monitoring_job_definition.network_config.vpc_config.subnets[0] #=> String
7896
9212
  # resp.monitoring_schedule_config.monitoring_job_definition.role_arn #=> String
9213
+ # resp.monitoring_schedule_config.monitoring_job_definition_name #=> String
9214
+ # resp.monitoring_schedule_config.monitoring_type #=> String, one of "DataQuality", "ModelQuality", "ModelBias", "ModelExplainability"
7897
9215
  # resp.endpoint_name #=> String
7898
9216
  # resp.last_monitoring_execution_summary.monitoring_schedule_name #=> String
7899
9217
  # resp.last_monitoring_execution_summary.scheduled_time #=> Time
@@ -7903,6 +9221,8 @@ module Aws::SageMaker
7903
9221
  # resp.last_monitoring_execution_summary.processing_job_arn #=> String
7904
9222
  # resp.last_monitoring_execution_summary.endpoint_name #=> String
7905
9223
  # resp.last_monitoring_execution_summary.failure_reason #=> String
9224
+ # resp.last_monitoring_execution_summary.monitoring_job_definition_name #=> String
9225
+ # resp.last_monitoring_execution_summary.monitoring_type #=> String, one of "DataQuality", "ModelQuality", "ModelBias", "ModelExplainability"
7906
9226
  #
7907
9227
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeMonitoringSchedule AWS API Documentation
7908
9228
  #
@@ -8419,6 +9739,10 @@ module Aws::SageMaker
8419
9739
  # * {Types::DescribeTrainingJobResponse#debug_rule_configurations #debug_rule_configurations} => Array&lt;Types::DebugRuleConfiguration&gt;
8420
9740
  # * {Types::DescribeTrainingJobResponse#tensor_board_output_config #tensor_board_output_config} => Types::TensorBoardOutputConfig
8421
9741
  # * {Types::DescribeTrainingJobResponse#debug_rule_evaluation_statuses #debug_rule_evaluation_statuses} => Array&lt;Types::DebugRuleEvaluationStatus&gt;
9742
+ # * {Types::DescribeTrainingJobResponse#profiler_config #profiler_config} => Types::ProfilerConfig
9743
+ # * {Types::DescribeTrainingJobResponse#profiler_rule_configurations #profiler_rule_configurations} => Array&lt;Types::ProfilerRuleConfiguration&gt;
9744
+ # * {Types::DescribeTrainingJobResponse#profiler_rule_evaluation_statuses #profiler_rule_evaluation_statuses} => Array&lt;Types::ProfilerRuleEvaluationStatus&gt;
9745
+ # * {Types::DescribeTrainingJobResponse#profiling_status #profiling_status} => String
8422
9746
  #
8423
9747
  # @example Request syntax with placeholder values
8424
9748
  #
@@ -8523,6 +9847,26 @@ module Aws::SageMaker
8523
9847
  # resp.debug_rule_evaluation_statuses[0].rule_evaluation_status #=> String, one of "InProgress", "NoIssuesFound", "IssuesFound", "Error", "Stopping", "Stopped"
8524
9848
  # resp.debug_rule_evaluation_statuses[0].status_details #=> String
8525
9849
  # resp.debug_rule_evaluation_statuses[0].last_modified_time #=> Time
9850
+ # resp.profiler_config.s3_output_path #=> String
9851
+ # resp.profiler_config.profiling_interval_in_milliseconds #=> Integer
9852
+ # resp.profiler_config.profiling_parameters #=> Hash
9853
+ # resp.profiler_config.profiling_parameters["ConfigKey"] #=> String
9854
+ # resp.profiler_rule_configurations #=> Array
9855
+ # resp.profiler_rule_configurations[0].rule_configuration_name #=> String
9856
+ # resp.profiler_rule_configurations[0].local_path #=> String
9857
+ # resp.profiler_rule_configurations[0].s3_output_path #=> String
9858
+ # resp.profiler_rule_configurations[0].rule_evaluator_image #=> String
9859
+ # resp.profiler_rule_configurations[0].instance_type #=> String, one of "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"
9860
+ # resp.profiler_rule_configurations[0].volume_size_in_gb #=> Integer
9861
+ # resp.profiler_rule_configurations[0].rule_parameters #=> Hash
9862
+ # resp.profiler_rule_configurations[0].rule_parameters["ConfigKey"] #=> String
9863
+ # resp.profiler_rule_evaluation_statuses #=> Array
9864
+ # resp.profiler_rule_evaluation_statuses[0].rule_configuration_name #=> String
9865
+ # resp.profiler_rule_evaluation_statuses[0].rule_evaluation_job_arn #=> String
9866
+ # resp.profiler_rule_evaluation_statuses[0].rule_evaluation_status #=> String, one of "InProgress", "NoIssuesFound", "IssuesFound", "Error", "Stopping", "Stopped"
9867
+ # resp.profiler_rule_evaluation_statuses[0].status_details #=> String
9868
+ # resp.profiler_rule_evaluation_statuses[0].last_modified_time #=> Time
9869
+ # resp.profiling_status #=> String, one of "Enabled", "Disabled"
8526
9870
  #
8527
9871
  #
8528
9872
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -9001,21 +10345,73 @@ module Aws::SageMaker
9001
10345
  req.send_request(options)
9002
10346
  end
9003
10347
 
9004
- # Gets a resource policy that manages access for a model group. For
9005
- # information about resource policies, see [Identity-based policies and
9006
- # resource-based policies][1] in the *AWS Identity and Access Management
9007
- # User Guide.*.
10348
+ # Describes a fleet.
9008
10349
  #
10350
+ # @option params [required, String] :device_fleet_name
10351
+ # The name of the fleet.
9009
10352
  #
10353
+ # @return [Types::GetDeviceFleetReportResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9010
10354
  #
9011
- # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_identity-vs-resource.html
10355
+ # * {Types::GetDeviceFleetReportResponse#device_fleet_arn #device_fleet_arn} => String
10356
+ # * {Types::GetDeviceFleetReportResponse#device_fleet_name #device_fleet_name} => String
10357
+ # * {Types::GetDeviceFleetReportResponse#output_config #output_config} => Types::EdgeOutputConfig
10358
+ # * {Types::GetDeviceFleetReportResponse#description #description} => String
10359
+ # * {Types::GetDeviceFleetReportResponse#report_generated #report_generated} => Time
10360
+ # * {Types::GetDeviceFleetReportResponse#device_stats #device_stats} => Types::DeviceStats
10361
+ # * {Types::GetDeviceFleetReportResponse#agent_versions #agent_versions} => Array&lt;Types::AgentVersion&gt;
10362
+ # * {Types::GetDeviceFleetReportResponse#model_stats #model_stats} => Array&lt;Types::EdgeModelStat&gt;
9012
10363
  #
9013
- # @option params [required, String] :model_package_group_name
9014
- # The name of the model group for which to get the resource policy.
10364
+ # @example Request syntax with placeholder values
9015
10365
  #
9016
- # @return [Types::GetModelPackageGroupPolicyOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10366
+ # resp = client.get_device_fleet_report({
10367
+ # device_fleet_name: "EntityName", # required
10368
+ # })
9017
10369
  #
9018
- # * {Types::GetModelPackageGroupPolicyOutput#resource_policy #resource_policy} => String
10370
+ # @example Response structure
10371
+ #
10372
+ # resp.device_fleet_arn #=> String
10373
+ # resp.device_fleet_name #=> String
10374
+ # resp.output_config.s3_output_location #=> String
10375
+ # resp.output_config.kms_key_id #=> String
10376
+ # resp.description #=> String
10377
+ # resp.report_generated #=> Time
10378
+ # resp.device_stats.connected_device_count #=> Integer
10379
+ # resp.device_stats.registered_device_count #=> Integer
10380
+ # resp.agent_versions #=> Array
10381
+ # resp.agent_versions[0].version #=> String
10382
+ # resp.agent_versions[0].agent_count #=> Integer
10383
+ # resp.model_stats #=> Array
10384
+ # resp.model_stats[0].model_name #=> String
10385
+ # resp.model_stats[0].model_version #=> String
10386
+ # resp.model_stats[0].offline_device_count #=> Integer
10387
+ # resp.model_stats[0].connected_device_count #=> Integer
10388
+ # resp.model_stats[0].active_device_count #=> Integer
10389
+ # resp.model_stats[0].sampling_device_count #=> Integer
10390
+ #
10391
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/GetDeviceFleetReport AWS API Documentation
10392
+ #
10393
+ # @overload get_device_fleet_report(params = {})
10394
+ # @param [Hash] params ({})
10395
+ def get_device_fleet_report(params = {}, options = {})
10396
+ req = build_request(:get_device_fleet_report, params)
10397
+ req.send_request(options)
10398
+ end
10399
+
10400
+ # Gets a resource policy that manages access for a model group. For
10401
+ # information about resource policies, see [Identity-based policies and
10402
+ # resource-based policies][1] in the *AWS Identity and Access Management
10403
+ # User Guide.*.
10404
+ #
10405
+ #
10406
+ #
10407
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_identity-vs-resource.html
10408
+ #
10409
+ # @option params [required, String] :model_package_group_name
10410
+ # The name of the model group for which to get the resource policy.
10411
+ #
10412
+ # @return [Types::GetModelPackageGroupPolicyOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10413
+ #
10414
+ # * {Types::GetModelPackageGroupPolicyOutput#resource_policy #resource_policy} => String
9019
10415
  #
9020
10416
  # @example Request syntax with placeholder values
9021
10417
  #
@@ -9947,6 +11343,208 @@ module Aws::SageMaker
9947
11343
  req.send_request(options)
9948
11344
  end
9949
11345
 
11346
+ # Lists the data quality job definitions in your account.
11347
+ #
11348
+ # @option params [String] :endpoint_name
11349
+ # A filter that lists the data quality job definitions associated with
11350
+ # the specified endpoint.
11351
+ #
11352
+ # @option params [String] :sort_by
11353
+ # The field to sort results by. The default is `CreationTime`.
11354
+ #
11355
+ # @option params [String] :sort_order
11356
+ # The sort order for results. The default is `Descending`.
11357
+ #
11358
+ # @option params [String] :next_token
11359
+ # If the result of the previous `ListDataQualityJobDefinitions` request
11360
+ # was truncated, the response includes a `NextToken`. To retrieve the
11361
+ # next set of transform jobs, use the token in the next request.&gt;
11362
+ #
11363
+ # @option params [Integer] :max_results
11364
+ # The maximum number of data quality monitoring job definitions to
11365
+ # return in the response.
11366
+ #
11367
+ # @option params [String] :name_contains
11368
+ # A string in the data quality monitoring job definition name. This
11369
+ # filter returns only data quality monitoring job definitions whose name
11370
+ # contains the specified string.
11371
+ #
11372
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_before
11373
+ # A filter that returns only data quality monitoring job definitions
11374
+ # created before the specified time.
11375
+ #
11376
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
11377
+ # A filter that returns only data quality monitoring job definitions
11378
+ # created after the specified time.
11379
+ #
11380
+ # @return [Types::ListDataQualityJobDefinitionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11381
+ #
11382
+ # * {Types::ListDataQualityJobDefinitionsResponse#job_definition_summaries #job_definition_summaries} => Array&lt;Types::MonitoringJobDefinitionSummary&gt;
11383
+ # * {Types::ListDataQualityJobDefinitionsResponse#next_token #next_token} => String
11384
+ #
11385
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
11386
+ #
11387
+ # @example Request syntax with placeholder values
11388
+ #
11389
+ # resp = client.list_data_quality_job_definitions({
11390
+ # endpoint_name: "EndpointName",
11391
+ # sort_by: "Name", # accepts Name, CreationTime
11392
+ # sort_order: "Ascending", # accepts Ascending, Descending
11393
+ # next_token: "NextToken",
11394
+ # max_results: 1,
11395
+ # name_contains: "NameContains",
11396
+ # creation_time_before: Time.now,
11397
+ # creation_time_after: Time.now,
11398
+ # })
11399
+ #
11400
+ # @example Response structure
11401
+ #
11402
+ # resp.job_definition_summaries #=> Array
11403
+ # resp.job_definition_summaries[0].monitoring_job_definition_name #=> String
11404
+ # resp.job_definition_summaries[0].monitoring_job_definition_arn #=> String
11405
+ # resp.job_definition_summaries[0].creation_time #=> Time
11406
+ # resp.job_definition_summaries[0].endpoint_name #=> String
11407
+ # resp.next_token #=> String
11408
+ #
11409
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListDataQualityJobDefinitions AWS API Documentation
11410
+ #
11411
+ # @overload list_data_quality_job_definitions(params = {})
11412
+ # @param [Hash] params ({})
11413
+ def list_data_quality_job_definitions(params = {}, options = {})
11414
+ req = build_request(:list_data_quality_job_definitions, params)
11415
+ req.send_request(options)
11416
+ end
11417
+
11418
+ # Returns a list of devices in the fleet.
11419
+ #
11420
+ # @option params [String] :next_token
11421
+ # The response from the last list when returning a list large enough to
11422
+ # need tokening.
11423
+ #
11424
+ # @option params [Integer] :max_results
11425
+ # The maximum number of results to select.
11426
+ #
11427
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
11428
+ # Filter fleets where packaging job was created after specified time.
11429
+ #
11430
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_before
11431
+ # Filter fleets where the edge packaging job was created before
11432
+ # specified time.
11433
+ #
11434
+ # @option params [Time,DateTime,Date,Integer,String] :last_modified_time_after
11435
+ # Select fleets where the job was updated after X
11436
+ #
11437
+ # @option params [Time,DateTime,Date,Integer,String] :last_modified_time_before
11438
+ # Select fleets where the job was updated before X
11439
+ #
11440
+ # @option params [String] :name_contains
11441
+ # Filter for fleets containing this name in their fleet device name.
11442
+ #
11443
+ # @option params [String] :sort_by
11444
+ # The column to sort by.
11445
+ #
11446
+ # @option params [String] :sort_order
11447
+ # What direction to sort in.
11448
+ #
11449
+ # @return [Types::ListDeviceFleetsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11450
+ #
11451
+ # * {Types::ListDeviceFleetsResponse#device_fleet_summaries #device_fleet_summaries} => Array&lt;Types::DeviceFleetSummary&gt;
11452
+ # * {Types::ListDeviceFleetsResponse#next_token #next_token} => String
11453
+ #
11454
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
11455
+ #
11456
+ # @example Request syntax with placeholder values
11457
+ #
11458
+ # resp = client.list_device_fleets({
11459
+ # next_token: "NextToken",
11460
+ # max_results: 1,
11461
+ # creation_time_after: Time.now,
11462
+ # creation_time_before: Time.now,
11463
+ # last_modified_time_after: Time.now,
11464
+ # last_modified_time_before: Time.now,
11465
+ # name_contains: "NameContains",
11466
+ # sort_by: "NAME", # accepts NAME, CREATION_TIME, LAST_MODIFIED_TIME
11467
+ # sort_order: "Ascending", # accepts Ascending, Descending
11468
+ # })
11469
+ #
11470
+ # @example Response structure
11471
+ #
11472
+ # resp.device_fleet_summaries #=> Array
11473
+ # resp.device_fleet_summaries[0].device_fleet_arn #=> String
11474
+ # resp.device_fleet_summaries[0].device_fleet_name #=> String
11475
+ # resp.device_fleet_summaries[0].creation_time #=> Time
11476
+ # resp.device_fleet_summaries[0].last_modified_time #=> Time
11477
+ # resp.next_token #=> String
11478
+ #
11479
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListDeviceFleets AWS API Documentation
11480
+ #
11481
+ # @overload list_device_fleets(params = {})
11482
+ # @param [Hash] params ({})
11483
+ def list_device_fleets(params = {}, options = {})
11484
+ req = build_request(:list_device_fleets, params)
11485
+ req.send_request(options)
11486
+ end
11487
+
11488
+ # A list of devices.
11489
+ #
11490
+ # @option params [String] :next_token
11491
+ # The response from the last list when returning a list large enough to
11492
+ # need tokening.
11493
+ #
11494
+ # @option params [Integer] :max_results
11495
+ # Maximum number of results to select.
11496
+ #
11497
+ # @option params [Time,DateTime,Date,Integer,String] :latest_heartbeat_after
11498
+ # Select fleets where the job was updated after X
11499
+ #
11500
+ # @option params [String] :model_name
11501
+ # A filter that searches devices that contains this name in any of their
11502
+ # models.
11503
+ #
11504
+ # @option params [String] :device_fleet_name
11505
+ # Filter for fleets containing this name in their device fleet name.
11506
+ #
11507
+ # @return [Types::ListDevicesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11508
+ #
11509
+ # * {Types::ListDevicesResponse#device_summaries #device_summaries} => Array&lt;Types::DeviceSummary&gt;
11510
+ # * {Types::ListDevicesResponse#next_token #next_token} => String
11511
+ #
11512
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
11513
+ #
11514
+ # @example Request syntax with placeholder values
11515
+ #
11516
+ # resp = client.list_devices({
11517
+ # next_token: "NextToken",
11518
+ # max_results: 1,
11519
+ # latest_heartbeat_after: Time.now,
11520
+ # model_name: "EntityName",
11521
+ # device_fleet_name: "EntityName",
11522
+ # })
11523
+ #
11524
+ # @example Response structure
11525
+ #
11526
+ # resp.device_summaries #=> Array
11527
+ # resp.device_summaries[0].device_name #=> String
11528
+ # resp.device_summaries[0].device_arn #=> String
11529
+ # resp.device_summaries[0].description #=> String
11530
+ # resp.device_summaries[0].device_fleet_name #=> String
11531
+ # resp.device_summaries[0].iot_thing_name #=> String
11532
+ # resp.device_summaries[0].registration_time #=> Time
11533
+ # resp.device_summaries[0].latest_heartbeat #=> Time
11534
+ # resp.device_summaries[0].models #=> Array
11535
+ # resp.device_summaries[0].models[0].model_name #=> String
11536
+ # resp.device_summaries[0].models[0].model_version #=> String
11537
+ # resp.next_token #=> String
11538
+ #
11539
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListDevices AWS API Documentation
11540
+ #
11541
+ # @overload list_devices(params = {})
11542
+ # @param [Hash] params ({})
11543
+ def list_devices(params = {}, options = {})
11544
+ req = build_request(:list_devices, params)
11545
+ req.send_request(options)
11546
+ end
11547
+
9950
11548
  # Lists the domains.
9951
11549
  #
9952
11550
  # @option params [String] :next_token
@@ -9991,6 +11589,87 @@ module Aws::SageMaker
9991
11589
  req.send_request(options)
9992
11590
  end
9993
11591
 
11592
+ # Returns a list of edge packaging jobs.
11593
+ #
11594
+ # @option params [String] :next_token
11595
+ # The response from the last list when returning a list large enough to
11596
+ # need tokening.
11597
+ #
11598
+ # @option params [Integer] :max_results
11599
+ # Maximum number of results to select.
11600
+ #
11601
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
11602
+ # Select jobs where the job was created after specified time.
11603
+ #
11604
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_before
11605
+ # Select jobs where the job was created before specified time.
11606
+ #
11607
+ # @option params [Time,DateTime,Date,Integer,String] :last_modified_time_after
11608
+ # Select jobs where the job was updated after specified time.
11609
+ #
11610
+ # @option params [Time,DateTime,Date,Integer,String] :last_modified_time_before
11611
+ # Select jobs where the job was updated before specified time.
11612
+ #
11613
+ # @option params [String] :name_contains
11614
+ # Filter for jobs containing this name in their packaging job name.
11615
+ #
11616
+ # @option params [String] :model_name_contains
11617
+ # Filter for jobs where the model name contains this string.
11618
+ #
11619
+ # @option params [String] :status_equals
11620
+ # The job status to filter for.
11621
+ #
11622
+ # @option params [String] :sort_by
11623
+ # Use to specify what column to sort by.
11624
+ #
11625
+ # @option params [String] :sort_order
11626
+ # What direction to sort by.
11627
+ #
11628
+ # @return [Types::ListEdgePackagingJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11629
+ #
11630
+ # * {Types::ListEdgePackagingJobsResponse#edge_packaging_job_summaries #edge_packaging_job_summaries} => Array&lt;Types::EdgePackagingJobSummary&gt;
11631
+ # * {Types::ListEdgePackagingJobsResponse#next_token #next_token} => String
11632
+ #
11633
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
11634
+ #
11635
+ # @example Request syntax with placeholder values
11636
+ #
11637
+ # resp = client.list_edge_packaging_jobs({
11638
+ # next_token: "NextToken",
11639
+ # max_results: 1,
11640
+ # creation_time_after: Time.now,
11641
+ # creation_time_before: Time.now,
11642
+ # last_modified_time_after: Time.now,
11643
+ # last_modified_time_before: Time.now,
11644
+ # name_contains: "NameContains",
11645
+ # model_name_contains: "NameContains",
11646
+ # status_equals: "STARTING", # accepts STARTING, INPROGRESS, COMPLETED, FAILED, STOPPING, STOPPED
11647
+ # sort_by: "NAME", # accepts NAME, MODEL_NAME, CREATION_TIME, LAST_MODIFIED_TIME, STATUS
11648
+ # sort_order: "Ascending", # accepts Ascending, Descending
11649
+ # })
11650
+ #
11651
+ # @example Response structure
11652
+ #
11653
+ # resp.edge_packaging_job_summaries #=> Array
11654
+ # resp.edge_packaging_job_summaries[0].edge_packaging_job_arn #=> String
11655
+ # resp.edge_packaging_job_summaries[0].edge_packaging_job_name #=> String
11656
+ # resp.edge_packaging_job_summaries[0].edge_packaging_job_status #=> String, one of "STARTING", "INPROGRESS", "COMPLETED", "FAILED", "STOPPING", "STOPPED"
11657
+ # resp.edge_packaging_job_summaries[0].compilation_job_name #=> String
11658
+ # resp.edge_packaging_job_summaries[0].model_name #=> String
11659
+ # resp.edge_packaging_job_summaries[0].model_version #=> String
11660
+ # resp.edge_packaging_job_summaries[0].creation_time #=> Time
11661
+ # resp.edge_packaging_job_summaries[0].last_modified_time #=> Time
11662
+ # resp.next_token #=> String
11663
+ #
11664
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListEdgePackagingJobs AWS API Documentation
11665
+ #
11666
+ # @overload list_edge_packaging_jobs(params = {})
11667
+ # @param [Hash] params ({})
11668
+ def list_edge_packaging_jobs(params = {}, options = {})
11669
+ req = build_request(:list_edge_packaging_jobs, params)
11670
+ req.send_request(options)
11671
+ end
11672
+
9994
11673
  # Lists endpoint configurations.
9995
11674
  #
9996
11675
  # @option params [String] :sort_by
@@ -10734,87 +12413,229 @@ module Aws::SageMaker
10734
12413
  # resp.labeling_job_summary_list[0].input_config.data_attributes.content_classifiers[0] #=> String, one of "FreeOfPersonallyIdentifiableInformation", "FreeOfAdultContent"
10735
12414
  # resp.next_token #=> String
10736
12415
  #
10737
- # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListLabelingJobs AWS API Documentation
12416
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListLabelingJobs AWS API Documentation
12417
+ #
12418
+ # @overload list_labeling_jobs(params = {})
12419
+ # @param [Hash] params ({})
12420
+ def list_labeling_jobs(params = {}, options = {})
12421
+ req = build_request(:list_labeling_jobs, params)
12422
+ req.send_request(options)
12423
+ end
12424
+
12425
+ # Gets a list of labeling jobs assigned to a specified work team.
12426
+ #
12427
+ # @option params [required, String] :workteam_arn
12428
+ # The Amazon Resource Name (ARN) of the work team for which you want to
12429
+ # see labeling jobs for.
12430
+ #
12431
+ # @option params [Integer] :max_results
12432
+ # The maximum number of labeling jobs to return in each page of the
12433
+ # response.
12434
+ #
12435
+ # @option params [String] :next_token
12436
+ # If the result of the previous `ListLabelingJobsForWorkteam` request
12437
+ # was truncated, the response includes a `NextToken`. To retrieve the
12438
+ # next set of labeling jobs, use the token in the next request.
12439
+ #
12440
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
12441
+ # A filter that returns only labeling jobs created after the specified
12442
+ # time (timestamp).
12443
+ #
12444
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_before
12445
+ # A filter that returns only labeling jobs created before the specified
12446
+ # time (timestamp).
12447
+ #
12448
+ # @option params [String] :job_reference_code_contains
12449
+ # A filter the limits jobs to only the ones whose job reference code
12450
+ # contains the specified string.
12451
+ #
12452
+ # @option params [String] :sort_by
12453
+ # The field to sort results by. The default is `CreationTime`.
12454
+ #
12455
+ # @option params [String] :sort_order
12456
+ # The sort order for results. The default is `Ascending`.
12457
+ #
12458
+ # @return [Types::ListLabelingJobsForWorkteamResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
12459
+ #
12460
+ # * {Types::ListLabelingJobsForWorkteamResponse#labeling_job_summary_list #labeling_job_summary_list} => Array&lt;Types::LabelingJobForWorkteamSummary&gt;
12461
+ # * {Types::ListLabelingJobsForWorkteamResponse#next_token #next_token} => String
12462
+ #
12463
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
12464
+ #
12465
+ # @example Request syntax with placeholder values
12466
+ #
12467
+ # resp = client.list_labeling_jobs_for_workteam({
12468
+ # workteam_arn: "WorkteamArn", # required
12469
+ # max_results: 1,
12470
+ # next_token: "NextToken",
12471
+ # creation_time_after: Time.now,
12472
+ # creation_time_before: Time.now,
12473
+ # job_reference_code_contains: "JobReferenceCodeContains",
12474
+ # sort_by: "CreationTime", # accepts CreationTime
12475
+ # sort_order: "Ascending", # accepts Ascending, Descending
12476
+ # })
12477
+ #
12478
+ # @example Response structure
12479
+ #
12480
+ # resp.labeling_job_summary_list #=> Array
12481
+ # resp.labeling_job_summary_list[0].labeling_job_name #=> String
12482
+ # resp.labeling_job_summary_list[0].job_reference_code #=> String
12483
+ # resp.labeling_job_summary_list[0].work_requester_account_id #=> String
12484
+ # resp.labeling_job_summary_list[0].creation_time #=> Time
12485
+ # resp.labeling_job_summary_list[0].label_counters.human_labeled #=> Integer
12486
+ # resp.labeling_job_summary_list[0].label_counters.pending_human #=> Integer
12487
+ # resp.labeling_job_summary_list[0].label_counters.total #=> Integer
12488
+ # resp.labeling_job_summary_list[0].number_of_human_workers_per_data_object #=> Integer
12489
+ # resp.next_token #=> String
12490
+ #
12491
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListLabelingJobsForWorkteam AWS API Documentation
12492
+ #
12493
+ # @overload list_labeling_jobs_for_workteam(params = {})
12494
+ # @param [Hash] params ({})
12495
+ def list_labeling_jobs_for_workteam(params = {}, options = {})
12496
+ req = build_request(:list_labeling_jobs_for_workteam, params)
12497
+ req.send_request(options)
12498
+ end
12499
+
12500
+ # Lists model bias jobs definitions that satisfy various filters.
12501
+ #
12502
+ # @option params [String] :endpoint_name
12503
+ # Name of the endpoint to monitor for model bias.
12504
+ #
12505
+ # @option params [String] :sort_by
12506
+ # Whether to sort results by the `Name` or `CreationTime` field. The
12507
+ # default is `CreationTime`.
12508
+ #
12509
+ # @option params [String] :sort_order
12510
+ # Whether to sort the results in `Ascending` or `Descending` order. The
12511
+ # default is `Descending`.
12512
+ #
12513
+ # @option params [String] :next_token
12514
+ # The token returned if the response is truncated. To retrieve the next
12515
+ # set of job executions, use it in the next request.
12516
+ #
12517
+ # @option params [Integer] :max_results
12518
+ # The maximum number of model bias jobs to return in the response. The
12519
+ # default value is 10.
12520
+ #
12521
+ # @option params [String] :name_contains
12522
+ # Filter for model bias jobs whose name contains a specified string.
12523
+ #
12524
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_before
12525
+ # A filter that returns only model bias jobs created before a specified
12526
+ # time.
12527
+ #
12528
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
12529
+ # A filter that returns only model bias jobs created after a specified
12530
+ # time.
12531
+ #
12532
+ # @return [Types::ListModelBiasJobDefinitionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
12533
+ #
12534
+ # * {Types::ListModelBiasJobDefinitionsResponse#job_definition_summaries #job_definition_summaries} => Array&lt;Types::MonitoringJobDefinitionSummary&gt;
12535
+ # * {Types::ListModelBiasJobDefinitionsResponse#next_token #next_token} => String
12536
+ #
12537
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
12538
+ #
12539
+ # @example Request syntax with placeholder values
12540
+ #
12541
+ # resp = client.list_model_bias_job_definitions({
12542
+ # endpoint_name: "EndpointName",
12543
+ # sort_by: "Name", # accepts Name, CreationTime
12544
+ # sort_order: "Ascending", # accepts Ascending, Descending
12545
+ # next_token: "NextToken",
12546
+ # max_results: 1,
12547
+ # name_contains: "NameContains",
12548
+ # creation_time_before: Time.now,
12549
+ # creation_time_after: Time.now,
12550
+ # })
12551
+ #
12552
+ # @example Response structure
12553
+ #
12554
+ # resp.job_definition_summaries #=> Array
12555
+ # resp.job_definition_summaries[0].monitoring_job_definition_name #=> String
12556
+ # resp.job_definition_summaries[0].monitoring_job_definition_arn #=> String
12557
+ # resp.job_definition_summaries[0].creation_time #=> Time
12558
+ # resp.job_definition_summaries[0].endpoint_name #=> String
12559
+ # resp.next_token #=> String
12560
+ #
12561
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelBiasJobDefinitions AWS API Documentation
10738
12562
  #
10739
- # @overload list_labeling_jobs(params = {})
12563
+ # @overload list_model_bias_job_definitions(params = {})
10740
12564
  # @param [Hash] params ({})
10741
- def list_labeling_jobs(params = {}, options = {})
10742
- req = build_request(:list_labeling_jobs, params)
12565
+ def list_model_bias_job_definitions(params = {}, options = {})
12566
+ req = build_request(:list_model_bias_job_definitions, params)
10743
12567
  req.send_request(options)
10744
12568
  end
10745
12569
 
10746
- # Gets a list of labeling jobs assigned to a specified work team.
12570
+ # Lists model explainability job definitions that satisfy various
12571
+ # filters.
10747
12572
  #
10748
- # @option params [required, String] :workteam_arn
10749
- # The Amazon Resource Name (ARN) of the work team for which you want to
10750
- # see labeling jobs for.
12573
+ # @option params [String] :endpoint_name
12574
+ # Name of the endpoint to monitor for model explainability.
10751
12575
  #
10752
- # @option params [Integer] :max_results
10753
- # The maximum number of labeling jobs to return in each page of the
10754
- # response.
12576
+ # @option params [String] :sort_by
12577
+ # Whether to sort results by the `Name` or `CreationTime` field. The
12578
+ # default is `CreationTime`.
10755
12579
  #
10756
- # @option params [String] :next_token
10757
- # If the result of the previous `ListLabelingJobsForWorkteam` request
10758
- # was truncated, the response includes a `NextToken`. To retrieve the
10759
- # next set of labeling jobs, use the token in the next request.
12580
+ # @option params [String] :sort_order
12581
+ # Whether to sort the results in `Ascending` or `Descending` order. The
12582
+ # default is `Descending`.
10760
12583
  #
10761
- # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
10762
- # A filter that returns only labeling jobs created after the specified
10763
- # time (timestamp).
12584
+ # @option params [String] :next_token
12585
+ # The token returned if the response is truncated. To retrieve the next
12586
+ # set of job executions, use it in the next request.
10764
12587
  #
10765
- # @option params [Time,DateTime,Date,Integer,String] :creation_time_before
10766
- # A filter that returns only labeling jobs created before the specified
10767
- # time (timestamp).
12588
+ # @option params [Integer] :max_results
12589
+ # The maximum number of jobs to return in the response. The default
12590
+ # value is 10.
10768
12591
  #
10769
- # @option params [String] :job_reference_code_contains
10770
- # A filter the limits jobs to only the ones whose job reference code
10771
- # contains the specified string.
12592
+ # @option params [String] :name_contains
12593
+ # Filter for model explainability jobs whose name contains a specified
12594
+ # string.
10772
12595
  #
10773
- # @option params [String] :sort_by
10774
- # The field to sort results by. The default is `CreationTime`.
12596
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_before
12597
+ # A filter that returns only model explainability jobs created before a
12598
+ # specified time.
10775
12599
  #
10776
- # @option params [String] :sort_order
10777
- # The sort order for results. The default is `Ascending`.
12600
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
12601
+ # A filter that returns only model explainability jobs created after a
12602
+ # specified time.
10778
12603
  #
10779
- # @return [Types::ListLabelingJobsForWorkteamResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
12604
+ # @return [Types::ListModelExplainabilityJobDefinitionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10780
12605
  #
10781
- # * {Types::ListLabelingJobsForWorkteamResponse#labeling_job_summary_list #labeling_job_summary_list} => Array&lt;Types::LabelingJobForWorkteamSummary&gt;
10782
- # * {Types::ListLabelingJobsForWorkteamResponse#next_token #next_token} => String
12606
+ # * {Types::ListModelExplainabilityJobDefinitionsResponse#job_definition_summaries #job_definition_summaries} => Array&lt;Types::MonitoringJobDefinitionSummary&gt;
12607
+ # * {Types::ListModelExplainabilityJobDefinitionsResponse#next_token #next_token} => String
10783
12608
  #
10784
12609
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
10785
12610
  #
10786
12611
  # @example Request syntax with placeholder values
10787
12612
  #
10788
- # resp = client.list_labeling_jobs_for_workteam({
10789
- # workteam_arn: "WorkteamArn", # required
10790
- # max_results: 1,
12613
+ # resp = client.list_model_explainability_job_definitions({
12614
+ # endpoint_name: "EndpointName",
12615
+ # sort_by: "Name", # accepts Name, CreationTime
12616
+ # sort_order: "Ascending", # accepts Ascending, Descending
10791
12617
  # next_token: "NextToken",
10792
- # creation_time_after: Time.now,
12618
+ # max_results: 1,
12619
+ # name_contains: "NameContains",
10793
12620
  # creation_time_before: Time.now,
10794
- # job_reference_code_contains: "JobReferenceCodeContains",
10795
- # sort_by: "CreationTime", # accepts CreationTime
10796
- # sort_order: "Ascending", # accepts Ascending, Descending
12621
+ # creation_time_after: Time.now,
10797
12622
  # })
10798
12623
  #
10799
12624
  # @example Response structure
10800
12625
  #
10801
- # resp.labeling_job_summary_list #=> Array
10802
- # resp.labeling_job_summary_list[0].labeling_job_name #=> String
10803
- # resp.labeling_job_summary_list[0].job_reference_code #=> String
10804
- # resp.labeling_job_summary_list[0].work_requester_account_id #=> String
10805
- # resp.labeling_job_summary_list[0].creation_time #=> Time
10806
- # resp.labeling_job_summary_list[0].label_counters.human_labeled #=> Integer
10807
- # resp.labeling_job_summary_list[0].label_counters.pending_human #=> Integer
10808
- # resp.labeling_job_summary_list[0].label_counters.total #=> Integer
10809
- # resp.labeling_job_summary_list[0].number_of_human_workers_per_data_object #=> Integer
12626
+ # resp.job_definition_summaries #=> Array
12627
+ # resp.job_definition_summaries[0].monitoring_job_definition_name #=> String
12628
+ # resp.job_definition_summaries[0].monitoring_job_definition_arn #=> String
12629
+ # resp.job_definition_summaries[0].creation_time #=> Time
12630
+ # resp.job_definition_summaries[0].endpoint_name #=> String
10810
12631
  # resp.next_token #=> String
10811
12632
  #
10812
- # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListLabelingJobsForWorkteam AWS API Documentation
12633
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelExplainabilityJobDefinitions AWS API Documentation
10813
12634
  #
10814
- # @overload list_labeling_jobs_for_workteam(params = {})
12635
+ # @overload list_model_explainability_job_definitions(params = {})
10815
12636
  # @param [Hash] params ({})
10816
- def list_labeling_jobs_for_workteam(params = {}, options = {})
10817
- req = build_request(:list_labeling_jobs_for_workteam, params)
12637
+ def list_model_explainability_job_definitions(params = {}, options = {})
12638
+ req = build_request(:list_model_explainability_job_definitions, params)
10818
12639
  req.send_request(options)
10819
12640
  end
10820
12641
 
@@ -10975,6 +12796,80 @@ module Aws::SageMaker
10975
12796
  req.send_request(options)
10976
12797
  end
10977
12798
 
12799
+ # Gets a list of model quality monitoring job definitions in your
12800
+ # account.
12801
+ #
12802
+ # @option params [String] :endpoint_name
12803
+ # A filter that returns only model quality monitoring job definitions
12804
+ # that are associated with the specified endpoint.
12805
+ #
12806
+ # @option params [String] :sort_by
12807
+ # The field to sort results by. The default is `CreationTime`.
12808
+ #
12809
+ # @option params [String] :sort_order
12810
+ # The sort order for results. The default is `Descending`.
12811
+ #
12812
+ # @option params [String] :next_token
12813
+ # If the result of the previous `ListModelQualityJobDefinitions` request
12814
+ # was truncated, the response includes a `NextToken`. To retrieve the
12815
+ # next set of model quality monitoring job definitions, use the token in
12816
+ # the next request.
12817
+ #
12818
+ # @option params [Integer] :max_results
12819
+ # The maximum number of results to return in a call to
12820
+ # `ListModelQualityJobDefinitions`.
12821
+ #
12822
+ # @option params [String] :name_contains
12823
+ # A string in the transform job name. This filter returns only model
12824
+ # quality monitoring job definitions whose name contains the specified
12825
+ # string.
12826
+ #
12827
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_before
12828
+ # A filter that returns only model quality monitoring job definitions
12829
+ # created before the specified time.
12830
+ #
12831
+ # @option params [Time,DateTime,Date,Integer,String] :creation_time_after
12832
+ # A filter that returns only model quality monitoring job definitions
12833
+ # created after the specified time.
12834
+ #
12835
+ # @return [Types::ListModelQualityJobDefinitionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
12836
+ #
12837
+ # * {Types::ListModelQualityJobDefinitionsResponse#job_definition_summaries #job_definition_summaries} => Array&lt;Types::MonitoringJobDefinitionSummary&gt;
12838
+ # * {Types::ListModelQualityJobDefinitionsResponse#next_token #next_token} => String
12839
+ #
12840
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
12841
+ #
12842
+ # @example Request syntax with placeholder values
12843
+ #
12844
+ # resp = client.list_model_quality_job_definitions({
12845
+ # endpoint_name: "EndpointName",
12846
+ # sort_by: "Name", # accepts Name, CreationTime
12847
+ # sort_order: "Ascending", # accepts Ascending, Descending
12848
+ # next_token: "NextToken",
12849
+ # max_results: 1,
12850
+ # name_contains: "NameContains",
12851
+ # creation_time_before: Time.now,
12852
+ # creation_time_after: Time.now,
12853
+ # })
12854
+ #
12855
+ # @example Response structure
12856
+ #
12857
+ # resp.job_definition_summaries #=> Array
12858
+ # resp.job_definition_summaries[0].monitoring_job_definition_name #=> String
12859
+ # resp.job_definition_summaries[0].monitoring_job_definition_arn #=> String
12860
+ # resp.job_definition_summaries[0].creation_time #=> Time
12861
+ # resp.job_definition_summaries[0].endpoint_name #=> String
12862
+ # resp.next_token #=> String
12863
+ #
12864
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelQualityJobDefinitions AWS API Documentation
12865
+ #
12866
+ # @overload list_model_quality_job_definitions(params = {})
12867
+ # @param [Hash] params ({})
12868
+ def list_model_quality_job_definitions(params = {}, options = {})
12869
+ req = build_request(:list_model_quality_job_definitions, params)
12870
+ req.send_request(options)
12871
+ end
12872
+
10978
12873
  # Lists models created with the CreateModel API.
10979
12874
  #
10980
12875
  # @option params [String] :sort_by
@@ -11084,6 +12979,14 @@ module Aws::SageMaker
11084
12979
  # @option params [String] :status_equals
11085
12980
  # A filter that retrieves only jobs with a specific status.
11086
12981
  #
12982
+ # @option params [String] :monitoring_job_definition_name
12983
+ # Gets a list of the monitoring job runs of the specified monitoring job
12984
+ # definitions.
12985
+ #
12986
+ # @option params [String] :monitoring_type_equals
12987
+ # A filter that returns only the monitoring job runs of the specified
12988
+ # monitoring type.
12989
+ #
11087
12990
  # @return [Types::ListMonitoringExecutionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11088
12991
  #
11089
12992
  # * {Types::ListMonitoringExecutionsResponse#monitoring_execution_summaries #monitoring_execution_summaries} => Array&lt;Types::MonitoringExecutionSummary&gt;
@@ -11107,6 +13010,8 @@ module Aws::SageMaker
11107
13010
  # last_modified_time_before: Time.now,
11108
13011
  # last_modified_time_after: Time.now,
11109
13012
  # status_equals: "Pending", # accepts Pending, Completed, CompletedWithViolations, InProgress, Failed, Stopping, Stopped
13013
+ # monitoring_job_definition_name: "MonitoringJobDefinitionName",
13014
+ # monitoring_type_equals: "DataQuality", # accepts DataQuality, ModelQuality, ModelBias, ModelExplainability
11110
13015
  # })
11111
13016
  #
11112
13017
  # @example Response structure
@@ -11120,6 +13025,8 @@ module Aws::SageMaker
11120
13025
  # resp.monitoring_execution_summaries[0].processing_job_arn #=> String
11121
13026
  # resp.monitoring_execution_summaries[0].endpoint_name #=> String
11122
13027
  # resp.monitoring_execution_summaries[0].failure_reason #=> String
13028
+ # resp.monitoring_execution_summaries[0].monitoring_job_definition_name #=> String
13029
+ # resp.monitoring_execution_summaries[0].monitoring_type #=> String, one of "DataQuality", "ModelQuality", "ModelBias", "ModelExplainability"
11123
13030
  # resp.next_token #=> String
11124
13031
  #
11125
13032
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListMonitoringExecutions AWS API Documentation
@@ -11176,6 +13083,14 @@ module Aws::SageMaker
11176
13083
  # A filter that returns only monitoring schedules modified before a
11177
13084
  # specified time.
11178
13085
  #
13086
+ # @option params [String] :monitoring_job_definition_name
13087
+ # Gets a list of the monitoring schedules for the specified monitoring
13088
+ # job definition.
13089
+ #
13090
+ # @option params [String] :monitoring_type_equals
13091
+ # A filter that returns only the monitoring schedules for the specified
13092
+ # monitoring type.
13093
+ #
11179
13094
  # @return [Types::ListMonitoringSchedulesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11180
13095
  #
11181
13096
  # * {Types::ListMonitoringSchedulesResponse#monitoring_schedule_summaries #monitoring_schedule_summaries} => Array&lt;Types::MonitoringScheduleSummary&gt;
@@ -11197,6 +13112,8 @@ module Aws::SageMaker
11197
13112
  # last_modified_time_before: Time.now,
11198
13113
  # last_modified_time_after: Time.now,
11199
13114
  # status_equals: "Pending", # accepts Pending, Failed, Scheduled, Stopped
13115
+ # monitoring_job_definition_name: "MonitoringJobDefinitionName",
13116
+ # monitoring_type_equals: "DataQuality", # accepts DataQuality, ModelQuality, ModelBias, ModelExplainability
11200
13117
  # })
11201
13118
  #
11202
13119
  # @example Response structure
@@ -11208,6 +13125,8 @@ module Aws::SageMaker
11208
13125
  # resp.monitoring_schedule_summaries[0].last_modified_time #=> Time
11209
13126
  # resp.monitoring_schedule_summaries[0].monitoring_schedule_status #=> String, one of "Pending", "Failed", "Scheduled", "Stopped"
11210
13127
  # resp.monitoring_schedule_summaries[0].endpoint_name #=> String
13128
+ # resp.monitoring_schedule_summaries[0].monitoring_job_definition_name #=> String
13129
+ # resp.monitoring_schedule_summaries[0].monitoring_type #=> String, one of "DataQuality", "ModelQuality", "ModelBias", "ModelExplainability"
11211
13130
  # resp.next_token #=> String
11212
13131
  #
11213
13132
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListMonitoringSchedules AWS API Documentation
@@ -12546,6 +14465,47 @@ module Aws::SageMaker
12546
14465
  req.send_request(options)
12547
14466
  end
12548
14467
 
14468
+ # Register devices.
14469
+ #
14470
+ # @option params [required, String] :device_fleet_name
14471
+ # The name of the fleet.
14472
+ #
14473
+ # @option params [required, Array<Types::Device>] :devices
14474
+ # A list of devices to register with SageMaker Edge Manager.
14475
+ #
14476
+ # @option params [Array<Types::Tag>] :tags
14477
+ # The tags associated with devices.
14478
+ #
14479
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
14480
+ #
14481
+ # @example Request syntax with placeholder values
14482
+ #
14483
+ # resp = client.register_devices({
14484
+ # device_fleet_name: "EntityName", # required
14485
+ # devices: [ # required
14486
+ # {
14487
+ # device_name: "DeviceName", # required
14488
+ # description: "DeviceDescription",
14489
+ # iot_thing_name: "ThingName",
14490
+ # },
14491
+ # ],
14492
+ # tags: [
14493
+ # {
14494
+ # key: "TagKey", # required
14495
+ # value: "TagValue", # required
14496
+ # },
14497
+ # ],
14498
+ # })
14499
+ #
14500
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RegisterDevices AWS API Documentation
14501
+ #
14502
+ # @overload register_devices(params = {})
14503
+ # @param [Hash] params ({})
14504
+ def register_devices(params = {}, options = {})
14505
+ req = build_request(:register_devices, params)
14506
+ req.send_request(options)
14507
+ end
14508
+
12549
14509
  # Renders the UI template so that you can preview the worker's
12550
14510
  # experience.
12551
14511
  #
@@ -13110,10 +15070,12 @@ module Aws::SageMaker
13110
15070
  # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_arn #=> String
13111
15071
  # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_name #=> String
13112
15072
  # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_status #=> String, one of "Pending", "Failed", "Scheduled", "Stopped"
15073
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_type #=> String, one of "DataQuality", "ModelQuality", "ModelBias", "ModelExplainability"
13113
15074
  # resp.results[0].endpoint.monitoring_schedules[0].failure_reason #=> String
13114
15075
  # resp.results[0].endpoint.monitoring_schedules[0].creation_time #=> Time
13115
15076
  # resp.results[0].endpoint.monitoring_schedules[0].last_modified_time #=> Time
13116
15077
  # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.schedule_config.schedule_expression #=> String
15078
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.baseline_config.baselining_job_name #=> String
13117
15079
  # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.baseline_config.constraints_resource.s3_uri #=> String
13118
15080
  # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.baseline_config.statistics_resource.s3_uri #=> String
13119
15081
  # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs #=> Array
@@ -13121,6 +15083,12 @@ module Aws::SageMaker
13121
15083
  # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.local_path #=> String
13122
15084
  # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.s3_input_mode #=> String, one of "Pipe", "File"
13123
15085
  # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.s3_data_distribution_type #=> String, one of "FullyReplicated", "ShardedByS3Key"
15086
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.features_attribute #=> String
15087
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.inference_attribute #=> String
15088
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.probability_attribute #=> String
15089
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.probability_threshold_attribute #=> Float
15090
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.start_time_offset #=> String
15091
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.end_time_offset #=> String
13124
15092
  # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_output_config.monitoring_outputs #=> Array
13125
15093
  # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_output_config.monitoring_outputs[0].s3_output.s3_uri #=> String
13126
15094
  # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.monitoring_output_config.monitoring_outputs[0].s3_output.local_path #=> String
@@ -13147,6 +15115,8 @@ module Aws::SageMaker
13147
15115
  # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.network_config.vpc_config.subnets #=> Array
13148
15116
  # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.network_config.vpc_config.subnets[0] #=> String
13149
15117
  # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition.role_arn #=> String
15118
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_job_definition_name #=> String
15119
+ # resp.results[0].endpoint.monitoring_schedules[0].monitoring_schedule_config.monitoring_type #=> String, one of "DataQuality", "ModelQuality", "ModelBias", "ModelExplainability"
13150
15120
  # resp.results[0].endpoint.monitoring_schedules[0].endpoint_name #=> String
13151
15121
  # resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.monitoring_schedule_name #=> String
13152
15122
  # resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.scheduled_time #=> Time
@@ -13156,6 +15126,8 @@ module Aws::SageMaker
13156
15126
  # resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.processing_job_arn #=> String
13157
15127
  # resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.endpoint_name #=> String
13158
15128
  # resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.failure_reason #=> String
15129
+ # resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.monitoring_job_definition_name #=> String
15130
+ # resp.results[0].endpoint.monitoring_schedules[0].last_monitoring_execution_summary.monitoring_type #=> String, one of "DataQuality", "ModelQuality", "ModelBias", "ModelExplainability"
13159
15131
  # resp.results[0].endpoint.monitoring_schedules[0].tags #=> Array
13160
15132
  # resp.results[0].endpoint.monitoring_schedules[0].tags[0].key #=> String
13161
15133
  # resp.results[0].endpoint.monitoring_schedules[0].tags[0].value #=> String
@@ -13332,7 +15304,8 @@ module Aws::SageMaker
13332
15304
 
13333
15305
  # Starts a previously stopped monitoring schedule.
13334
15306
  #
13335
- # <note markdown="1"> New monitoring schedules are immediately started after creation.
15307
+ # <note markdown="1"> By default, when you successfully create a new schedule, the status of
15308
+ # a monitoring schedule is `scheduled`.
13336
15309
  #
13337
15310
  # </note>
13338
15311
  #
@@ -13489,6 +15462,28 @@ module Aws::SageMaker
13489
15462
  req.send_request(options)
13490
15463
  end
13491
15464
 
15465
+ # Request to stop an edge packaging job.
15466
+ #
15467
+ # @option params [required, String] :edge_packaging_job_name
15468
+ # The name of the edge packaging job.
15469
+ #
15470
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
15471
+ #
15472
+ # @example Request syntax with placeholder values
15473
+ #
15474
+ # resp = client.stop_edge_packaging_job({
15475
+ # edge_packaging_job_name: "EntityName", # required
15476
+ # })
15477
+ #
15478
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopEdgePackagingJob AWS API Documentation
15479
+ #
15480
+ # @overload stop_edge_packaging_job(params = {})
15481
+ # @param [Hash] params ({})
15482
+ def stop_edge_packaging_job(params = {}, options = {})
15483
+ req = build_request(:stop_edge_packaging_job, params)
15484
+ req.send_request(options)
15485
+ end
15486
+
13492
15487
  # Stops a running hyperparameter tuning job and all running training
13493
15488
  # jobs that the tuning job launched.
13494
15489
  #
@@ -13926,6 +15921,75 @@ module Aws::SageMaker
13926
15921
  req.send_request(options)
13927
15922
  end
13928
15923
 
15924
+ # Updates a fleet of devices.
15925
+ #
15926
+ # @option params [required, String] :device_fleet_name
15927
+ # The name of the fleet.
15928
+ #
15929
+ # @option params [String] :role_arn
15930
+ # The Amazon Resource Name (ARN) of the device.
15931
+ #
15932
+ # @option params [String] :description
15933
+ # Description of the fleet.
15934
+ #
15935
+ # @option params [required, Types::EdgeOutputConfig] :output_config
15936
+ # Output configuration for storing sample data collected by the fleet.
15937
+ #
15938
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
15939
+ #
15940
+ # @example Request syntax with placeholder values
15941
+ #
15942
+ # resp = client.update_device_fleet({
15943
+ # device_fleet_name: "EntityName", # required
15944
+ # role_arn: "RoleArn",
15945
+ # description: "DeviceFleetDescription",
15946
+ # output_config: { # required
15947
+ # s3_output_location: "S3Uri", # required
15948
+ # kms_key_id: "KmsKeyId",
15949
+ # },
15950
+ # })
15951
+ #
15952
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateDeviceFleet AWS API Documentation
15953
+ #
15954
+ # @overload update_device_fleet(params = {})
15955
+ # @param [Hash] params ({})
15956
+ def update_device_fleet(params = {}, options = {})
15957
+ req = build_request(:update_device_fleet, params)
15958
+ req.send_request(options)
15959
+ end
15960
+
15961
+ # Updates one or more devices in a fleet.
15962
+ #
15963
+ # @option params [required, String] :device_fleet_name
15964
+ # The name of the fleet the devices belong to.
15965
+ #
15966
+ # @option params [required, Array<Types::Device>] :devices
15967
+ # List of devices to register with Edge Manager agent.
15968
+ #
15969
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
15970
+ #
15971
+ # @example Request syntax with placeholder values
15972
+ #
15973
+ # resp = client.update_devices({
15974
+ # device_fleet_name: "EntityName", # required
15975
+ # devices: [ # required
15976
+ # {
15977
+ # device_name: "DeviceName", # required
15978
+ # description: "DeviceDescription",
15979
+ # iot_thing_name: "ThingName",
15980
+ # },
15981
+ # ],
15982
+ # })
15983
+ #
15984
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateDevices AWS API Documentation
15985
+ #
15986
+ # @overload update_devices(params = {})
15987
+ # @param [Hash] params ({})
15988
+ def update_devices(params = {}, options = {})
15989
+ req = build_request(:update_devices, params)
15990
+ req.send_request(options)
15991
+ end
15992
+
13929
15993
  # Updates the default settings for new user profiles in the domain.
13930
15994
  #
13931
15995
  # @option params [required, String] :domain_id
@@ -14286,6 +16350,7 @@ module Aws::SageMaker
14286
16350
  # },
14287
16351
  # monitoring_job_definition: {
14288
16352
  # baseline_config: {
16353
+ # baselining_job_name: "ProcessingJobName",
14289
16354
  # constraints_resource: {
14290
16355
  # s3_uri: "S3Uri",
14291
16356
  # },
@@ -14300,6 +16365,12 @@ module Aws::SageMaker
14300
16365
  # local_path: "ProcessingLocalPath", # required
14301
16366
  # s3_input_mode: "Pipe", # accepts Pipe, File
14302
16367
  # s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
16368
+ # features_attribute: "String",
16369
+ # inference_attribute: "String",
16370
+ # probability_attribute: "String",
16371
+ # probability_threshold_attribute: 1.0,
16372
+ # start_time_offset: "MonitoringTimeOffsetString",
16373
+ # end_time_offset: "MonitoringTimeOffsetString",
14303
16374
  # },
14304
16375
  # },
14305
16376
  # ],
@@ -14346,6 +16417,8 @@ module Aws::SageMaker
14346
16417
  # },
14347
16418
  # role_arn: "RoleArn", # required
14348
16419
  # },
16420
+ # monitoring_job_definition_name: "MonitoringJobDefinitionName",
16421
+ # monitoring_type: "DataQuality", # accepts DataQuality, ModelQuality, ModelBias, ModelExplainability
14349
16422
  # },
14350
16423
  # })
14351
16424
  #
@@ -14629,6 +16702,65 @@ module Aws::SageMaker
14629
16702
  req.send_request(options)
14630
16703
  end
14631
16704
 
16705
+ # Update a model training job to request a new Debugger profiling
16706
+ # configuration.
16707
+ #
16708
+ # @option params [required, String] :training_job_name
16709
+ # The name of a training job to update the Debugger profiling
16710
+ # configuration.
16711
+ #
16712
+ # @option params [Types::ProfilerConfigForUpdate] :profiler_config
16713
+ # Configuration information for Debugger system monitoring, framework
16714
+ # profiling, and storage paths.
16715
+ #
16716
+ # @option params [Array<Types::ProfilerRuleConfiguration>] :profiler_rule_configurations
16717
+ # Configuration information for Debugger rules for profiling system and
16718
+ # framework metrics.
16719
+ #
16720
+ # @return [Types::UpdateTrainingJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
16721
+ #
16722
+ # * {Types::UpdateTrainingJobResponse#training_job_arn #training_job_arn} => String
16723
+ #
16724
+ # @example Request syntax with placeholder values
16725
+ #
16726
+ # resp = client.update_training_job({
16727
+ # training_job_name: "TrainingJobName", # required
16728
+ # profiler_config: {
16729
+ # s3_output_path: "S3Uri",
16730
+ # profiling_interval_in_milliseconds: 1,
16731
+ # profiling_parameters: {
16732
+ # "ConfigKey" => "ConfigValue",
16733
+ # },
16734
+ # disable_profiler: false,
16735
+ # },
16736
+ # profiler_rule_configurations: [
16737
+ # {
16738
+ # rule_configuration_name: "RuleConfigurationName", # required
16739
+ # local_path: "DirectoryPath",
16740
+ # s3_output_path: "S3Uri",
16741
+ # rule_evaluator_image: "AlgorithmImage", # required
16742
+ # 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
16743
+ # volume_size_in_gb: 1,
16744
+ # rule_parameters: {
16745
+ # "ConfigKey" => "ConfigValue",
16746
+ # },
16747
+ # },
16748
+ # ],
16749
+ # })
16750
+ #
16751
+ # @example Response structure
16752
+ #
16753
+ # resp.training_job_arn #=> String
16754
+ #
16755
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateTrainingJob AWS API Documentation
16756
+ #
16757
+ # @overload update_training_job(params = {})
16758
+ # @param [Hash] params ({})
16759
+ def update_training_job(params = {}, options = {})
16760
+ req = build_request(:update_training_job, params)
16761
+ req.send_request(options)
16762
+ end
16763
+
14632
16764
  # Updates the display name of a trial.
14633
16765
  #
14634
16766
  # @option params [required, String] :trial_name
@@ -15035,7 +17167,7 @@ module Aws::SageMaker
15035
17167
  params: params,
15036
17168
  config: config)
15037
17169
  context[:gem_name] = 'aws-sdk-sagemaker'
15038
- context[:gem_version] = '1.73.0'
17170
+ context[:gem_version] = '1.74.0'
15039
17171
  Seahorse::Client::Request.new(handlers, context)
15040
17172
  end
15041
17173