aws-sdk-comprehendmedical 1.17.0 → 1.22.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: b11b05d3f186f13fa09cca19271f6edd2c250d96a49b1111f1f9aac044f65dc0
4
- data.tar.gz: 050b4955cc8df51b2fef6fe1f6513810702f1fc8dd67963cec412f93f032f6b1
3
+ metadata.gz: 75bab4425e473a670ad5ef8450dbc49469140a32a3b815ad84796eaaab7182ae
4
+ data.tar.gz: f4232907a8eb84f682e29566bab4dee2fd5857f8dcb7ca068f711ffc1265cf95
5
5
  SHA512:
6
- metadata.gz: 740b0cf5b7687a1c2ecb50d288455872d578e9f7bded4138dbd998f611555f9b19abf9346e83ea6b8f3f340a70b8cb278552bd76b55a22c8fa07056e5297d2a9
7
- data.tar.gz: 1a219aa44ec6c811a6933bdf90ca485efc4f2d49adccc4ce6bac695bcb924b129dc0cd3676f30b07f1d28b11256ebe241088e3106358e1abba4506a94f245940
6
+ metadata.gz: b01f90a7618417acdeaf868631b5b7c47042040e2a09bfdf85b15352c9715e2fed5d71346f4501dae6bf349e2b661ce67a4fbefb190ac6d62acdbd24577f5d96
7
+ data.tar.gz: 32c8f58995dcc400b09038f82c72b2e209e5675c6874907a7d08503a3fd47e3869451674f8df54e2df700b38b2d13cb73f32f6bcb83118b1fdd35bd23cf234c2
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -5,6 +7,7 @@
5
7
  #
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
10
+
8
11
  require 'aws-sdk-core'
9
12
  require 'aws-sigv4'
10
13
 
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-comprehendmedical/customizations'
42
45
  #
43
46
  # See {Errors} for more information.
44
47
  #
45
- # @service
48
+ # @!group service
46
49
  module Aws::ComprehendMedical
47
50
 
48
- GEM_VERSION = '1.17.0'
51
+ GEM_VERSION = '1.22.0'
49
52
 
50
53
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
29
32
 
@@ -69,6 +72,7 @@ module Aws::ComprehendMedical
69
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
72
76
  add_plugin(Aws::Plugins::SignatureV4)
73
77
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
74
78
 
@@ -81,13 +85,28 @@ module Aws::ComprehendMedical
81
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
82
86
  # credentials.
83
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
84
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
85
103
  # from an EC2 IMDS on an EC2 instance.
86
104
  #
87
- # * `Aws::SharedCredentials` - Used for loading credentials from a
88
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
89
107
  #
90
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
91
110
  #
92
111
  # When `:credentials` are not configured directly, the following
93
112
  # locations will be searched for credentials:
@@ -97,10 +116,10 @@ module Aws::ComprehendMedical
97
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
98
117
  # * `~/.aws/credentials`
99
118
  # * `~/.aws/config`
100
- # * EC2 IMDS instance profile - When used by default, the timeouts are
101
- # very aggressive. Construct and pass an instance of
102
- # `Aws::InstanceProfileCredentails` to enable retries and extended
103
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
104
123
  #
105
124
  # @option options [required, String] :region
106
125
  # The AWS region to connect to. The configured `:region` is
@@ -161,7 +180,7 @@ module Aws::ComprehendMedical
161
180
  # @option options [String] :endpoint
162
181
  # The client endpoint is normally constructed from the `:region`
163
182
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be a valid HTTP(S) URI.
183
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
184
  #
166
185
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
186
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -545,7 +564,7 @@ module Aws::ComprehendMedical
545
564
  # resp.entities[0].attributes[0].type #=> String, one of "NAME", "DOSAGE", "ROUTE_OR_MODE", "FORM", "FREQUENCY", "DURATION", "GENERIC_NAME", "BRAND_NAME", "STRENGTH", "RATE", "ACUITY", "TEST_NAME", "TEST_VALUE", "TEST_UNITS", "PROCEDURE_NAME", "TREATMENT_NAME", "DATE", "AGE", "CONTACT_POINT", "EMAIL", "IDENTIFIER", "URL", "ADDRESS", "PROFESSION", "SYSTEM_ORGAN_SITE", "DIRECTION", "QUALITY", "QUANTITY", "TIME_EXPRESSION", "TIME_TO_MEDICATION_NAME", "TIME_TO_DX_NAME", "TIME_TO_TEST_NAME", "TIME_TO_PROCEDURE_NAME", "TIME_TO_TREATMENT_NAME"
