aws-sdk-sagemaker 1.90.0 → 1.91.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 577c90f61b7941f4ce11e7016d5ad9a539867d7fa6cccc2a72134bde16eb7ca9
4
- data.tar.gz: 9a38c22a8a5f3298e8047339a0d820e35c785387855cd6e531852c6cb5192a3e
3
+ metadata.gz: fd7a383ebd960a73a0b483dfe3ab097efd97bffde863359dd2991651d65ef1f4
4
+ data.tar.gz: f2fb90163e8a0b070a30a7a711e228c9b0fa45e8ec2dc802fe685e4616b21d8e
5
5
  SHA512:
6
- metadata.gz: 18e2caa1c266c232679c5864c1c4a01aa6be06e181938d4aafe7bc09bd235bf7f1520768914bbd0c7fba6c8b5fd472eb4f0c9e8ca7e292b21c65445604411b39
7
- data.tar.gz: 62c68e5a060c4185a699499054be6ce58ed2eb49c3eb93915aa13508f917724cc38b64ba6e8aa09994f72271ede18b588b3dbe0d90b6667f7ad8d832aafe6fe3
6
+ metadata.gz: fccdbd29032b3ebf065588d945ffcc3d2de13bca430633090eef30142d75c379c1ee2945c4c4cb80dd0a53c51b1535358773d55e52d2a6261b425d03c0f1d17e
7
+ data.tar.gz: b4f9346d7b3f4892408a573b4eeada0e12b7a7a5ec0bb60fb34742041d97b11315a1ca04b510144c59c66d528c16827add2f4e9bd3ec560f65e692e517dcec44
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.91.0 (2021-06-28)
5
+ ------------------
6
+
7
+ * Feature - Sagemaker Neo now supports running compilation jobs using customer's Amazon VPC
8
+
4
9
  1.90.0 (2021-06-17)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.90.0
1
+ 1.91.0
@@ -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.90.0'
52
+ GEM_VERSION = '1.91.0'
53
53
 
54
54
  end
@@ -1313,6 +1313,16 @@ module Aws::SageMaker
1313
1313
  # Provides information about the output location for the compiled model
1314
1314
  # and the target device the model runs on.
1315
1315
  #
1316
+ # @option params [Types::NeoVpcConfig] :vpc_config
1317
+ # A VpcConfig object that specifies the VPC that you want your
1318
+ # compilation job to connect to. Control access to your models by
1319
+ # configuring the VPC. For more information, see [Protect Compilation
1320
+ # Jobs by Using an Amazon Virtual Private Cloud][1].
1321
+ #
1322
+ #
1323
+ #
1324
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/neo-vpc.html
1325
+ #
1316
1326
  # @option params [required, Types::StoppingCondition] :stopping_condition
1317
1327
  # Specifies a limit to how long a model compilation job can run. When
1318
1328
  # the job reaches the time limit, Amazon SageMaker ends the compilation
@@ -1344,7 +1354,7 @@ module Aws::SageMaker
1344
1354
  # },
1345
1355
  # output_config: { # required
1346
1356
  # s3_output_location: "S3Uri", # required
1347
- # target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, ml_eia2, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv22, x86_win32, x86_win64, coreml, jacinto_tda4vm
1357
+ # target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, ml_eia2, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv22, amba_cv25, x86_win32, x86_win64, coreml, jacinto_tda4vm
1348
1358
  # target_platform: {
1349
1359
  # os: "ANDROID", # required, accepts ANDROID, LINUX
1350
1360
  # arch: "X86_64", # required, accepts X86_64, X86, ARM64, ARM_EABI, ARM_EABIHF
@@ -1353,6 +1363,10 @@ module Aws::SageMaker
1353
1363
  # compiler_options: "CompilerOptions",
1354
1364
  # kms_key_id: "KmsKeyId",
1355
1365
  # },
1366
+ # vpc_config: {
1367
+ # security_group_ids: ["NeoVpcSecurityGroupId"], # required
1368
+ # subnets: ["NeoVpcSubnetId"], # required
1369
+ # },
1356
1370
  # stopping_condition: { # required
