aws-sdk-sagemaker 1.76.0 → 1.81.0

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 1.81.0
@@ -3,7 +3,7 @@
3
3
  # WARNING ABOUT GENERATED CODE
4
4
  #
5
5
  # This file is generated. See the contributing guide for more information:
6
- # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
@@ -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.76.0'
52
+ GEM_VERSION = '1.81.0'
53
53
 
54
54
  end
@@ -3,7 +3,7 @@
3
3
  # WARNING ABOUT GENERATED CODE
4
4
  #
5
5
  # This file is generated. See the contributing guide for more information:
6
- # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
@@ -1300,6 +1300,7 @@ module Aws::SageMaker
1300
1300
  # s3_uri: "S3Uri", # required
1301
1301
  # data_input_config: "DataInputConfig", # required
1302
1302
  # framework: "TENSORFLOW", # required, accepts TENSORFLOW, KERAS, MXNET, ONNX, PYTORCH, XGBOOST, TFLITE, DARKNET, SKLEARN
1303
+ # framework_version: "FrameworkVersion",
1303
1304
  # },
1304
1305
  # output_config: { # required
1305
1306
  # s3_output_location: "S3Uri", # required
@@ -2087,6 +2088,10 @@ module Aws::SageMaker
2087
2088
  # instance_type: "ml.t2.medium", # required, accepts ml.t2.medium, ml.t2.large, ml.t2.xlarge, ml.t2.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.12xlarge, ml.m5d.24xlarge, ml.c4.large, 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.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5d.large, ml.c5d.xlarge, ml.c5d.2xlarge, ml.c5d.4xlarge, ml.c5d.9xlarge, ml.c5d.18xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.12xlarge, ml.r5.24xlarge, ml.r5d.large, ml.r5d.xlarge, ml.r5d.2xlarge, ml.r5d.4xlarge, ml.r5d.12xlarge, ml.r5d.24xlarge, ml.inf1.xlarge, ml.inf1.2xlarge, ml.inf1.6xlarge, ml.inf1.24xlarge
2088
2089
  # initial_variant_weight: 1.0,
2089
2090
  # accelerator_type: "ml.eia1.medium", # accepts ml.eia1.medium, ml.eia1.large, ml.eia1.xlarge, ml.eia2.medium, ml.eia2.large, ml.eia2.xlarge
2091
+ # core_dump_config: {
2092
+ # destination_s3_uri: "DestinationS3Uri", # required
2093
+ # kms_key_id: "KmsKeyId",
2094
+ # },
2090
2095
  # },
2091
2096
  # ],
2092
2097
  # data_capture_config: {
@@ -2336,6 +2341,7 @@ module Aws::SageMaker
2336
2341
  # s3_storage_config: { # required
2337
2342
  # s3_uri: "S3Uri", # required
2338
2343
  # kms_key_id: "KmsKeyId",
2344
+ # resolved_output_s3_uri: "S3Uri",
2339
2345
  # },
2340
2346
  # disable_glue_table_creation: false,
2341
2347
  # data_catalog_config: {
@@ -3009,16 +3015,77 @@ module Aws::SageMaker
3009
3015
  # @option params [required, String] :label_attribute_name
3010
3016
  # The attribute name to use for the label in the output manifest file.
3011
3017
  # This is the key for the key/value pair formed with the label that a