546
565
  # resp.entities[0].attributes[0].score #=> Float
547
566
  # resp.entities[0].attributes[0].relationship_score #=> Float
548
- # resp.entities[0].attributes[0].relationship_type #=> String, one of "EVERY", "WITH_DOSAGE", "ADMINISTERED_VIA", "FOR", "NEGATIVE", "OVERLAP", "DOSAGE", "ROUTE_OR_MODE", "FORM", "FREQUENCY", "DURATION", "STRENGTH", "RATE", "ACUITY", "TEST_VALUE", "TEST_UNITS", "DIRECTION"
567
+ # resp.entities[0].attributes[0].relationship_type #=> String, one of "EVERY", "WITH_DOSAGE", "ADMINISTERED_VIA", "FOR", "NEGATIVE", "OVERLAP", "DOSAGE", "ROUTE_OR_MODE", "FORM", "FREQUENCY", "DURATION", "STRENGTH", "RATE", "ACUITY", "TEST_VALUE", "TEST_UNITS", "DIRECTION", "SYSTEM_ORGAN_SITE"
549
568
  # resp.entities[0].attributes[0].id #=> Integer
550
569
  # resp.entities[0].attributes[0].begin_offset #=> Integer
551
570
  # resp.entities[0].attributes[0].end_offset #=> Integer
@@ -559,7 +578,7 @@ module Aws::ComprehendMedical
559
578
  # resp.unmapped_attributes[0].attribute.type #=> String, one of "NAME", "DOSAGE", "ROUTE_OR_MODE", "FORM", "FREQUENCY", "DURATION", "GENERIC_NAME", "BRAND_NAME", "STRENGTH", "RATE", "ACUITY", "TEST_NAME", "TEST_VALUE", "TEST_UNITS", "PROCEDURE_NAME", "TREATMENT_NAME", "DATE", "AGE", "CONTACT_POINT", "EMAIL", "IDENTIFIER", "URL", "ADDRESS", "PROFESSION", "SYSTEM_ORGAN_SITE", "DIRECTION", "QUALITY", "QUANTITY", "TIME_EXPRESSION", "TIME_TO_MEDICATION_NAME", "TIME_TO_DX_NAME", "TIME_TO_TEST_NAME", "TIME_TO_PROCEDURE_NAME", "TIME_TO_TREATMENT_NAME"
560
579
  # resp.unmapped_attributes[0].attribute.score #=> Float
561
580
  # resp.unmapped_attributes[0].attribute.relationship_score #=> Float
562
- # resp.unmapped_attributes[0].attribute.relationship_type #=> String, one of "EVERY", "WITH_DOSAGE", "ADMINISTERED_VIA", "FOR", "NEGATIVE", "OVERLAP", "DOSAGE", "ROUTE_OR_MODE", "FORM", "FREQUENCY", "DURATION", "STRENGTH", "RATE", "ACUITY", "TEST_VALUE", "TEST_UNITS", "DIRECTION"
581
+ # resp.unmapped_attributes[0].attribute.relationship_type #=> String, one of "EVERY", "WITH_DOSAGE", "ADMINISTERED_VIA", "FOR", "NEGATIVE", "OVERLAP", "DOSAGE", "ROUTE_OR_MODE", "FORM", "FREQUENCY", "DURATION", "STRENGTH", "RATE", "ACUITY", "TEST_VALUE", "TEST_UNITS", "DIRECTION", "SYSTEM_ORGAN_SITE"
563
582
  # resp.unmapped_attributes[0].attribute.id #=> Integer
564
583
  # resp.unmapped_attributes[0].attribute.begin_offset #=> Integer
565
584
  # resp.unmapped_attributes[0].attribute.end_offset #=> Integer
@@ -629,7 +648,7 @@ module Aws::ComprehendMedical
629
648
  # resp.entities[0].attributes[0].type #=> String, one of "NAME", "DOSAGE", "ROUTE_OR_MODE", "FORM", "FREQUENCY", "DURATION", "GENERIC_NAME", "BRAND_NAME", "STRENGTH", "RATE", "ACUITY", "TEST_NAME", "TEST_VALUE", "TEST_UNITS", "PROCEDURE_NAME", "TREATMENT_NAME", "DATE", "AGE", "CONTACT_POINT", "EMAIL", "IDENTIFIER", "URL", "ADDRESS", "PROFESSION", "SYSTEM_ORGAN_SITE", "DIRECTION", "QUALITY", "QUANTITY", "TIME_EXPRESSION", "TIME_TO_MEDICATION_NAME", "TIME_TO_DX_NAME", "TIME_TO_TEST_NAME", "TIME_TO_PROCEDURE_NAME", "TIME_TO_TREATMENT_NAME"