1357
1371
  # max_runtime_in_seconds: 1,
1358
1372
  # max_wait_time_in_seconds: 1,
@@ -7730,6 +7744,7 @@ module Aws::SageMaker
7730
7744
  # * {Types::DescribeCompilationJobResponse#compilation_start_time #compilation_start_time} => Time
7731
7745
  # * {Types::DescribeCompilationJobResponse#compilation_end_time #compilation_end_time} => Time
7732
7746
  # * {Types::DescribeCompilationJobResponse#stopping_condition #stopping_condition} => Types::StoppingCondition
7747
+ # * {Types::DescribeCompilationJobResponse#inference_image #inference_image} => String
7733
7748
  # * {Types::DescribeCompilationJobResponse#creation_time #creation_time} => Time
7734
7749
  # * {Types::DescribeCompilationJobResponse#last_modified_time #last_modified_time} => Time
7735
7750
  # * {Types::DescribeCompilationJobResponse#failure_reason #failure_reason} => String
@@ -7738,6 +7753,7 @@ module Aws::SageMaker
7738
7753
  # * {Types::DescribeCompilationJobResponse#role_arn #role_arn} => String
7739
7754
  # * {Types::DescribeCompilationJobResponse#input_config #input_config} => Types::InputConfig
7740
7755
  # * {Types::DescribeCompilationJobResponse#output_config #output_config} => Types::OutputConfig
7756
+ # * {Types::DescribeCompilationJobResponse#vpc_config #vpc_config} => Types::NeoVpcConfig
7741
7757
  #
7742
7758
  # @example Request syntax with placeholder values
7743
7759
  #
@@ -7754,6 +7770,7 @@ module Aws::SageMaker
7754
7770
  # resp.compilation_end_time #=> Time
7755
7771
  # resp.stopping_condition.max_runtime_in_seconds #=> Integer
7756
7772
  # resp.stopping_condition.max_wait_time_in_seconds #=> Integer
7773
+ # resp.inference_image #=> String
7757
7774
  # resp.creation_time #=> Time
7758
7775
  # resp.last_modified_time #=> Time
7759
7776
  # resp.failure_reason #=> String
@@ -7765,12 +7782,16 @@ module Aws::SageMaker
7765
7782
  # resp.input_config.framework #=> String, one of "TENSORFLOW", "KERAS", "MXNET", "ONNX", "PYTORCH", "XGBOOST", "TFLITE", "DARKNET", "SKLEARN"
7766
7783
  # resp.input_config.framework_version #=> String
7767
7784
  # resp.output_config.s3_output_location #=> String
7768
- # 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", "ml_eia2", "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"
7785
+ # 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", "ml_eia2", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "sitara_am57x", "amba_cv22", "amba_cv25", "x86_win32", "x86_win64", "coreml", "jacinto_tda4vm"
7769
7786
  # resp.output_config.target_platform.os #=> String, one of "ANDROID", "LINUX"
7770
7787
  # resp.output_config.target_platform.arch #=> String, one of "X86_64", "X86", "ARM64", "ARM_EABI", "ARM_EABIHF"
7771
7788
  # resp.output_config.target_platform.accelerator #=> String, one of "INTEL_GRAPHICS", "MALI", "NVIDIA"
7772
7789
  # resp.output_config.compiler_options #=> String
7773
7790
  # resp.output_config.kms_key_id #=> String
7791
+ # resp.vpc_config.security_group_ids #=> Array
7792
+ # resp.vpc_config.security_group_ids[0] #=> String
7793
+ # resp.vpc_config.subnets #=> Array
7794
+ # resp.vpc_config.subnets[0] #=> String
7774
7795
  #
7775
7796
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeCompilationJob AWS API Documentation
7776
7797
  #
@@ -11528,7 +11549,7 @@ module Aws::SageMaker
11528
11549
  # resp.compilation_job_summaries[0].creation_time #=> Time
11529
11550
  # resp.compilation_job_summaries[0].compilation_start_time #=> Time