3012
- # worker assigns to the object. The name can't end with "-metadata".
3013
- # If you are running a semantic segmentation labeling job, the attribute
3014
- # name must end with "-ref". If you are running any other kind of
3015
- # labeling job, the attribute name must not end with "-ref".
3018
+ # worker assigns to the object. The `LabelAttributeName` must meet the
3019
+ # following requirements.
3020
+ #
3021
+ # * The name can't end with "-metadata".
3022
+ #
3023
+ # * If you are using one of the following [built-in task types][1], the
3024
+ # attribute name *must* end with "-ref". If the task type you are
3025
+ # using is not listed below, the attribute name *must not* end with
3026
+ # "-ref".
3027
+ #
3028
+ # * Image semantic segmentation (`SemanticSegmentation)`, and
3029
+ # adjustment (`AdjustmentSemanticSegmentation`) and verification
3030
+ # (`VerificationSemanticSegmentation`) labeling jobs for this task
3031
+ # type.
3032
+ #
3033
+ # * Video frame object detection (`VideoObjectDetection`), and
3034
+ # adjustment and verification (`AdjustmentVideoObjectDetection`)
3035
+ # labeling jobs for this task type.
3036
+ #
3037
+ # * Video frame object tracking (`VideoObjectTracking`), and
3038
+ # adjustment and verification (`AdjustmentVideoObjectTracking`)
3039
+ # labeling jobs for this task type.
3040
+ #
3041
+ # * 3D point cloud semantic segmentation
3042
+ # (`3DPointCloudSemanticSegmentation`), and adjustment and
3043
+ # verification (`Adjustment3DPointCloudSemanticSegmentation`)
3044
+ # labeling jobs for this task type.
3045
+ #
3046
+ # * 3D point cloud object tracking (`3DPointCloudObjectTracking`), and
3047
+ # adjustment and verification
3048
+ # (`Adjustment3DPointCloudObjectTracking`) labeling jobs for this
3049
+ # task type.
3050
+ #
3051
+ #
3052
+ #
3053
+ # If you are creating an adjustment or verification labeling job, you
3054
+ # must use a *different* `LabelAttributeName` than the one used in the
3055
+ # original labeling job. The original labeling job is the Ground Truth
3056
+ # labeling job that produced the labels that you want verified or
3057
+ # adjusted. To learn more about adjustment and verification labeling
3058
+ # jobs, see [Verify and Adjust Labels][2].
3059
+ #
3060
+ #
3061
+ #
3062
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-task-types.html
3063
+ # [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-verification-data.html
3016
3064
  #
3017
3065
  # @option params [required, Types::LabelingJobInputConfig] :input_config
3018
3066
  # Input data for the labeling job, such as the Amazon S3 location of the
3019
3067
  # data objects and the location of the manifest file that describes the
3020
3068
  # data objects.
3021
3069
  #
3070
+ # You must specify at least one of the following: `S3DataSource` or
3071
+ # `SnsDataSource`.
3072
+ #
3073
+ # * Use `SnsDataSource` to specify an SNS input topic for a streaming
3074
+ # labeling job. If you do not specify and SNS input topic ARN, Ground
3075
+ # Truth will create a one-time labeling job that stops after all data
3076
+ # objects in the input manifest file have been labeled.
3077
+ #
3078
+ # * Use `S3DataSource` to specify an input manifest file for both
3079
+ # streaming and one-time labeling jobs. Adding an `S3DataSource` is
3080
+ # optional if you use `SnsDataSource` to create a streaming labeling
3081
+ # job.
3082
+ #
3083
+ # If you use the Amazon Mechanical Turk workforce, your input data
3084
+ # should not include confidential information, personal information or
3085
+ # protected health information. Use `ContentClassifiers` to specify that
3086
+ # your data is free of personally identifiable information and adult
3087
+ # content.
3088
+ #
3022
3089
  # @option params [required, Types::LabelingJobOutputConfig] :output_config
3023
3090
  # The location of the output data and the AWS Key Management Service key
3024
3091
  # ID for the key used to encrypt the output data, if any.
@@ -3043,41 +3110,37 @@ module Aws::SageMaker
3043
3110
  # format. Identify the labels you want to use by replacing `label_1`,
3044
3111
  # `label_2`,`...`,`label_n` with your label categories.
3045
3112
  #
3046
- # `\{`
3047
- #
3048
- # ` "document-version": "2018-11-28"`
3113
+ # `\{ `
3049
3114
  #
3050
- # ` "labels": [`
3115
+ # `"document-version": "2018-11-28",`
3051
3116
  #
3052
- # ` \{`
3117
+ # `"labels": [\{"label": "label_1"\},\{"label":
3118
+ # "label_2"\},...\{"label": "label_n"\}]`
3053
3119
  #
3054
- # ` "label": "label_1"`
3055
- #
3056
- # ` \},`
3057
- #
3058
- # ` \{`
3059
- #
3060
- # ` "label": "label_2"`
3061
- #
3062
- # ` \},`
3063
- #
3064
- # ` ...`
3065
- #
3066
- # ` \{`
3120
+ # `\}`
3067
3121
  #