630
649
  # resp.entities[0].attributes[0].score #=> Float
631
650
  # resp.entities[0].attributes[0].relationship_score #=> Float
632
- # resp.entities[0].attributes[0].relationship_type #=> String, one of "EVERY", "WITH_DOSAGE", "ADMINISTERED_VIA", "FOR", "NEGATIVE", "OVERLAP", "DOSAGE", "ROUTE_OR_MODE", "FORM", "FREQUENCY", "DURATION", "STRENGTH", "RATE", "ACUITY", "TEST_VALUE", "TEST_UNITS", "DIRECTION"
651
+ # resp.entities[0].attributes[0].relationship_type #=> String, one of "EVERY", "WITH_DOSAGE", "ADMINISTERED_VIA", "FOR", "NEGATIVE", "OVERLAP", "DOSAGE", "ROUTE_OR_MODE", "FORM", "FREQUENCY", "DURATION", "STRENGTH", "RATE", "ACUITY", "TEST_VALUE", "TEST_UNITS", "DIRECTION", "SYSTEM_ORGAN_SITE"
633
652
  # resp.entities[0].attributes[0].id #=> Integer
634
653
  # resp.entities[0].attributes[0].begin_offset #=> Integer
635
654
  # resp.entities[0].attributes[0].end_offset #=> Integer
@@ -643,7 +662,7 @@ module Aws::ComprehendMedical
643
662
  # resp.unmapped_attributes[0].attribute.type #=> String, one of "NAME", "DOSAGE", "ROUTE_OR_MODE", "FORM", "FREQUENCY", "DURATION", "GENERIC_NAME", "BRAND_NAME", "STRENGTH", "RATE", "ACUITY", "TEST_NAME", "TEST_VALUE", "TEST_UNITS", "PROCEDURE_NAME", "TREATMENT_NAME", "DATE", "AGE", "CONTACT_POINT", "EMAIL", "IDENTIFIER", "URL", "ADDRESS", "PROFESSION", "SYSTEM_ORGAN_SITE", "DIRECTION", "QUALITY", "QUANTITY", "TIME_EXPRESSION", "TIME_TO_MEDICATION_NAME", "TIME_TO_DX_NAME", "TIME_TO_TEST_NAME", "TIME_TO_PROCEDURE_NAME", "TIME_TO_TREATMENT_NAME"
644
663
  # resp.unmapped_attributes[0].attribute.score #=> Float
645
664
  # resp.unmapped_attributes[0].attribute.relationship_score #=> Float
646
- # resp.unmapped_attributes[0].attribute.relationship_type #=> String, one of "EVERY", "WITH_DOSAGE", "ADMINISTERED_VIA", "FOR", "NEGATIVE", "OVERLAP", "DOSAGE", "ROUTE_OR_MODE", "FORM", "FREQUENCY", "DURATION", "STRENGTH", "RATE", "ACUITY", "TEST_VALUE", "TEST_UNITS", "DIRECTION"
665
+ # resp.unmapped_attributes[0].attribute.relationship_type #=> String, one of "EVERY", "WITH_DOSAGE", "ADMINISTERED_VIA", "FOR", "NEGATIVE", "OVERLAP", "DOSAGE", "ROUTE_OR_MODE", "FORM", "FREQUENCY", "DURATION", "STRENGTH", "RATE", "ACUITY", "TEST_VALUE", "TEST_UNITS", "DIRECTION", "SYSTEM_ORGAN_SITE"
647
666
  # resp.unmapped_attributes[0].attribute.id #=> Integer
648
667
  # resp.unmapped_attributes[0].attribute.begin_offset #=> Integer
649
668
  # resp.unmapped_attributes[0].attribute.end_offset #=> Integer
@@ -703,7 +722,7 @@ module Aws::ComprehendMedical
703
722
  # resp.entities[0].attributes[0].type #=> String, one of "NAME", "DOSAGE", "ROUTE_OR_MODE", "FORM", "FREQUENCY", "DURATION", "GENERIC_NAME", "BRAND_NAME", "STRENGTH", "RATE", "ACUITY", "TEST_NAME", "TEST_VALUE", "TEST_UNITS", "PROCEDURE_NAME", "TREATMENT_NAME", "DATE", "AGE", "CONTACT_POINT", "EMAIL", "IDENTIFIER", "URL", "ADDRESS", "PROFESSION", "SYSTEM_ORGAN_SITE", "DIRECTION", "QUALITY", "QUANTITY", "TIME_EXPRESSION", "TIME_TO_MEDICATION_NAME", "TIME_TO_DX_NAME", "TIME_TO_TEST_NAME", "TIME_TO_PROCEDURE_NAME", "TIME_TO_TREATMENT_NAME"