11530
11551
  # resp.compilation_job_summaries[0].compilation_end_time #=> Time
11531
- # resp.compilation_job_summaries[0].compilation_target_device #=> String, one of "lambda", "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "ml_g4dn", "ml_inf1", "ml_eia2", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "sitara_am57x", "amba_cv22", "x86_win32", "x86_win64", "coreml", "jacinto_tda4vm"
11552
+ # resp.compilation_job_summaries[0].compilation_target_device #=> String, one of "lambda", "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "ml_g4dn", "ml_inf1", "ml_eia2", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "sitara_am57x", "amba_cv22", "amba_cv25", "x86_win32", "x86_win64", "coreml", "jacinto_tda4vm"
11532
11553
  # resp.compilation_job_summaries[0].compilation_target_platform_os #=> String, one of "ANDROID", "LINUX"
11533
11554
  # resp.compilation_job_summaries[0].compilation_target_platform_arch #=> String, one of "X86_64", "X86", "ARM64", "ARM_EABI", "ARM_EABIHF"
11534
11555
  # resp.compilation_job_summaries[0].compilation_target_platform_accelerator #=> String, one of "INTEL_GRAPHICS", "MALI", "NVIDIA"
@@ -17585,7 +17606,7 @@ module Aws::SageMaker
17585
17606
  params: params,
17586
17607
  config: config)
17587
17608
  context[:gem_name] = 'aws-sdk-sagemaker'
17588
- context[:gem_version] = '1.90.0'
17609
+ context[:gem_version] = '1.91.0'
17589
17610
  Seahorse::Client::Request.new(handlers, context)
17590
17611
  end
17591
17612
 
@@ -687,6 +687,7 @@ module Aws::SageMaker
687
687
  Images = Shapes::ListShape.new(name: 'Images')
688
688
  InferenceExecutionConfig = Shapes::StructureShape.new(name: 'InferenceExecutionConfig')
689
689
  InferenceExecutionMode = Shapes::StringShape.new(name: 'InferenceExecutionMode')
690
+ InferenceImage = Shapes::StringShape.new(name: 'InferenceImage')
690
691
  InferenceSpecification = Shapes::StructureShape.new(name: 'InferenceSpecification')
691
692
  InputConfig = Shapes::StructureShape.new(name: 'InputConfig')
692
693
  InputDataConfig = Shapes::ListShape.new(name: 'InputDataConfig')
@@ -973,6 +974,11 @@ module Aws::SageMaker
973
974
  MountPath = Shapes::StringShape.new(name: 'MountPath')
974
975
  MultiModelConfig = Shapes::StructureShape.new(name: 'MultiModelConfig')
975
976
  NameContains = Shapes::StringShape.new(name: 'NameContains')
977
+ NeoVpcConfig = Shapes::StructureShape.new(name: 'NeoVpcConfig')
978
+ NeoVpcSecurityGroupId = Shapes::StringShape.new(name: 'NeoVpcSecurityGroupId')
979
+ NeoVpcSecurityGroupIds = Shapes::ListShape.new(name: 'NeoVpcSecurityGroupIds')
980
+ NeoVpcSubnetId = Shapes::StringShape.new(name: 'NeoVpcSubnetId')
981
+ NeoVpcSubnets = Shapes::ListShape.new(name: 'NeoVpcSubnets')
976
982
  NestedFilters = Shapes::StructureShape.new(name: 'NestedFilters')
977
983
  NestedFiltersList = Shapes::ListShape.new(name: 'NestedFiltersList')
978
984
  NetworkConfig = Shapes::StructureShape.new(name: 'NetworkConfig')
@@ -1940,6 +1946,7 @@ module Aws::SageMaker
1940
1946
  CreateCompilationJobRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "RoleArn"))
1941
1947
  CreateCompilationJobRequest.add_member(:input_config, Shapes::ShapeRef.new(shape: InputConfig, required: true, location_name: "InputConfig"))