3068
- # ` "label": "label_n"`
3122
+ # Note the following about the label category configuration file:
3069
3123
  #
3070
- # ` \}`
3124
+ # * For image classification and text classification (single and
3125
+ # multi-label) you must specify at least two label categories. For all
3126
+ # other task types, the minimum number of label categories required is
3127
+ # one.
3071
3128
  #
3072
- # ` ]`
3129
+ # * Each label category must be unique, you cannot specify duplicate
3130
+ # label categories.
3073
3131
  #
3074
- # `\}`
3132
+ # * If you create a 3D point cloud or video frame adjustment or
3133
+ # verification labeling job, you must include
3134
+ # `auditLabelAttributeName` in the label category configuration. Use
3135
+ # this parameter to enter the [ `LabelAttributeName` ][4] of the
3136
+ # labeling job you want to adjust or verify annotations of.
3075
3137
  #
3076
3138
  #
3077
3139
  #
3078
3140
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-point-cloud-label-category-config.html
3079
3141
  # [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-task-types.html
3080
3142
  # [3]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-custom-templates.html
3143
+ # [4]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateLabelingJob.html#sagemaker-CreateLabelingJob-request-LabelAttributeName
3081
3144
  #
3082
3145
  # @option params [Types::LabelingJobStoppingConditions] :stopping_conditions
3083
3146
  # A set of conditions for stopping the labeling job. If any of the
@@ -3236,6 +3299,10 @@ module Aws::SageMaker
3236
3299
  # @option params [Array<Types::ContainerDefinition>] :containers
3237
3300
  # Specifies the containers in the inference pipeline.
3238
3301
  #
3302
+ # @option params [Types::InferenceExecutionConfig] :inference_execution_config
3303
+ # Specifies details of how containers in a multi-container endpoint are
3304
+ # called.
3305
+ #
3239
3306
  # @option params [required, String] :execution_role_arn
3240
3307
  # The Amazon Resource Name (ARN) of the IAM role that Amazon SageMaker
3241
3308
  # can assume to access model artifacts and docker image for deployment
@@ -3320,6 +3387,9 @@ module Aws::SageMaker
3320
3387
  # },
3321
3388
  # },
3322
3389
  # ],
3390
+ # inference_execution_config: {
3391
+ # mode: "Serial", # required, accepts Serial, Direct
3392
+ # },
3323
3393
  # execution_role_arn: "RoleArn", # required
3324
3394
  # tags: [
3325
3395
  # {
@@ -4512,9 +4582,10 @@ module Aws::SageMaker
4512
4582
  # This operation can only be called when the authentication mode equals
4513
4583
  # IAM.
4514
4584
  #
4515
- # <note markdown="1"> The URL that you get from a call to `CreatePresignedDomainUrl` is
4516
- # valid only for 5 minutes. If you try to use the URL after the 5-minute
4517
- # limit expires, you are directed to the AWS console sign-in page.
4585
+ # <note markdown="1"> The URL that you get from a call to `CreatePresignedDomainUrl` has a
4586
+ # default timeout of 5 minutes. You can configure this value using
4587
+ # `ExpiresInSeconds`. If you try to use the URL after the timeout limit
4588
+ # expires, you are directed to the AWS console sign-in page.
4518
4589
  #
4519
4590
  # </note>
4520
4591
  #
@@ -4525,7 +4596,12 @@ module Aws::SageMaker
4525
4596
  # The name of the UserProfile to sign-in as.
4526
4597
  #
4527
4598
  # @option params [Integer] :session_expiration_duration_in_seconds
4528
- # The session expiration duration in seconds.
4599
+ # The session expiration duration in seconds. This value defaults to
4600
+ # 43200.
4601
+ #
4602
+ # @option params [Integer] :expires_in_seconds
4603
+ # The number of seconds until the pre-signed URL expires. This value
4604
+ # defaults to 300.
4529
4605
  #
4530
4606
  # @return [Types::CreatePresignedDomainUrlResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4531
4607
  #