704
723
  # resp.entities[0].attributes[0].score #=> Float
705
724
  # resp.entities[0].attributes[0].relationship_score #=> Float
706
- # resp.entities[0].attributes[0].relationship_type #=> String, one of "EVERY", "WITH_DOSAGE", "ADMINISTERED_VIA", "FOR", "NEGATIVE", "OVERLAP", "DOSAGE", "ROUTE_OR_MODE", "FORM", "FREQUENCY", "DURATION", "STRENGTH", "RATE", "ACUITY", "TEST_VALUE", "TEST_UNITS", "DIRECTION"
725
+ # resp.entities[0].attributes[0].relationship_type #=> String, one of "EVERY", "WITH_DOSAGE", "ADMINISTERED_VIA", "FOR", "NEGATIVE", "OVERLAP", "DOSAGE", "ROUTE_OR_MODE", "FORM", "FREQUENCY", "DURATION", "STRENGTH", "RATE", "ACUITY", "TEST_VALUE", "TEST_UNITS", "DIRECTION", "SYSTEM_ORGAN_SITE"
707
726
  # resp.entities[0].attributes[0].id #=> Integer
708
727
  # resp.entities[0].attributes[0].begin_offset #=> Integer
709
728
  # resp.entities[0].attributes[0].end_offset #=> Integer
@@ -1512,7 +1531,7 @@ module Aws::ComprehendMedical
1512
1531
  params: params,
1513
1532
  config: config)
1514
1533
  context[:gem_name] = 'aws-sdk-comprehendmedical'
1515
- context[:gem_version] = '1.17.0'
1534
+ context[:gem_version] = '1.22.0'
1516
1535
  Seahorse::Client::Request.new(handlers, context)
1517
1536
  end
1518
1537
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -77,6 +79,7 @@ module Aws::ComprehendMedical
77
79
  :text,
78
80
  :category,
79
81
  :traits)
82
+ SENSITIVE = []
80
83
  include Aws::Structure
81
84
  end
82
85
 
@@ -122,6 +125,7 @@ module Aws::ComprehendMedical
122
125
  :job_status,
123
126
  :submit_time_before,
124
127
  :submit_time_after)
128
+ SENSITIVE = []
125
129
  include Aws::Structure
126
130
  end
127
131
 
@@ -211,6 +215,7 @@ module Aws::ComprehendMedical
211
215
  :manifest_file_path,
212
216
  :kms_key,
213
217
  :model_version)
218
+ SENSITIVE = []
214
219
  include Aws::Structure
215
220
  end
216
221
 
@@ -231,6 +236,7 @@ module Aws::ComprehendMedical
231
236
  #
232
237
  class DescribeEntitiesDetectionV2JobRequest < Struct.new(
233
238
  :job_id)
239
+ SENSITIVE = []
234
240
  include Aws::Structure
235
241
  end
236
242
 
@@ -243,6 +249,7 @@ module Aws::ComprehendMedical
243
249
  #
244
250
  class DescribeEntitiesDetectionV2JobResponse < Struct.new(
245
251
  :comprehend_medical_async_job_properties)
252
+ SENSITIVE = []
246
253
  include Aws::Structure
247
254
  end
248
255
 
@@ -263,6 +270,7 @@ module Aws::ComprehendMedical
263
270
  #
264
271
  class DescribeICD10CMInferenceJobRequest < Struct.new(
265
272
  :job_id)
273
+ SENSITIVE = []
266
274
  include Aws::Structure
267
275
  end
268
276
 
@@ -275,6 +283,7 @@ module Aws::ComprehendMedical
275
283
  #
276
284
  class DescribeICD10CMInferenceJobResponse < Struct.new(
277
285
  :comprehend_medical_async_job_properties)
286
+ SENSITIVE = []
278
287
  include Aws::Structure
279
288
  end
280
289
 
@@ -295,6 +304,7 @@ module Aws::ComprehendMedical
295
304
  #
296
305
  class DescribePHIDetectionJobRequest < Struct.new(
297
306
  :job_id)