1942
1948
  CreateCompilationJobRequest.add_member(:output_config, Shapes::ShapeRef.new(shape: OutputConfig, required: true, location_name: "OutputConfig"))
1949
+ CreateCompilationJobRequest.add_member(:vpc_config, Shapes::ShapeRef.new(shape: NeoVpcConfig, location_name: "VpcConfig"))
1943
1950
  CreateCompilationJobRequest.add_member(:stopping_condition, Shapes::ShapeRef.new(shape: StoppingCondition, required: true, location_name: "StoppingCondition"))
1944
1951
  CreateCompilationJobRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
1945
1952
  CreateCompilationJobRequest.struct_class = Types::CreateCompilationJobRequest
@@ -2770,6 +2777,7 @@ module Aws::SageMaker
2770
2777
  DescribeCompilationJobResponse.add_member(:compilation_start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CompilationStartTime"))
2771
2778
  DescribeCompilationJobResponse.add_member(:compilation_end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CompilationEndTime"))
2772
2779
  DescribeCompilationJobResponse.add_member(:stopping_condition, Shapes::ShapeRef.new(shape: StoppingCondition, required: true, location_name: "StoppingCondition"))
2780
+ DescribeCompilationJobResponse.add_member(:inference_image, Shapes::ShapeRef.new(shape: InferenceImage, location_name: "InferenceImage"))
2773
2781
  DescribeCompilationJobResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: CreationTime, required: true, location_name: "CreationTime"))
2774
2782
  DescribeCompilationJobResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: LastModifiedTime, required: true, location_name: "LastModifiedTime"))
2775
2783
  DescribeCompilationJobResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: FailureReason, required: true, location_name: "FailureReason"))
@@ -2778,6 +2786,7 @@ module Aws::SageMaker
2778
2786
  DescribeCompilationJobResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "RoleArn"))
2779
2787
  DescribeCompilationJobResponse.add_member(:input_config, Shapes::ShapeRef.new(shape: InputConfig, required: true, location_name: "InputConfig"))
2780
2788
  DescribeCompilationJobResponse.add_member(:output_config, Shapes::ShapeRef.new(shape: OutputConfig, required: true, location_name: "OutputConfig"))
2789
+ DescribeCompilationJobResponse.add_member(:vpc_config, Shapes::ShapeRef.new(shape: NeoVpcConfig, location_name: "VpcConfig"))
2781
2790
  DescribeCompilationJobResponse.struct_class = Types::DescribeCompilationJobResponse
2782
2791
 
2783
2792
  DescribeContextRequest.add_member(:context_name, Shapes::ShapeRef.new(shape: ExperimentEntityName, required: true, location_name: "ContextName"))
@@ -5073,6 +5082,14 @@ module Aws::SageMaker
5073
5082
  MultiModelConfig.add_member(:model_cache_setting, Shapes::ShapeRef.new(shape: ModelCacheSetting, location_name: "ModelCacheSetting"))
5074
5083
  MultiModelConfig.struct_class = Types::MultiModelConfig
5075
5084
 
5085
+ NeoVpcConfig.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: NeoVpcSecurityGroupIds, required: true, location_name: "SecurityGroupIds"))
5086
+ NeoVpcConfig.add_member(:subnets, Shapes::ShapeRef.new(shape: NeoVpcSubnets, required: true, location_name: "Subnets"))
5087
+ NeoVpcConfig.struct_class = Types::NeoVpcConfig
5088
+
5089
+ NeoVpcSecurityGroupIds.member = Shapes::ShapeRef.new(shape: NeoVpcSecurityGroupId)
5090
+
5091
+ NeoVpcSubnets.member = Shapes::ShapeRef.new(shape: NeoVpcSubnetId)
5092
+
5076
5093
  NestedFilters.add_member(:nested_property_name, Shapes::ShapeRef.new(shape: ResourcePropertyName, required: true, location_name: "NestedPropertyName"))
5077
5094
  NestedFilters.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, required: true, location_name: "Filters"))
5078
5095
  NestedFilters.struct_class = Types::NestedFilters