@@ -4537,6 +4613,7 @@ module Aws::SageMaker
4537
4613
  # domain_id: "DomainId", # required
4538
4614
  # user_profile_name: "UserProfileName", # required
4539
4615
  # session_expiration_duration_in_seconds: 1,
4616
+ # expires_in_seconds: 1,
4540
4617
  # })
4541
4618
  #
4542
4619
  # @example Response structure
@@ -4616,7 +4693,8 @@ module Aws::SageMaker
4616
4693
  # Creates a processing job.
4617
4694
  #
4618
4695
  # @option params [Array<Types::ProcessingInput>] :processing_inputs
4619
- # List of input configurations for the processing job.
4696
+ # An array of inputs configuring the data to download into the
4697
+ # processing container.
4620
4698
  #
4621
4699
  # @option params [Types::ProcessingOutputConfig] :processing_output_config
4622
4700
  # Output configuration for the processing job.
@@ -4638,10 +4716,14 @@ module Aws::SageMaker
4638
4716
  # image.
4639
4717
  #
4640
4718
  # @option params [Hash<String,String>] :environment
4641
- # Sets the environment variables in the Docker container.
4719
+ # The environment variables to set in the Docker container. Up to 100
4720
+ # key and values entries in the map are supported.
4642
4721
  #
4643
4722
  # @option params [Types::NetworkConfig] :network_config
4644
- # Networking options for a processing job.
4723
+ # Networking options for a processing job, such as whether to allow
4724
+ # inbound and outbound network calls to and from processing containers,
4725
+ # and the VPC subnets and security groups to use for VPC-enabled
4726
+ # processing jobs.
4645
4727
  #
4646
4728
  # @option params [required, String] :role_arn
4647
4729
  # The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
@@ -7557,6 +7639,7 @@ module Aws::SageMaker
7557
7639
  # resp.input_config.s3_uri #=> String
7558
7640
  # resp.input_config.data_input_config #=> String
7559
7641
  # resp.input_config.framework #=> String, one of "TENSORFLOW", "KERAS", "MXNET", "ONNX", "PYTORCH", "XGBOOST", "TFLITE", "DARKNET", "SKLEARN"
7642
+ # resp.input_config.framework_version #=> String
7560
7643
  # resp.output_config.s3_output_location #=> String
7561
7644
  # resp.output_config.target_device #=> String, one of "lambda", "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "ml_g4dn", "ml_inf1", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "sitara_am57x", "amba_cv22", "x86_win32", "x86_win64", "coreml", "jacinto_tda4vm"
7562
7645
  # resp.output_config.target_platform.os #=> String, one of "ANDROID", "LINUX"
@@ -8045,6 +8128,8 @@ module Aws::SageMaker
8045
8128
  # resp.production_variants[0].instance_type #=> String, one of "ml.t2.medium", "ml.t2.large", "ml.t2.xlarge", "ml.t2.2xlarge", "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.12xlarge", "ml.m5d.24xlarge", "ml.c4.large", "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.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5d.large", "ml.c5d.xlarge", "ml.c5d.2xlarge", "ml.c5d.4xlarge", "ml.c5d.9xlarge", "ml.c5d.18xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.12xlarge", "ml.r5.24xlarge", "ml.r5d.large", "ml.r5d.xlarge", "ml.r5d.2xlarge", "ml.r5d.4xlarge", "ml.r5d.12xlarge", "ml.r5d.24xlarge", "ml.inf1.xlarge", "ml.inf1.2xlarge", "ml.inf1.6xlarge", "ml.inf1.24xlarge"
8046
8129
  # resp.production_variants[0].initial_variant_weight #=> Float
8047
8130
  # resp.production_variants[0].accelerator_type #=> String, one of "ml.eia1.medium", "ml.eia1.large", "ml.eia1.xlarge", "ml.eia2.medium", "ml.eia2.large", "ml.eia2.xlarge"
8131
+ # resp.production_variants[0].core_dump_config.destination_s3_uri #=> String
8132
+ # resp.production_variants[0].core_dump_config.kms_key_id #=> String
8048
8133
  # resp.data_capture_config.enable_capture #=> Boolean