307
+ SENSITIVE = []
298
308
  include Aws::Structure
299
309
  end
300
310
 
@@ -307,6 +317,7 @@ module Aws::ComprehendMedical
307
317
  #
308
318
  class DescribePHIDetectionJobResponse < Struct.new(
309
319
  :comprehend_medical_async_job_properties)
320
+ SENSITIVE = []
310
321
  include Aws::Structure
311
322
  end
312
323
 
@@ -327,6 +338,7 @@ module Aws::ComprehendMedical
327
338
  #
328
339
  class DescribeRxNormInferenceJobRequest < Struct.new(
329
340
  :job_id)
341
+ SENSITIVE = []
330
342
  include Aws::Structure
331
343
  end
332
344
 
@@ -339,6 +351,7 @@ module Aws::ComprehendMedical
339
351
  #
340
352
  class DescribeRxNormInferenceJobResponse < Struct.new(
341
353
  :comprehend_medical_async_job_properties)
354
+ SENSITIVE = []
342
355
  include Aws::Structure
343
356
  end
344
357
 
@@ -359,6 +372,7 @@ module Aws::ComprehendMedical
359
372
  #
360
373
  class DetectEntitiesRequest < Struct.new(
361
374
  :text)
375
+ SENSITIVE = []
362
376
  include Aws::Structure
363
377
  end
364
378
 
@@ -395,6 +409,7 @@ module Aws::ComprehendMedical
395
409
  :unmapped_attributes,
396
410
  :pagination_token,
397
411
  :model_version)
412
+ SENSITIVE = []
398
413
  include Aws::Structure
399
414
  end
400
415
 
@@ -415,6 +430,7 @@ module Aws::ComprehendMedical
415
430
  #
416
431
  class DetectEntitiesV2Request < Struct.new(
417
432
  :text)
433
+ SENSITIVE = []
418
434
  include Aws::Structure
419
435
  end
420
436
 
@@ -449,6 +465,7 @@ module Aws::ComprehendMedical
449
465
  :unmapped_attributes,
450
466
  :pagination_token,
451
467
  :model_version)
468
+ SENSITIVE = []
452
469
  include Aws::Structure
453
470
  end
454
471
 
@@ -469,6 +486,7 @@ module Aws::ComprehendMedical
469
486
  #
470
487
  class DetectPHIRequest < Struct.new(
471
488
  :text)
489
+ SENSITIVE = []
472
490
  include Aws::Structure
473
491
  end
474
492
 
@@ -498,6 +516,7 @@ module Aws::ComprehendMedical
498
516
  :entities,
499
517
  :pagination_token,
500
518
  :model_version)
519
+ SENSITIVE = []
501
520
  include Aws::Structure
502
521
  end
503
522
 
@@ -557,6 +576,7 @@ module Aws::ComprehendMedical
557
576
  :type,
558
577
  :traits,
559
578
  :attributes)
579
+ SENSITIVE = []
560
580
  include Aws::Structure
561
581
  end
562
582
 
@@ -618,6 +638,7 @@ module Aws::ComprehendMedical
618
638
  :end_offset,
619
639
  :text,
620
640
  :traits)
641
+ SENSITIVE = []
621
642
  include Aws::Structure
622
643
  end
623
644
 
@@ -644,6 +665,7 @@ module Aws::ComprehendMedical
644
665
  :description,
645
666
  :code,
646
667
  :score)
668
+ SENSITIVE = []
647
669
  include Aws::Structure
648
670
  end
649
671
 
@@ -720,6 +742,7 @@ module Aws::ComprehendMedical
720
742
  :attributes,
721
743
  :traits,
722
744
  :icd10cm_concepts)
745
+ SENSITIVE = []
723
746
  include Aws::Structure
724
747
  end
725
748
 
@@ -740,6 +763,7 @@ module Aws::ComprehendMedical
740
763
  class ICD10CMTrait < Struct.new(
741
764
  :name,
742
765
  :score)
766
+ SENSITIVE = []
743
767
  include Aws::Structure
744
768
  end
745
769
 
@@ -759,6 +783,7 @@ module Aws::ComprehendMedical
759
783
  #
760
784
  class InferICD10CMRequest < Struct.new(
761
785
  :text)
786
+ SENSITIVE = []
762
787
  include Aws::Structure
763
788
  end
764
789
 
@@ -786,6 +811,7 @@ module Aws::ComprehendMedical
786
811
  :entities,
787
812
  :pagination_token,
788
813
  :model_version)
814
+ SENSITIVE = []
789
815
  include Aws::Structure