@@ -4051,7 +4051,7 @@ module Aws::SageMaker
4051
4051
  # },
4052
4052
  # output_config: { # required
4053
4053
  # s3_output_location: "S3Uri", # required
4054
- # target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, ml_eia2, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv22, x86_win32, x86_win64, coreml, jacinto_tda4vm
4054
+ # target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, ml_eia2, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv22, amba_cv25, x86_win32, x86_win64, coreml, jacinto_tda4vm
4055
4055
  # target_platform: {
4056
4056
  # os: "ANDROID", # required, accepts ANDROID, LINUX
4057
4057
  # arch: "X86_64", # required, accepts X86_64, X86, ARM64, ARM_EABI, ARM_EABIHF
@@ -4060,6 +4060,10 @@ module Aws::SageMaker
4060
4060
  # compiler_options: "CompilerOptions",
4061
4061
  # kms_key_id: "KmsKeyId",
4062
4062
  # },
4063
+ # vpc_config: {
4064
+ # security_group_ids: ["NeoVpcSecurityGroupId"], # required
4065
+ # subnets: ["NeoVpcSubnetId"], # required
4066
+ # },
4063
4067
  # stopping_condition: { # required
4064
4068
  # max_runtime_in_seconds: 1,
4065
4069
  # max_wait_time_in_seconds: 1,
@@ -4112,6 +4116,17 @@ module Aws::SageMaker
4112
4116
  # model and the target device the model runs on.
4113
4117
  # @return [Types::OutputConfig]
4114
4118
  #
4119
+ # @!attribute [rw] vpc_config
4120
+ # A VpcConfig object that specifies the VPC that you want your
4121
+ # compilation job to connect to. Control access to your models by
4122
+ # configuring the VPC. For more information, see [Protect Compilation
4123
+ # Jobs by Using an Amazon Virtual Private Cloud][1].
4124
+ #
4125
+ #
4126
+ #
4127
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/neo-vpc.html
4128
+ # @return [Types::NeoVpcConfig]
4129
+ #
4115
4130
  # @!attribute [rw] stopping_condition
4116
4131
  # Specifies a limit to how long a model compilation job can run. When
4117
4132
  # the job reaches the time limit, Amazon SageMaker ends the
@@ -4135,6 +4150,7 @@ module Aws::SageMaker
4135
4150
  :role_arn,
4136
4151
  :input_config,
4137
4152
  :output_config,
4153
+ :vpc_config,
4138
4154
  :stopping_condition,
4139
4155
  :tags)
4140
4156
  SENSITIVE = []
@@ -11215,6 +11231,9 @@ module Aws::SageMaker
11215
11231
  # compilation job. Use this API to cap model training costs.
11216
11232
  # @return [Types::StoppingCondition]
11217
11233
  #
11234
+ # @!attribute [rw] inference_image
11235
+ # @return [String]
11236
+ #
11218
11237
  # @!attribute [rw] creation_time
11219
11238
  # The time that the model compilation job was created.
11220
11239
  # @return [Time]
@@ -11254,6 +11273,17 @@ module Aws::SageMaker
11254
11273
  # target device that the model runs on.
11255
11274
  # @return [Types::OutputConfig]
11256
11275
  #
11276
+ # @!attribute [rw] vpc_config
11277
+ # A VpcConfig object that specifies the VPC that you want your
11278
+ # compilation job to connect to. Control access to your models by
11279
+ # configuring the VPC. For more information, see [Protect Compilation
11280
+ # Jobs by Using an Amazon Virtual Private Cloud][1].
11281
+ #
11282
+ #
11283
+ #
11284
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/neo-vpc.html
11285
+ # @return [Types::NeoVpcConfig]
11286
+ #
11257
11287
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeCompilationJobResponse AWS API Documentation
11258
11288
  #