8049
8134
  # resp.data_capture_config.initial_sampling_percentage #=> Integer
8050
8135
  # resp.data_capture_config.destination_s3_uri #=> String
@@ -8165,6 +8250,7 @@ module Aws::SageMaker
8165
8250
  # resp.online_store_config.enable_online_store #=> Boolean
8166
8251
  # resp.offline_store_config.s3_storage_config.s3_uri #=> String
8167
8252
  # resp.offline_store_config.s3_storage_config.kms_key_id #=> String
8253
+ # resp.offline_store_config.s3_storage_config.resolved_output_s3_uri #=> String
8168
8254
  # resp.offline_store_config.disable_glue_table_creation #=> Boolean
8169
8255
  # resp.offline_store_config.data_catalog_config.table_name #=> String
8170
8256
  # resp.offline_store_config.data_catalog_config.catalog #=> String
@@ -8707,6 +8793,7 @@ module Aws::SageMaker
8707
8793
  # * {Types::DescribeModelOutput#model_name #model_name} => String
8708
8794
  # * {Types::DescribeModelOutput#primary_container #primary_container} => Types::ContainerDefinition
8709
8795
  # * {Types::DescribeModelOutput#containers #containers} => Array&lt;Types::ContainerDefinition&gt;
8796
+ # * {Types::DescribeModelOutput#inference_execution_config #inference_execution_config} => Types::InferenceExecutionConfig
8710
8797
  # * {Types::DescribeModelOutput#execution_role_arn #execution_role_arn} => String
8711
8798
  # * {Types::DescribeModelOutput#vpc_config #vpc_config} => Types::VpcConfig
8712
8799
  # * {Types::DescribeModelOutput#creation_time #creation_time} => Time
@@ -8741,6 +8828,7 @@ module Aws::SageMaker
8741
8828
  # resp.containers[0].environment["EnvironmentKey"] #=> String
8742
8829
  # resp.containers[0].model_package_name #=> String
8743
8830
  # resp.containers[0].multi_model_config.model_cache_setting #=> String, one of "Enabled", "Disabled"
8831
+ # resp.inference_execution_config.mode #=> String, one of "Serial", "Direct"
8744
8832
  # resp.execution_role_arn #=> String
8745
8833
  # resp.vpc_config.security_group_ids #=> Array
8746
8834
  # resp.vpc_config.security_group_ids[0] #=> String
@@ -9726,6 +9814,12 @@ module Aws::SageMaker
9726
9814
 
9727
9815
  # Returns information about a training job.
9728
9816
  #
9817
+ # Some of the attributes below only appear if the training job
9818
+ # successfully starts. If the training job fails, `TrainingJobStatus` is
9819
+ # `Failed` and, depending on the `FailureReason`, attributes like
9820
+ # `TrainingStartTime`, `TrainingTimeInSeconds`, `TrainingEndTime`, and
9821
+ # `BillableTimeInSeconds` may not be present in the response.
9822
+ #
9729
9823
  # @option params [required, String] :training_job_name
9730
9824
  # The name of the training job.
9731
9825
  #
@@ -13840,6 +13934,27 @@ module Aws::SageMaker
13840
13934
 
13841
13935
  # Lists training jobs.
13842
13936
  #
13937
+ # <note markdown="1"> When `StatusEquals` and `MaxResults` are set at the same time, the
13938
+ # `MaxResults` number of training jobs are first retrieved ignoring the
13939
+ # `StatusEquals` parameter and then they are filtered by the
13940
+ # `StatusEquals` parameter, which is returned as a response. For
13941
+ # example, if `ListTrainingJobs` is invoked with the following
13942
+ # parameters:
13943
+ #
13944
+ # `\{ ... MaxResults: 100, StatusEquals: InProgress ... \}`
13945
+ #
13946
+ # Then, 100 trainings jobs with any status including those other than
13947
+ # `InProgress` are selected first (sorted according the creation time,
13948
+ # from the latest to the oldest) and those with status `InProgress` are
13949
+ # returned.
13950
+ #
13951
+ # You can quickly test the API using the following AWS CLI code.
13952
+ #
13953
+ # `aws sagemaker list-training-jobs --max-results 100 --status-equals
13954
+ # InProgress`
13955
+ #
13956
+ # </note>
13957
+ #
13843
13958
  # @option params [String] :next_token