790
816
  end
791
817
 
@@ -805,6 +831,7 @@ module Aws::ComprehendMedical
805
831
  #
806
832
  class InferRxNormRequest < Struct.new(
807
833
  :text)
834
+ SENSITIVE = []
808
835
  include Aws::Structure
809
836
  end
810
837
 
@@ -832,6 +859,7 @@ module Aws::ComprehendMedical
832
859
  :entities,
833
860
  :pagination_token,
834
861
  :model_version)
862
+ SENSITIVE = []
835
863
  include Aws::Structure
836
864
  end
837
865
 
@@ -864,6 +892,7 @@ module Aws::ComprehendMedical
864
892
  class InputDataConfig < Struct.new(
865
893
  :s3_bucket,
866
894
  :s3_key)
895
+ SENSITIVE = []
867
896
  include Aws::Structure
868
897
  end
869
898
 
@@ -876,6 +905,7 @@ module Aws::ComprehendMedical
876
905
  #
877
906
  class InternalServerException < Struct.new(
878
907
  :message)
908
+ SENSITIVE = []
879
909
  include Aws::Structure
880
910
  end
881
911
 
@@ -889,6 +919,7 @@ module Aws::ComprehendMedical
889
919
  #
890
920
  class InvalidEncodingException < Struct.new(
891
921
  :message)
922
+ SENSITIVE = []
892
923
  include Aws::Structure
893
924
  end
894
925
 
@@ -902,6 +933,7 @@ module Aws::ComprehendMedical
902
933
  #
903
934
  class InvalidRequestException < Struct.new(
904
935
  :message)
936
+ SENSITIVE = []
905
937
  include Aws::Structure
906
938
  end
907
939
 
@@ -940,6 +972,7 @@ module Aws::ComprehendMedical
940
972
  :filter,
941
973
  :next_token,
942
974
  :max_results)
975
+ SENSITIVE = []
943
976
  include Aws::Structure
944
977
  end
945
978
 
@@ -956,6 +989,7 @@ module Aws::ComprehendMedical
956
989
  class ListEntitiesDetectionV2JobsResponse < Struct.new(
957
990
  :comprehend_medical_async_job_properties_list,
958
991
  :next_token)
992
+ SENSITIVE = []
959
993
  include Aws::Structure
960
994
  end
961
995
 
@@ -994,6 +1028,7 @@ module Aws::ComprehendMedical
994
1028
  :filter,
995
1029
  :next_token,
996
1030
  :max_results)
1031
+ SENSITIVE = []
997
1032
  include Aws::Structure
998
1033
  end
999
1034
 
@@ -1010,6 +1045,7 @@ module Aws::ComprehendMedical
1010
1045
  class ListICD10CMInferenceJobsResponse < Struct.new(
1011
1046
  :comprehend_medical_async_job_properties_list,
1012
1047
  :next_token)
1048
+ SENSITIVE = []
1013
1049
  include Aws::Structure
1014
1050
  end
1015
1051
 
@@ -1048,6 +1084,7 @@ module Aws::ComprehendMedical
1048
1084
  :filter,
1049
1085
  :next_token,
1050
1086
  :max_results)
1087
+ SENSITIVE = []
1051
1088
  include Aws::Structure
1052
1089
  end
1053
1090
 
@@ -1064,6 +1101,7 @@ module Aws::ComprehendMedical
1064
1101
  class ListPHIDetectionJobsResponse < Struct.new(
1065
1102
  :comprehend_medical_async_job_properties_list,
1066
1103
  :next_token)
1104
+ SENSITIVE = []
1067
1105
  include Aws::Structure
1068
1106
  end
1069
1107
 
@@ -1101,6 +1139,7 @@ module Aws::ComprehendMedical
1101
1139
  :filter,
1102
1140
  :next_token,
1103
1141
  :max_results)
1142
+ SENSITIVE = []
1104
1143
  include Aws::Structure
1105
1144
  end
1106
1145
 
@@ -1118,6 +1157,7 @@ module Aws::ComprehendMedical
1118
1157
  class ListRxNormInferenceJobsResponse < Struct.new(
1119
1158
  :comprehend_medical_async_job_properties_list,
1120
1159
  :next_token)
1160
+ SENSITIVE = []
1121
1161
  include Aws::Structure
1122
1162
  end
1123
1163
 
@@ -1151,6 +1191,7 @@ module Aws::ComprehendMedical
1151
1191
  class OutputDataConfig < Struct.new(
1152
1192
  :s3_bucket,
1153
1193
  :s3_key)