11259
11289
  class DescribeCompilationJobResponse < Struct.new(
@@ -11263,6 +11293,7 @@ module Aws::SageMaker
11263
11293
  :compilation_start_time,
11264
11294
  :compilation_end_time,
11265
11295
  :stopping_condition,
11296
+ :inference_image,
11266
11297
  :creation_time,
11267
11298
  :last_modified_time,
11268
11299
  :failure_reason,
@@ -11270,7 +11301,8 @@ module Aws::SageMaker
11270
11301
  :model_digests,
11271
11302
  :role_arn,
11272
11303
  :input_config,
11273
- :output_config)
11304
+ :output_config,
11305
+ :vpc_config)
11274
11306
  SENSITIVE = []
11275
11307
  include Aws::Structure
11276
11308
  end
@@ -26823,6 +26855,29 @@ module Aws::SageMaker
26823
26855
  include Aws::Structure
26824
26856
  end
26825
26857
 
26858
+ # @note When making an API call, you may pass NeoVpcConfig
26859
+ # data as a hash:
26860
+ #
26861
+ # {
26862
+ # security_group_ids: ["NeoVpcSecurityGroupId"], # required
26863
+ # subnets: ["NeoVpcSubnetId"], # required
26864
+ # }
26865
+ #
26866
+ # @!attribute [rw] security_group_ids
26867
+ # @return [Array<String>]
26868
+ #
26869
+ # @!attribute [rw] subnets
26870
+ # @return [Array<String>]
26871
+ #
26872
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/NeoVpcConfig AWS API Documentation
26873
+ #
26874
+ class NeoVpcConfig < Struct.new(
26875
+ :security_group_ids,
26876
+ :subnets)
26877
+ SENSITIVE = []
26878
+ include Aws::Structure
26879
+ end
26880
+
26826
26881
  # A list of nested Filter objects. A resource must satisfy the
26827
26882
  # conditions of all filters to be included in the results returned from
26828
26883
  # the Search API.
@@ -27468,7 +27523,7 @@ module Aws::SageMaker
27468
27523
  #
27469
27524
  # {
27470
27525
  # s3_output_location: "S3Uri", # required
27471
- # target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, ml_eia2, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv22, x86_win32, x86_win64, coreml, jacinto_tda4vm
27526
+ # target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, ml_eia2, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv22, amba_cv25, x86_win32, x86_win64, coreml, jacinto_tda4vm
27472
27527
  # target_platform: {
27473
27528
  # os: "ANDROID", # required, accepts ANDROID, LINUX
27474
27529
  # arch: "X86_64", # required, accepts X86_64, X86, ARM64, ARM_EABI, ARM_EABIHF
@@ -27639,10 +27694,13 @@ module Aws::SageMaker
27639
27694
  # @return [String]
27640
27695
  #
27641
27696
  # @!attribute [rw] kms_key_id
27642
- # The AWS Key Management Service (AWS KMS) key that Amazon SageMaker
27643
- # uses to encrypt data on the storage volume after compilation job. If
27644
- # you don't provide a KMS key ID, Amazon SageMaker uses the default
27645
- # KMS key for Amazon S3 for your role's account
27697
+ # The Amazon Web Services Key Management Service key (Amazon Web
27698
+ # Services KMS) that Amazon SageMaker uses to encrypt your output
27699
+ # models with Amazon S3 server-side encryption after compilation job.
27700
+ # If you don't provide a KMS key ID, Amazon SageMaker uses the
27701
+ # default KMS key for Amazon S3 for your role's account. For more
27702
+ # information, see [KMS-Managed Encryption Keys][1] in the *Amazon
27703
+ # Simple Storage Service Developer Guide.*
27646
27704
  #
27647
27705
  # The KmsKeyId can be any of the following formats:
27648
27706
  #
@@ -27655,6 +27713,10 @@ module Aws::SageMaker
27655
27713
  #
27656
27714
  # * Alias name ARN:
27657
27715
  # `arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias`
27716
+ #
27717
+ #
27718
+ #
27719
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/UsingKMSEncryption.html
27658
27720
  # @return [String]
27659
27721
  #
27660
27722
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/OutputConfig AWS API Documentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.90.0
4
+ version: 1.91.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-17 00:00:00.000000000 Z
11
+ date: 2021-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core