13844
13959
  # If the result of the previous `ListTrainingJobs` request was
13845
13960
  # truncated, the response includes a `NextToken`. To retrieve the next
@@ -15304,6 +15419,7 @@ module Aws::SageMaker
15304
15419
  # resp.results[0].feature_group.online_store_config.enable_online_store #=> Boolean
15305
15420
  # resp.results[0].feature_group.offline_store_config.s3_storage_config.s3_uri #=> String
15306
15421
  # resp.results[0].feature_group.offline_store_config.s3_storage_config.kms_key_id #=> String
15422
+ # resp.results[0].feature_group.offline_store_config.s3_storage_config.resolved_output_s3_uri #=> String
15307
15423
  # resp.results[0].feature_group.offline_store_config.disable_glue_table_creation #=> Boolean
15308
15424
  # resp.results[0].feature_group.offline_store_config.data_catalog_config.table_name #=> String
15309
15425
  # resp.results[0].feature_group.offline_store_config.data_catalog_config.catalog #=> String
@@ -17193,7 +17309,7 @@ module Aws::SageMaker
17193
17309
  params: params,
17194
17310
  config: config)
17195
17311
  context[:gem_name] = 'aws-sdk-sagemaker'
17196
- context[:gem_version] = '1.76.0'
17312
+ context[:gem_version] = '1.81.0'
17197
17313
  Seahorse::Client::Request.new(handlers, context)
17198
17314
  end
17199
17315
 
@@ -3,7 +3,7 @@
3
3
  # WARNING ABOUT GENERATED CODE
4
4
  #
5
5
  # This file is generated. See the contributing guide for more information:
6
- # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
@@ -552,6 +552,7 @@ module Aws::SageMaker
552
552
  ExperimentSourceArn = Shapes::StringShape.new(name: 'ExperimentSourceArn')
553
553
  ExperimentSummaries = Shapes::ListShape.new(name: 'ExperimentSummaries')
554
554
  ExperimentSummary = Shapes::StructureShape.new(name: 'ExperimentSummary')
555
+ ExpiresInSeconds = Shapes::IntegerShape.new(name: 'ExpiresInSeconds')
555
556
  Explainability = Shapes::StructureShape.new(name: 'Explainability')
556
557
  FailureReason = Shapes::StringShape.new(name: 'FailureReason')
557
558
  FeatureDefinition = Shapes::StructureShape.new(name: 'FeatureDefinition')
@@ -594,6 +595,7 @@ module Aws::SageMaker
594
595
  FlowDefinitionTaskTimeLimitInSeconds = Shapes::IntegerShape.new(name: 'FlowDefinitionTaskTimeLimitInSeconds')
595
596
  FlowDefinitionTaskTitle = Shapes::StringShape.new(name: 'FlowDefinitionTaskTitle')
596
597
  Framework = Shapes::StringShape.new(name: 'Framework')
598
+ FrameworkVersion = Shapes::StringShape.new(name: 'FrameworkVersion')
597
599
  GenerateCandidateDefinitionsOnly = Shapes::BooleanShape.new(name: 'GenerateCandidateDefinitionsOnly')
598
600
  GetDeviceFleetReportRequest = Shapes::StructureShape.new(name: 'GetDeviceFleetReportRequest')
599
601
  GetDeviceFleetReportResponse = Shapes::StructureShape.new(name: 'GetDeviceFleetReportResponse')
@@ -670,6 +672,8 @@ module Aws::SageMaker
670
672
  ImageVersionStatus = Shapes::StringShape.new(name: 'ImageVersionStatus')
671
673
  ImageVersions = Shapes::ListShape.new(name: 'ImageVersions')
672
674
  Images = Shapes::ListShape.new(name: 'Images')
675
+ InferenceExecutionConfig = Shapes::StructureShape.new(name: 'InferenceExecutionConfig')
676
+ InferenceExecutionMode = Shapes::StringShape.new(name: 'InferenceExecutionMode')
673
677
  InferenceSpecification = Shapes::StructureShape.new(name: 'InferenceSpecification')