1194
+ SENSITIVE = []
1154
1195
  include Aws::Structure
1155
1196
  end
1156
1197
 
@@ -1164,6 +1205,7 @@ module Aws::ComprehendMedical
1164
1205
  #
1165
1206
  class ResourceNotFoundException < Struct.new(
1166
1207
  :message)
1208
+ SENSITIVE = []
1167
1209
  include Aws::Structure
1168
1210
  end
1169
1211
 
@@ -1226,6 +1268,7 @@ module Aws::ComprehendMedical
1226
1268
  :end_offset,
1227
1269
  :text,
1228
1270
  :traits)
1271
+ SENSITIVE = []
1229
1272
  include Aws::Structure
1230
1273
  end
1231
1274
 
@@ -1251,6 +1294,7 @@ module Aws::ComprehendMedical
1251
1294
  :description,
1252
1295
  :code,
1253
1296
  :score)
1297
+ SENSITIVE = []
1254
1298
  include Aws::Structure
1255
1299
  end
1256
1300
 
@@ -1326,6 +1370,7 @@ module Aws::ComprehendMedical
1326
1370
  :attributes,
1327
1371
  :traits,
1328
1372
  :rx_norm_concepts)
1373
+ SENSITIVE = []
1329
1374
  include Aws::Structure
1330
1375
  end
1331
1376
 
@@ -1347,6 +1392,7 @@ module Aws::ComprehendMedical
1347
1392
  class RxNormTrait < Struct.new(
1348
1393
  :name,
1349
1394
  :score)
1395
+ SENSITIVE = []
1350
1396
  include Aws::Structure
1351
1397
  end
1352
1398
 
@@ -1360,6 +1406,7 @@ module Aws::ComprehendMedical
1360
1406
  #
1361
1407
  class ServiceUnavailableException < Struct.new(
1362
1408
  :message)
1409
+ SENSITIVE = []
1363
1410
  include Aws::Structure
1364
1411
  end
1365
1412
 
@@ -1433,6 +1480,7 @@ module Aws::ComprehendMedical
1433
1480
  :client_request_token,
1434
1481
  :kms_key,
1435
1482
  :language_code)
1483
+ SENSITIVE = []
1436
1484
  include Aws::Structure
1437
1485
  end
1438
1486
 
@@ -1446,6 +1494,7 @@ module Aws::ComprehendMedical
1446
1494
  #
1447
1495
  class StartEntitiesDetectionV2JobResponse < Struct.new(
1448
1496
  :job_id)
1497
+ SENSITIVE = []
1449
1498
  include Aws::Structure
1450
1499
  end
1451
1500
 
@@ -1519,6 +1568,7 @@ module Aws::ComprehendMedical
1519
1568
  :client_request_token,
1520
1569
  :kms_key,
1521
1570
  :language_code)
1571
+ SENSITIVE = []
1522
1572
  include Aws::Structure
1523
1573
  end
1524
1574
 
@@ -1531,6 +1581,7 @@ module Aws::ComprehendMedical
1531
1581
  #
1532
1582
  class StartICD10CMInferenceJobResponse < Struct.new(
1533
1583
  :job_id)
1584
+ SENSITIVE = []
1534
1585
  include Aws::Structure
1535
1586
  end
1536
1587
 
@@ -1604,6 +1655,7 @@ module Aws::ComprehendMedical
1604
1655
  :client_request_token,
1605
1656
  :kms_key,
1606
1657
  :language_code)
1658
+ SENSITIVE = []
1607
1659
  include Aws::Structure
1608
1660
  end
1609
1661
 
@@ -1616,6 +1668,7 @@ module Aws::ComprehendMedical
1616
1668
  #
1617
1669
  class StartPHIDetectionJobResponse < Struct.new(
1618
1670
  :job_id)
1671
+ SENSITIVE = []
1619
1672
  include Aws::Structure
1620
1673
  end
1621
1674
 
@@ -1689,6 +1742,7 @@ module Aws::ComprehendMedical
1689
1742
  :client_request_token,
1690
1743
  :kms_key,
1691
1744
  :language_code)
1745
+ SENSITIVE = []
1692
1746
  include Aws::Structure
1693
1747
  end
1694
1748
 
@@ -1700,6 +1754,7 @@ module Aws::ComprehendMedical
1700
1754
  #
1701
1755
  class StartRxNormInferenceJobResponse < Struct.new(
1702
1756
  :job_id)
1757
+ SENSITIVE = []
1703
1758
  include Aws::Structure