674
678
  InputConfig = Shapes::StructureShape.new(name: 'InputConfig')
675
679
  InputDataConfig = Shapes::ListShape.new(name: 'InputDataConfig')
@@ -1075,6 +1079,7 @@ module Aws::SageMaker
1075
1079
  ProductListings = Shapes::ListShape.new(name: 'ProductListings')
1076
1080
  ProductionVariant = Shapes::StructureShape.new(name: 'ProductionVariant')
1077
1081
  ProductionVariantAcceleratorType = Shapes::StringShape.new(name: 'ProductionVariantAcceleratorType')
1082
+ ProductionVariantCoreDumpConfig = Shapes::StructureShape.new(name: 'ProductionVariantCoreDumpConfig')
1078
1083
  ProductionVariantInstanceType = Shapes::StringShape.new(name: 'ProductionVariantInstanceType')
1079
1084
  ProductionVariantList = Shapes::ListShape.new(name: 'ProductionVariantList')
1080
1085
  ProductionVariantSummary = Shapes::StructureShape.new(name: 'ProductionVariantSummary')
@@ -2089,6 +2094,7 @@ module Aws::SageMaker
2089
2094
  CreateModelInput.add_member(:model_name, Shapes::ShapeRef.new(shape: ModelName, required: true, location_name: "ModelName"))
2090
2095
  CreateModelInput.add_member(:primary_container, Shapes::ShapeRef.new(shape: ContainerDefinition, location_name: "PrimaryContainer"))
2091
2096
  CreateModelInput.add_member(:containers, Shapes::ShapeRef.new(shape: ContainerDefinitionList, location_name: "Containers"))
2097
+ CreateModelInput.add_member(:inference_execution_config, Shapes::ShapeRef.new(shape: InferenceExecutionConfig, location_name: "InferenceExecutionConfig"))
2092
2098
  CreateModelInput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "ExecutionRoleArn"))
2093
2099
  CreateModelInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
2094
2100
  CreateModelInput.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
@@ -2188,6 +2194,7 @@ module Aws::SageMaker
2188
2194
  CreatePresignedDomainUrlRequest.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "DomainId"))
2189
2195
  CreatePresignedDomainUrlRequest.add_member(:user_profile_name, Shapes::ShapeRef.new(shape: UserProfileName, required: true, location_name: "UserProfileName"))
2190
2196
  CreatePresignedDomainUrlRequest.add_member(:session_expiration_duration_in_seconds, Shapes::ShapeRef.new(shape: SessionExpirationDurationInSeconds, location_name: "SessionExpirationDurationInSeconds"))
2197
+ CreatePresignedDomainUrlRequest.add_member(:expires_in_seconds, Shapes::ShapeRef.new(shape: ExpiresInSeconds, location_name: "ExpiresInSeconds"))
2191
2198
  CreatePresignedDomainUrlRequest.struct_class = Types::CreatePresignedDomainUrlRequest
2192
2199
 
2193
2200
  CreatePresignedDomainUrlResponse.add_member(:authorized_url, Shapes::ShapeRef.new(shape: PresignedDomainUrl, location_name: "AuthorizedUrl"))
@@ -3015,6 +3022,7 @@ module Aws::SageMaker
3015
3022
  DescribeModelOutput.add_member(:model_name, Shapes::ShapeRef.new(shape: ModelName, required: true, location_name: "ModelName"))
3016
3023
  DescribeModelOutput.add_member(:primary_container, Shapes::ShapeRef.new(shape: ContainerDefinition, location_name: "PrimaryContainer"))
3017
3024
  DescribeModelOutput.add_member(:containers, Shapes::ShapeRef.new(shape: ContainerDefinitionList, location_name: "Containers"))
3025
+ DescribeModelOutput.add_member(:inference_execution_config, Shapes::ShapeRef.new(shape: InferenceExecutionConfig, location_name: "InferenceExecutionConfig"))
3018
3026
  DescribeModelOutput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "ExecutionRoleArn"))
3019
3027
  DescribeModelOutput.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
3020
3028
  DescribeModelOutput.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
@@ -3802,6 +3810,9 @@ module Aws::SageMaker
3802
3810
 
3803
3811
  Images.member = Shapes::ShapeRef.new(shape: Image)
3804
3812
 
3813
+ InferenceExecutionConfig.add_member(:mode, Shapes::ShapeRef.new(shape: InferenceExecutionMode, required: true, location_name: "Mode"))
3814
+ InferenceExecutionConfig.struct_class = Types::InferenceExecutionConfig
3815
+
3805
3816
  InferenceSpecification.add_member(:containers, Shapes::ShapeRef.new(shape: ModelPackageContainerDefinitionList, required: true, location_name: "Containers"))
3806
3817
  InferenceSpecification.add_member(:supported_transform_instance_types, Shapes::ShapeRef.new(shape: TransformInstanceTypes, location_name: "SupportedTransformInstanceTypes"))
3807
3818
  InferenceSpecification.add_member(:supported_realtime_inference_instance_types, Shapes::ShapeRef.new(shape: RealtimeInferenceInstanceTypes, location_name: "SupportedRealtimeInferenceInstanceTypes"))
@@ -3812,6 +3823,7 @@ module Aws::SageMaker
3812
3823
  InputConfig.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "S3Uri"))
3813
3824
  InputConfig.add_member(:data_input_config, Shapes::ShapeRef.new(shape: DataInputConfig, required: true, location_name: "DataInputConfig"))
3814
3825
  InputConfig.add_member(:framework, Shapes::ShapeRef.new(shape: Framework, required: true, location_name: "Framework"))
3826
+ InputConfig.add_member(:framework_version, Shapes::ShapeRef.new(shape: FrameworkVersion, location_name: "FrameworkVersion"))
3815
3827
  InputConfig.struct_class = Types::InputConfig
3816
3828
 
3817
3829
  InputDataConfig.member = Shapes::ShapeRef.new(shape: Channel)
@@ -5274,8 +5286,13 @@ module Aws::SageMaker
5274
5286
  ProductionVariant.add_member(:instance_type, Shapes::ShapeRef.new(shape: ProductionVariantInstanceType, required: true, location_name: "InstanceType"))
5275
5287
  ProductionVariant.add_member(:initial_variant_weight, Shapes::ShapeRef.new(shape: VariantWeight, location_name: "InitialVariantWeight"))
5276
5288
  ProductionVariant.add_member(:accelerator_type, Shapes::ShapeRef.new(shape: ProductionVariantAcceleratorType, location_name: "AcceleratorType"))
5289
+ ProductionVariant.add_member(:core_dump_config, Shapes::ShapeRef.new(shape: ProductionVariantCoreDumpConfig, location_name: "CoreDumpConfig"))
5277
5290
  ProductionVariant.struct_class = Types::ProductionVariant
5278
5291
 
5292
+ ProductionVariantCoreDumpConfig.add_member(:destination_s3_uri, Shapes::ShapeRef.new(shape: DestinationS3Uri, required: true, location_name: "DestinationS3Uri"))
5293
+ ProductionVariantCoreDumpConfig.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
5294
+ ProductionVariantCoreDumpConfig.struct_class = Types::ProductionVariantCoreDumpConfig
5295
+
5279
5296
  ProductionVariantList.member = Shapes::ShapeRef.new(shape: ProductionVariant)
5280
5297
 
5281
5298
  ProductionVariantSummary.add_member(:variant_name, Shapes::ShapeRef.new(shape: VariantName, required: true, location_name: "VariantName"))
@@ -5441,6 +5458,7 @@ module Aws::SageMaker
5441
5458
 
5442
5459
  S3StorageConfig.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "S3Uri"))
5443
5460
  S3StorageConfig.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
5461
+ S3StorageConfig.add_member(:resolved_output_s3_uri, Shapes::ShapeRef.new(shape: S3Uri, location_name: "ResolvedOutputS3Uri"))
5444
5462
  S3StorageConfig.struct_class = Types::S3StorageConfig
5445
5463
 
5446
5464
  ScheduleConfig.add_member(:schedule_expression, Shapes::ShapeRef.new(shape: ScheduleExpression, required: true, location_name: "ScheduleExpression"))