1704
1759
  end
1705
1760
 
@@ -1718,6 +1773,7 @@ module Aws::ComprehendMedical
1718
1773
  #
1719
1774
  class StopEntitiesDetectionV2JobRequest < Struct.new(
1720
1775
  :job_id)
1776
+ SENSITIVE = []
1721
1777
  include Aws::Structure
1722
1778
  end
1723
1779
 
@@ -1730,6 +1786,7 @@ module Aws::ComprehendMedical
1730
1786
  #
1731
1787
  class StopEntitiesDetectionV2JobResponse < Struct.new(
1732
1788
  :job_id)
1789
+ SENSITIVE = []
1733
1790
  include Aws::Structure
1734
1791
  end
1735
1792
 
@@ -1748,6 +1805,7 @@ module Aws::ComprehendMedical
1748
1805
  #
1749
1806
  class StopICD10CMInferenceJobRequest < Struct.new(
1750
1807
  :job_id)
1808
+ SENSITIVE = []
1751
1809
  include Aws::Structure
1752
1810
  end
1753
1811
 
@@ -1760,6 +1818,7 @@ module Aws::ComprehendMedical
1760
1818
  #
1761
1819
  class StopICD10CMInferenceJobResponse < Struct.new(
1762
1820
  :job_id)
1821
+ SENSITIVE = []
1763
1822
  include Aws::Structure
1764
1823
  end
1765
1824
 
@@ -1778,6 +1837,7 @@ module Aws::ComprehendMedical
1778
1837
  #
1779
1838
  class StopPHIDetectionJobRequest < Struct.new(
1780
1839
  :job_id)
1840
+ SENSITIVE = []
1781
1841
  include Aws::Structure
1782
1842
  end
1783
1843
 
@@ -1789,6 +1849,7 @@ module Aws::ComprehendMedical
1789
1849
  #
1790
1850
  class StopPHIDetectionJobResponse < Struct.new(
1791
1851
  :job_id)
1852
+ SENSITIVE = []
1792
1853
  include Aws::Structure
1793
1854
  end
1794
1855
 
@@ -1807,6 +1868,7 @@ module Aws::ComprehendMedical
1807
1868
  #
1808
1869
  class StopRxNormInferenceJobRequest < Struct.new(
1809
1870
  :job_id)
1871
+ SENSITIVE = []
1810
1872
  include Aws::Structure
1811
1873
  end
1812
1874
 
@@ -1819,6 +1881,7 @@ module Aws::ComprehendMedical
1819
1881
  #
1820
1882
  class StopRxNormInferenceJobResponse < Struct.new(
1821
1883
  :job_id)
1884
+ SENSITIVE = []
1822
1885
  include Aws::Structure
1823
1886
  end
1824
1887
 
@@ -1833,6 +1896,7 @@ module Aws::ComprehendMedical
1833
1896
  #
1834
1897
  class TextSizeLimitExceededException < Struct.new(
1835
1898
  :message)
1899
+ SENSITIVE = []
1836
1900
  include Aws::Structure
1837
1901
  end
1838
1902
 
@@ -1847,6 +1911,7 @@ module Aws::ComprehendMedical
1847
1911
  #
1848
1912
  class TooManyRequestsException < Struct.new(
1849
1913
  :message)
1914
+ SENSITIVE = []
1850
1915
  include Aws::Structure
1851
1916
  end
1852
1917
 
@@ -1866,6 +1931,7 @@ module Aws::ComprehendMedical
1866
1931
  class Trait < Struct.new(
1867
1932
  :name,
1868
1933
  :score)
1934
+ SENSITIVE = []
1869
1935
  include Aws::Structure
1870
1936
  end
1871
1937
 
@@ -1889,6 +1955,7 @@ module Aws::ComprehendMedical
1889
1955
  class UnmappedAttribute < Struct.new(
1890
1956
  :type,
1891
1957
  :attribute)
1958
+ SENSITIVE = []
1892
1959
  include Aws::Structure
1893
1960
  end
1894
1961
 
@@ -1902,6 +1969,7 @@ module Aws::ComprehendMedical
1902
1969
  #
1903
1970
  class ValidationException < Struct.new(
1904
1971
  :message)
1972
+ SENSITIVE = []
1905
1973
  include Aws::Structure
1906
1974
  end
1907
1975
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-comprehendmedical
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.17.0
4
+ version: 1.22.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: 2020-05-28 00:00:00.000000000 Z
11
+ date: 2020-09-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.71.0
22
+ version: 3.99.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement