aws-sdk-personalize 1.13.0 → 1.18.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: 366385df0d7899098cab3a61939b22572e20453efc9aa039a85807222bdee51a
4
- data.tar.gz: e7f5448deecd704482dd8c0357796e50d760bd543d0f7b5ece832fcb0bf38613
3
+ metadata.gz: 329beaa903eee4298826fb52606c3d45ce45e9fcfa4ab7ee1b714b849e4e8a8c
4
+ data.tar.gz: 905b84f3334116074b90187a0c13cd9f27248c6ced96d5cc122322cf9b325330
5
5
  SHA512:
6
- metadata.gz: 97a29b9597b0974b380dedf461724232ec25f93df603ec6c9633dfa6d44edf64bf3bc490c81072b4b5cbc9dbbd295edffcb18a1e3766fbdf2234429465986b80
7
- data.tar.gz: dc40a08c959f6599b053a7637e7f3f59e2613db1650d491c5fb0c0749902179f7c3c199d23acef539e19899e325c447c5c73a17072fb8a185525cfe9b987f366
6
+ metadata.gz: 9f08616f6bab13d4bff9c21ac4ec9d1fd84c374126fb38d11c1407cca701d2a57f120a5796cbf4f53f89463e2d708c782a91aa2ed9ecb5ae91db12e9ff05ab9a
7
+ data.tar.gz: 32764e448f3833437a5f0869d8fcd0a0fa1ab725e9abca33d8d9350a887da4d2ccbb48ff9efd0303f4f536c79535e75f1d46bcb30dee70652474c13f5a8a1347
@@ -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-personalize/customizations'
42
45
  #
43
46
  # See {Errors} for more information.
44
47
  #
45
- # @service
48
+ # @!group service
46
49
  module Aws::Personalize
47
50
 
48
- GEM_VERSION = '1.13.0'
51
+ GEM_VERSION = '1.18.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::Personalize
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::Personalize
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::Personalize
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::Personalize
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
@@ -350,6 +369,9 @@ module Aws::Personalize
350
369
  # permissions to read and write to your input and out Amazon S3 buckets
351
370
  # respectively.
352
371
  #
372
+ # @option params [Types::BatchInferenceJobConfig] :batch_inference_job_config
373
+ # The configuration details of a batch inference job.
374
+ #
353
375
  # @return [Types::CreateBatchInferenceJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
354
376
  #
355
377
  # * {Types::CreateBatchInferenceJobResponse#batch_inference_job_arn #batch_inference_job_arn} => String
@@ -374,6 +396,11 @@ module Aws::Personalize
374
396
  # },
375
397
  # },
376
398
  # role_arn: "RoleArn", # required
399
+ # batch_inference_job_config: {
400
+ # item_exploration_config: {
401
+ # "ParameterName" => "ParameterValue",
402
+ # },
403
+ # },
377
404
  # })
378
405
  #
379
406
  # @example Response structure
@@ -450,6 +477,9 @@ module Aws::Personalize
450
477
  # Specifies the requested minimum provisioned transactions
451
478
  # (recommendations) per second that Amazon Personalize will support.
452
479
  #
480
+ # @option params [Types::CampaignConfig] :campaign_config
481
+ # The configuration details of a campaign.
482
+ #
453
483
  # @return [Types::CreateCampaignResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
454
484
  #
455
485
  # * {Types::CreateCampaignResponse#campaign_arn #campaign_arn} => String
@@ -460,6 +490,11 @@ module Aws::Personalize
460
490
  # name: "Name", # required
461
491
  # solution_version_arn: "Arn", # required
462
492
  # min_provisioned_tps: 1, # required
493
+ # campaign_config: {
494
+ # item_exploration_config: {
495
+ # "ParameterName" => "ParameterValue",
496
+ # },
497
+ # },
463
498
  # })
464
499
  #
465
500
  # @example Response structure
@@ -648,7 +683,8 @@ module Aws::Personalize
648
683
  # Amazon S3 bucket) to an Amazon Personalize dataset. To allow Amazon
649
684
  # Personalize to import the training data, you must specify an AWS
650
685
  # Identity and Access Management (IAM) role that has permission to read
651
- # from the data source.
686
+ # from the data source, as Amazon Personalize makes a copy of your data
687
+ # and processes it in an internal AWS system.
652
688
  #
653
689
  # The dataset import job replaces any previous data in the dataset.
654
690
  #
@@ -796,8 +832,12 @@ module Aws::Personalize
796
832
  req.send_request(options)
797
833
  end
798
834
 
799
- # Creates a recommendation filter. For more information, see Using
800
- # Filters with Amazon Personalize.
835
+ # Creates a recommendation filter. For more information, see [Using
836
+ # Filters with Amazon Personalize][1].
837
+ #
838
+ #
839
+ #
840
+ # [1]: https://docs.aws.amazon.com/personalize/latest/dg/filters.html
801
841
  #
802
842
  # @option params [required, String] :name
803
843
  # The name of the filter to create.
@@ -814,8 +854,12 @@ module Aws::Personalize
814
854
  #
815
855
  # Where "EVENT\_TYPE" is the type of event to filter out. To filter
816
856
  # out all items with any interactions history, set `"*"` as the
817
- # EVENT\_TYPE. For more information, see Using Filters with Amazon
818
- # Personalize.
857
+ # EVENT\_TYPE. For more information, see [Using Filters with Amazon
858
+ # Personalize][1].
859
+ #
860
+ #
861
+ #
862
+ # [1]: https://docs.aws.amazon.com/personalize/latest/dg/filters.html
819
863
  #
820
864
  # @return [Types::CreateFilterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
821
865
  #
@@ -1390,6 +1434,8 @@ module Aws::Personalize
1390
1434
  # resp.batch_inference_job.job_input.s3_data_source.kms_key_arn #=> String
1391
1435
  # resp.batch_inference_job.job_output.s3_data_destination.path #=> String
1392
1436
  # resp.batch_inference_job.job_output.s3_data_destination.kms_key_arn #=> String
1437
+ # resp.batch_inference_job.batch_inference_job_config.item_exploration_config #=> Hash
1438
+ # resp.batch_inference_job.batch_inference_job_config.item_exploration_config["ParameterName"] #=> String
1393
1439
  # resp.batch_inference_job.role_arn #=> String
1394
1440
  # resp.batch_inference_job.status #=> String
1395
1441
  # resp.batch_inference_job.creation_date_time #=> Time
@@ -1437,12 +1483,16 @@ module Aws::Personalize
1437
1483
  # resp.campaign.campaign_arn #=> String
1438
1484
  # resp.campaign.solution_version_arn #=> String
1439
1485
  # resp.campaign.min_provisioned_tps #=> Integer
1486
+ # resp.campaign.campaign_config.item_exploration_config #=> Hash
1487
+ # resp.campaign.campaign_config.item_exploration_config["ParameterName"] #=> String
1440
1488
  # resp.campaign.status #=> String
1441
1489
  # resp.campaign.failure_reason #=> String
1442
1490
  # resp.campaign.creation_date_time #=> Time
1443
1491
  # resp.campaign.last_updated_date_time #=> Time
1444
1492
  # resp.campaign.latest_campaign_update.solution_version_arn #=> String
1445
1493
  # resp.campaign.latest_campaign_update.min_provisioned_tps #=> Integer
1494
+ # resp.campaign.latest_campaign_update.campaign_config.item_exploration_config #=> Hash
1495
+ # resp.campaign.latest_campaign_update.campaign_config.item_exploration_config["ParameterName"] #=> String
1446
1496
  # resp.campaign.latest_campaign_update.status #=> String
1447
1497
  # resp.campaign.latest_campaign_update.failure_reason #=> String
1448
1498
  # resp.campaign.latest_campaign_update.creation_date_time #=> Time
@@ -2491,6 +2541,9 @@ module Aws::Personalize
2491
2541
  # Specifies the requested minimum provisioned transactions
2492
2542
  # (recommendations) per second that Amazon Personalize will support.
2493
2543
  #
2544
+ # @option params [Types::CampaignConfig] :campaign_config
2545
+ # The configuration details of a campaign.
2546
+ #
2494
2547
  # @return [Types::UpdateCampaignResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2495
2548
  #
2496
2549
  # * {Types::UpdateCampaignResponse#campaign_arn #campaign_arn} => String
@@ -2501,6 +2554,11 @@ module Aws::Personalize
2501
2554
  # campaign_arn: "Arn", # required
2502
2555
  # solution_version_arn: "Arn",
2503
2556
  # min_provisioned_tps: 1,
2557
+ # campaign_config: {
2558
+ # item_exploration_config: {
2559
+ # "ParameterName" => "ParameterValue",
2560
+ # },
2561
+ # },
2504
2562
  # })
2505
2563
  #
2506
2564
  # @example Response structure
@@ -2529,7 +2587,7 @@ module Aws::Personalize
2529
2587
  params: params,
2530
2588
  config: config)
2531
2589
  context[:gem_name] = 'aws-sdk-personalize'
2532
- context[:gem_version] = '1.13.0'
2590
+ context[:gem_version] = '1.18.0'
2533
2591
  Seahorse::Client::Request.new(handlers, context)
2534
2592
  end
2535
2593
 
@@ -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:
@@ -20,12 +22,14 @@ module Aws::Personalize
20
22
  AutoMLResult = Shapes::StructureShape.new(name: 'AutoMLResult')
21
23
  AvroSchema = Shapes::StringShape.new(name: 'AvroSchema')
22
24
  BatchInferenceJob = Shapes::StructureShape.new(name: 'BatchInferenceJob')
25
+ BatchInferenceJobConfig = Shapes::StructureShape.new(name: 'BatchInferenceJobConfig')
23
26
  BatchInferenceJobInput = Shapes::StructureShape.new(name: 'BatchInferenceJobInput')
24
27
  BatchInferenceJobOutput = Shapes::StructureShape.new(name: 'BatchInferenceJobOutput')
25
28
  BatchInferenceJobSummary = Shapes::StructureShape.new(name: 'BatchInferenceJobSummary')
26
29
  BatchInferenceJobs = Shapes::ListShape.new(name: 'BatchInferenceJobs')
27
30
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
28
31
  Campaign = Shapes::StructureShape.new(name: 'Campaign')
32
+ CampaignConfig = Shapes::StructureShape.new(name: 'CampaignConfig')
29
33
  CampaignSummary = Shapes::StructureShape.new(name: 'CampaignSummary')
30
34
  CampaignUpdateSummary = Shapes::StructureShape.new(name: 'CampaignUpdateSummary')
31
35
  Campaigns = Shapes::ListShape.new(name: 'Campaigns')
@@ -242,12 +246,16 @@ module Aws::Personalize
242
246
  BatchInferenceJob.add_member(:num_results, Shapes::ShapeRef.new(shape: NumBatchResults, location_name: "numResults"))
243
247
  BatchInferenceJob.add_member(:job_input, Shapes::ShapeRef.new(shape: BatchInferenceJobInput, location_name: "jobInput"))
244
248
  BatchInferenceJob.add_member(:job_output, Shapes::ShapeRef.new(shape: BatchInferenceJobOutput, location_name: "jobOutput"))
249
+ BatchInferenceJob.add_member(:batch_inference_job_config, Shapes::ShapeRef.new(shape: BatchInferenceJobConfig, location_name: "batchInferenceJobConfig"))
245
250
  BatchInferenceJob.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
246
251
  BatchInferenceJob.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
247
252
  BatchInferenceJob.add_member(:creation_date_time, Shapes::ShapeRef.new(shape: Date, location_name: "creationDateTime"))
248
253
  BatchInferenceJob.add_member(:last_updated_date_time, Shapes::ShapeRef.new(shape: Date, location_name: "lastUpdatedDateTime"))
249
254
  BatchInferenceJob.struct_class = Types::BatchInferenceJob
250
255
 
256
+ BatchInferenceJobConfig.add_member(:item_exploration_config, Shapes::ShapeRef.new(shape: HyperParameters, location_name: "itemExplorationConfig"))
257
+ BatchInferenceJobConfig.struct_class = Types::BatchInferenceJobConfig
258
+
251
259
  BatchInferenceJobInput.add_member(:s3_data_source, Shapes::ShapeRef.new(shape: S3DataConfig, required: true, location_name: "s3DataSource"))
252
260
  BatchInferenceJobInput.struct_class = Types::BatchInferenceJobInput
253
261
 
@@ -269,6 +277,7 @@ module Aws::Personalize
269
277
  Campaign.add_member(:campaign_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "campaignArn"))
270
278
  Campaign.add_member(:solution_version_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "solutionVersionArn"))
271
279
  Campaign.add_member(:min_provisioned_tps, Shapes::ShapeRef.new(shape: TransactionsPerSecond, location_name: "minProvisionedTPS"))
280
+ Campaign.add_member(:campaign_config, Shapes::ShapeRef.new(shape: CampaignConfig, location_name: "campaignConfig"))
272
281
  Campaign.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
273
282
  Campaign.add_member(:failure_reason, Shapes::ShapeRef.new(shape: FailureReason, location_name: "failureReason"))
274
283
  Campaign.add_member(:creation_date_time, Shapes::ShapeRef.new(shape: Date, location_name: "creationDateTime"))
@@ -276,6 +285,9 @@ module Aws::Personalize
276
285
  Campaign.add_member(:latest_campaign_update, Shapes::ShapeRef.new(shape: CampaignUpdateSummary, location_name: "latestCampaignUpdate"))
277
286
  Campaign.struct_class = Types::Campaign
278
287
 
288
+ CampaignConfig.add_member(:item_exploration_config, Shapes::ShapeRef.new(shape: HyperParameters, location_name: "itemExplorationConfig"))
289
+ CampaignConfig.struct_class = Types::CampaignConfig
290
+
279
291
  CampaignSummary.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "name"))
280
292
  CampaignSummary.add_member(:campaign_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "campaignArn"))
281
293
  CampaignSummary.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
@@ -286,6 +298,7 @@ module Aws::Personalize
286
298
 
287
299
  CampaignUpdateSummary.add_member(:solution_version_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "solutionVersionArn"))
288
300
  CampaignUpdateSummary.add_member(:min_provisioned_tps, Shapes::ShapeRef.new(shape: TransactionsPerSecond, location_name: "minProvisionedTPS"))
301
+ CampaignUpdateSummary.add_member(:campaign_config, Shapes::ShapeRef.new(shape: CampaignConfig, location_name: "campaignConfig"))
289
302
  CampaignUpdateSummary.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
290
303
  CampaignUpdateSummary.add_member(:failure_reason, Shapes::ShapeRef.new(shape: FailureReason, location_name: "failureReason"))
291
304
  CampaignUpdateSummary.add_member(:creation_date_time, Shapes::ShapeRef.new(shape: Date, location_name: "creationDateTime"))
@@ -316,6 +329,7 @@ module Aws::Personalize
316
329
  CreateBatchInferenceJobRequest.add_member(:job_input, Shapes::ShapeRef.new(shape: BatchInferenceJobInput, required: true, location_name: "jobInput"))
317
330
  CreateBatchInferenceJobRequest.add_member(:job_output, Shapes::ShapeRef.new(shape: BatchInferenceJobOutput, required: true, location_name: "jobOutput"))
318
331
  CreateBatchInferenceJobRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
332
+ CreateBatchInferenceJobRequest.add_member(:batch_inference_job_config, Shapes::ShapeRef.new(shape: BatchInferenceJobConfig, location_name: "batchInferenceJobConfig"))
319
333
  CreateBatchInferenceJobRequest.struct_class = Types::CreateBatchInferenceJobRequest
320
334
 
321
335
  CreateBatchInferenceJobResponse.add_member(:batch_inference_job_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "batchInferenceJobArn"))
@@ -324,6 +338,7 @@ module Aws::Personalize
324
338
  CreateCampaignRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
325
339
  CreateCampaignRequest.add_member(:solution_version_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "solutionVersionArn"))
326
340
  CreateCampaignRequest.add_member(:min_provisioned_tps, Shapes::ShapeRef.new(shape: TransactionsPerSecond, required: true, location_name: "minProvisionedTPS"))
341
+ CreateCampaignRequest.add_member(:campaign_config, Shapes::ShapeRef.new(shape: CampaignConfig, location_name: "campaignConfig"))
327
342
  CreateCampaignRequest.struct_class = Types::CreateCampaignRequest
328
343
 
329
344
  CreateCampaignResponse.add_member(:campaign_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "campaignArn"))
@@ -901,6 +916,7 @@ module Aws::Personalize
901
916
  UpdateCampaignRequest.add_member(:campaign_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "campaignArn"))
902
917
  UpdateCampaignRequest.add_member(:solution_version_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "solutionVersionArn"))
903
918
  UpdateCampaignRequest.add_member(:min_provisioned_tps, Shapes::ShapeRef.new(shape: TransactionsPerSecond, location_name: "minProvisionedTPS"))
919
+ UpdateCampaignRequest.add_member(:campaign_config, Shapes::ShapeRef.new(shape: CampaignConfig, location_name: "campaignConfig"))
904
920
  UpdateCampaignRequest.struct_class = Types::UpdateCampaignRequest
905
921
 
906
922
  UpdateCampaignResponse.add_member(:campaign_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "campaignArn"))
@@ -1045,6 +1061,7 @@ module Aws::Personalize
1045
1061
  o.output = Shapes::ShapeRef.new(shape: CreateSolutionVersionResponse)
1046
1062
  o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
1047
1063
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1064
+ o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
1048
1065
  o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
1049
1066
  end)
1050
1067
 
@@ -1100,6 +1117,7 @@ module Aws::Personalize
1100
1117
  o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
1101
1118
  o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
1102
1119
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1120
+ o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
1103
1121
  end)
1104
1122
 
1105
1123
  api.add_operation(:delete_schema, Seahorse::Model::Operation.new.tap do |o|
@@ -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:
@@ -67,6 +69,7 @@ module Aws::Personalize
67
69
  :role_arn,
68
70
  :creation_date_time,
69
71
  :last_updated_date_time)
72
+ SENSITIVE = []
70
73
  include Aws::Structure
71
74
  end
72
75
 
@@ -85,6 +88,7 @@ module Aws::Personalize
85
88
  class AlgorithmImage < Struct.new(
86
89
  :name,
87
90
  :docker_uri)
91
+ SENSITIVE = []
88
92
  include Aws::Structure
89
93
  end
90
94
 
@@ -114,6 +118,7 @@ module Aws::Personalize
114
118
  class AutoMLConfig < Struct.new(
115
119
  :metric_name,
116
120
  :recipe_list)
121
+ SENSITIVE = []
117
122
  include Aws::Structure
118
123
  end
119
124
 
@@ -129,6 +134,7 @@ module Aws::Personalize
129
134
  #
130
135
  class AutoMLResult < Struct.new(
131
136
  :best_recipe_arn)
137
+ SENSITIVE = []
132
138
  include Aws::Structure
133
139
  end
134
140
 
@@ -171,6 +177,11 @@ module Aws::Personalize
171
177
  # batch inference job.
172
178
  # @return [Types::BatchInferenceJobOutput]
173
179
  #
180
+ # @!attribute [rw] batch_inference_job_config
181
+ # A string to string map of the configuration details of a batch
182
+ # inference job.
183
+ # @return [Types::BatchInferenceJobConfig]
184
+ #
174
185
  # @!attribute [rw] role_arn
175
186
  # The ARN of the Amazon Identity and Access Management (IAM) role that
176
187
  # requested the batch inference job.
@@ -208,10 +219,37 @@ module Aws::Personalize
208
219
  :num_results,
209
220
  :job_input,
210
221
  :job_output,
222
+ :batch_inference_job_config,
211
223
  :role_arn,
212
224
  :status,
213
225
  :creation_date_time,
214
226
  :last_updated_date_time)
227
+ SENSITIVE = []
228
+ include Aws::Structure
229
+ end
230
+
231
+ # The configuration details of a batch inference job.
232
+ #
233
+ # @note When making an API call, you may pass BatchInferenceJobConfig
234
+ # data as a hash:
235
+ #
236
+ # {
237
+ # item_exploration_config: {
238
+ # "ParameterName" => "ParameterValue",
239
+ # },
240
+ # }
241
+ #
242
+ # @!attribute [rw] item_exploration_config
243
+ # A string to string map specifying the inference hyperparameters you
244
+ # wish to use for hyperparameter optimization. See
245
+ # customizing-solution-config-hpo.
246
+ # @return [Hash<String,String>]
247
+ #
248
+ # @see http://docs.aws.amazon.com/goto/WebAPI/personalize-2018-05-22/BatchInferenceJobConfig AWS API Documentation
249
+ #
250
+ class BatchInferenceJobConfig < Struct.new(
251
+ :item_exploration_config)
252
+ SENSITIVE = []
215
253
  include Aws::Structure
216
254
  end
217
255
 
@@ -237,6 +275,7 @@ module Aws::Personalize
237
275
  #
238
276
  class BatchInferenceJobInput < Struct.new(
239
277
  :s3_data_source)
278
+ SENSITIVE = []
240
279
  include Aws::Structure
241
280
  end
242
281
 
@@ -261,6 +300,7 @@ module Aws::Personalize
261
300
  #
262
301
  class BatchInferenceJobOutput < Struct.new(
263
302
  :s3_data_destination)
303
+ SENSITIVE = []
264
304
  include Aws::Structure
265
305
  end
266
306
 
@@ -315,6 +355,7 @@ module Aws::Personalize
315
355
  :last_updated_date_time,
316
356
  :failure_reason,
317
357
  :solution_version_arn)
358
+ SENSITIVE = []
318
359
  include Aws::Structure
319
360
  end
320
361
 
@@ -339,6 +380,10 @@ module Aws::Personalize
339
380
  # (recommendations) per second.
340
381
  # @return [Integer]
341
382
  #
383
+ # @!attribute [rw] campaign_config
384
+ # The configuration details of a campaign.
385
+ # @return [Types::CampaignConfig]
386
+ #
342
387
  # @!attribute [rw] status
343
388
  # The status of the campaign.
344
389
  #
@@ -375,11 +420,38 @@ module Aws::Personalize
375
420
  :campaign_arn,
376
421
  :solution_version_arn,
377
422
  :min_provisioned_tps,
423
+ :campaign_config,
378
424
  :status,
379
425
  :failure_reason,
380
426
  :creation_date_time,
381
427
  :last_updated_date_time,
382
428
  :latest_campaign_update)
429
+ SENSITIVE = []
430
+ include Aws::Structure
431
+ end
432
+
433
+ # The configuration details of a campaign.
434
+ #
435
+ # @note When making an API call, you may pass CampaignConfig
436
+ # data as a hash:
437
+ #
438
+ # {
439
+ # item_exploration_config: {
440
+ # "ParameterName" => "ParameterValue",
441
+ # },
442
+ # }
443
+ #
444
+ # @!attribute [rw] item_exploration_config
445
+ # A string to string map specifying the inference hyperparameters you
446
+ # wish to use for hyperparameter optimization. See
447
+ # customizing-solution-config-hpo.
448
+ # @return [Hash<String,String>]
449
+ #
450
+ # @see http://docs.aws.amazon.com/goto/WebAPI/personalize-2018-05-22/CampaignConfig AWS API Documentation
451
+ #
452
+ class CampaignConfig < Struct.new(
453
+ :item_exploration_config)
454
+ SENSITIVE = []
383
455
  include Aws::Structure
384
456
  end
385
457
 
@@ -426,6 +498,7 @@ module Aws::Personalize
426
498
  :creation_date_time,
427
499
  :last_updated_date_time,
428
500
  :failure_reason)
501
+ SENSITIVE = []
429
502
  include Aws::Structure
430
503
  end
431
504
 
@@ -441,6 +514,10 @@ module Aws::Personalize
441
514
  # (recommendations) per second that Amazon Personalize will support.
442
515
  # @return [Integer]
443
516
  #
517
+ # @!attribute [rw] campaign_config
518
+ # The configuration details of a campaign.
519
+ # @return [Types::CampaignConfig]
520
+ #
444
521
  # @!attribute [rw] status
445
522
  # The status of the campaign update.
446
523
  #
@@ -471,10 +548,12 @@ module Aws::Personalize
471
548
  class CampaignUpdateSummary < Struct.new(
472
549
  :solution_version_arn,
473
550
  :min_provisioned_tps,
551
+ :campaign_config,
474
552
  :status,
475
553
  :failure_reason,
476
554
  :creation_date_time,
477
555
  :last_updated_date_time)
556
+ SENSITIVE = []
478
557
  include Aws::Structure
479
558
  end
480
559
 
@@ -501,6 +580,7 @@ module Aws::Personalize
501
580
  class CategoricalHyperParameterRange < Struct.new(
502
581
  :name,
503
582
  :values)
583
+ SENSITIVE = []
504
584
  include Aws::Structure
505
585
  end
506
586
 
@@ -533,6 +613,7 @@ module Aws::Personalize
533
613
  :name,
534
614
  :min_value,
535
615
  :max_value)
616
+ SENSITIVE = []
536
617
  include Aws::Structure
537
618
  end
538
619
 
@@ -557,6 +638,11 @@ module Aws::Personalize
557
638
  # },
558
639
  # },
559
640
  # role_arn: "RoleArn", # required
641
+ # batch_inference_job_config: {
642
+ # item_exploration_config: {
643
+ # "ParameterName" => "ParameterValue",
644
+ # },
645
+ # },
560
646
  # }
561
647
  #
562
648
  # @!attribute [rw] job_name
@@ -594,6 +680,10 @@ module Aws::Personalize
594
680
  # buckets respectively.
595
681
  # @return [String]
596
682
  #
683
+ # @!attribute [rw] batch_inference_job_config
684
+ # The configuration details of a batch inference job.
685
+ # @return [Types::BatchInferenceJobConfig]
686
+ #
597
687
  # @see http://docs.aws.amazon.com/goto/WebAPI/personalize-2018-05-22/CreateBatchInferenceJobRequest AWS API Documentation
598
688
  #
599
689
  class CreateBatchInferenceJobRequest < Struct.new(
@@ -603,7 +693,9 @@ module Aws::Personalize
603
693
  :num_results,
604
694
  :job_input,
605
695
  :job_output,
606
- :role_arn)
696
+ :role_arn,
697
+ :batch_inference_job_config)
698
+ SENSITIVE = []
607
699
  include Aws::Structure
608
700
  end
609
701
 
@@ -615,6 +707,7 @@ module Aws::Personalize
615
707
  #
616
708
  class CreateBatchInferenceJobResponse < Struct.new(
617
709
  :batch_inference_job_arn)
710
+ SENSITIVE = []
618
711
  include Aws::Structure
619
712
  end
620
713
 
@@ -625,6 +718,11 @@ module Aws::Personalize
625
718
  # name: "Name", # required
626
719
  # solution_version_arn: "Arn", # required
627
720
  # min_provisioned_tps: 1, # required
721
+ # campaign_config: {
722
+ # item_exploration_config: {
723
+ # "ParameterName" => "ParameterValue",
724
+ # },
725
+ # },
628
726
  # }
629
727
  #
630
728
  # @!attribute [rw] name
@@ -641,12 +739,18 @@ module Aws::Personalize
641
739
  # (recommendations) per second that Amazon Personalize will support.
642
740
  # @return [Integer]
643
741
  #
742
+ # @!attribute [rw] campaign_config
743
+ # The configuration details of a campaign.
744
+ # @return [Types::CampaignConfig]
745
+ #
644
746
  # @see http://docs.aws.amazon.com/goto/WebAPI/personalize-2018-05-22/CreateCampaignRequest AWS API Documentation
645
747
  #
646
748
  class CreateCampaignRequest < Struct.new(
647
749
  :name,
648
750
  :solution_version_arn,
649
- :min_provisioned_tps)
751
+ :min_provisioned_tps,
752
+ :campaign_config)
753
+ SENSITIVE = []
650
754
  include Aws::Structure
651
755
  end
652
756
 
@@ -658,6 +762,7 @@ module Aws::Personalize
658
762
  #
659
763
  class CreateCampaignResponse < Struct.new(
660
764
  :campaign_arn)
765
+ SENSITIVE = []
661
766
  include Aws::Structure
662
767
  end
663
768
 
@@ -690,6 +795,7 @@ module Aws::Personalize
690
795
  :name,
691
796
  :role_arn,
692
797
  :kms_key_arn)
798
+ SENSITIVE = []
693
799
  include Aws::Structure
694
800
  end
695
801
 
@@ -701,6 +807,7 @@ module Aws::Personalize
701
807
  #
702
808
  class CreateDatasetGroupResponse < Struct.new(
703
809
  :dataset_group_arn)
810
+ SENSITIVE = []
704
811
  include Aws::Structure
705
812
  end
706
813
 
@@ -740,6 +847,7 @@ module Aws::Personalize
740
847
  :dataset_arn,
741
848
  :data_source,
742
849
  :role_arn)
850
+ SENSITIVE = []
743
851
  include Aws::Structure
744
852
  end
745
853
 
@@ -751,6 +859,7 @@ module Aws::Personalize
751
859
  #
752
860
  class CreateDatasetImportJobResponse < Struct.new(
753
861
  :dataset_import_job_arn)
862
+ SENSITIVE = []
754
863
  include Aws::Structure
755
864
  end
756
865
 
@@ -797,6 +906,7 @@ module Aws::Personalize
797
906
  :schema_arn,
798
907
  :dataset_group_arn,
799
908
  :dataset_type)
909
+ SENSITIVE = []
800
910
  include Aws::Structure
801
911
  end
802
912
 
@@ -808,6 +918,7 @@ module Aws::Personalize
808
918
  #
809
919
  class CreateDatasetResponse < Struct.new(
810
920
  :dataset_arn)
921
+ SENSITIVE = []
811
922
  include Aws::Structure
812
923
  end
813
924
 
@@ -833,6 +944,7 @@ module Aws::Personalize
833
944
  class CreateEventTrackerRequest < Struct.new(
834
945
  :name,
835
946
  :dataset_group_arn)
947
+ SENSITIVE = []
836
948
  include Aws::Structure
837
949
  end
838
950
 
@@ -854,6 +966,7 @@ module Aws::Personalize
854
966
  class CreateEventTrackerResponse < Struct.new(
855
967
  :event_tracker_arn,
856
968
  :tracking_id)
969
+ SENSITIVE = []
857
970
  include Aws::Structure
858
971
  end
859
972
 
@@ -883,8 +996,12 @@ module Aws::Personalize
883
996
  #
884
997
  # Where "EVENT\_TYPE" is the type of event to filter out. To filter
885
998
  # out all items with any interactions history, set `"*"` as the
886
- # EVENT\_TYPE. For more information, see Using Filters with Amazon
887
- # Personalize.
999
+ # EVENT\_TYPE. For more information, see [Using Filters with Amazon
1000
+ # Personalize][1].
1001
+ #
1002
+ #
1003
+ #
1004
+ # [1]: https://docs.aws.amazon.com/personalize/latest/dg/filters.html
888
1005
  # @return [String]
889
1006
  #
890
1007
  # @see http://docs.aws.amazon.com/goto/WebAPI/personalize-2018-05-22/CreateFilterRequest AWS API Documentation
@@ -893,6 +1010,7 @@ module Aws::Personalize
893
1010
  :name,
894
1011
  :dataset_group_arn,
895
1012
  :filter_expression)
1013
+ SENSITIVE = [:filter_expression]
896
1014
  include Aws::Structure
897
1015
  end
898
1016
 
@@ -904,6 +1022,7 @@ module Aws::Personalize
904
1022
  #
905
1023
  class CreateFilterResponse < Struct.new(
906
1024
  :filter_arn)
1025
+ SENSITIVE = []
907
1026
  include Aws::Structure
908
1027
  end
909
1028
 
@@ -928,6 +1047,7 @@ module Aws::Personalize
928
1047
  class CreateSchemaRequest < Struct.new(
929
1048
  :name,
930
1049
  :schema)
1050
+ SENSITIVE = []
931
1051
  include Aws::Structure
932
1052
  end
933
1053
 
@@ -939,6 +1059,7 @@ module Aws::Personalize
939
1059
  #
940
1060
  class CreateSchemaResponse < Struct.new(
941
1061
  :schema_arn)
1062
+ SENSITIVE = []
942
1063
  include Aws::Structure
943
1064
  end
944
1065
 
@@ -1056,6 +1177,7 @@ module Aws::Personalize
1056
1177
  :dataset_group_arn,
1057
1178
  :event_type,
1058
1179
  :solution_config)
1180
+ SENSITIVE = []
1059
1181
  include Aws::Structure
1060
1182
  end
1061
1183
 
@@ -1067,6 +1189,7 @@ module Aws::Personalize
1067
1189
  #
1068
1190
  class CreateSolutionResponse < Struct.new(
1069
1191
  :solution_arn)
1192
+ SENSITIVE = []
1070
1193
  include Aws::Structure
1071
1194
  end
1072
1195
 
@@ -1103,6 +1226,7 @@ module Aws::Personalize
1103
1226
  class CreateSolutionVersionRequest < Struct.new(
1104
1227
  :solution_arn,
1105
1228
  :training_mode)
1229
+ SENSITIVE = []
1106
1230
  include Aws::Structure
1107
1231
  end
1108
1232
 
@@ -1114,6 +1238,7 @@ module Aws::Personalize
1114
1238
  #
1115
1239
  class CreateSolutionVersionResponse < Struct.new(
1116
1240
  :solution_version_arn)
1241
+ SENSITIVE = []
1117
1242
  include Aws::Structure
1118
1243
  end
1119
1244
 
@@ -1138,6 +1263,7 @@ module Aws::Personalize
1138
1263
  #
1139
1264
  class DataSource < Struct.new(
1140
1265
  :data_location)
1266
+ SENSITIVE = []
1141
1267
  include Aws::Structure
1142
1268
  end
1143
1269
 
@@ -1200,6 +1326,7 @@ module Aws::Personalize
1200
1326
  :status,
1201
1327
  :creation_date_time,
1202
1328
  :last_updated_date_time)
1329
+ SENSITIVE = []
1203
1330
  include Aws::Structure
1204
1331
  end
1205
1332
 
@@ -1265,6 +1392,7 @@ module Aws::Personalize
1265
1392
  :creation_date_time,
1266
1393
  :last_updated_date_time,
1267
1394
  :failure_reason)
1395
+ SENSITIVE = []
1268
1396
  include Aws::Structure
1269
1397
  end
1270
1398
 
@@ -1312,6 +1440,7 @@ module Aws::Personalize
1312
1440
  :creation_date_time,
1313
1441
  :last_updated_date_time,
1314
1442
  :failure_reason)
1443
+ SENSITIVE = []
1315
1444
  include Aws::Structure
1316
1445
  end
1317
1446
 
@@ -1383,6 +1512,7 @@ module Aws::Personalize
1383
1512
  :creation_date_time,
1384
1513
  :last_updated_date_time,
1385
1514
  :failure_reason)
1515
+ SENSITIVE = []
1386
1516
  include Aws::Structure
1387
1517
  end
1388
1518
 
@@ -1430,6 +1560,7 @@ module Aws::Personalize
1430
1560
  :creation_date_time,
1431
1561
  :last_updated_date_time,
1432
1562
  :failure_reason)
1563
+ SENSITIVE = []
1433
1564
  include Aws::Structure
1434
1565
  end
1435
1566
 
@@ -1464,6 +1595,7 @@ module Aws::Personalize
1464
1595
  :schema,
1465
1596
  :creation_date_time,
1466
1597
  :last_updated_date_time)
1598
+ SENSITIVE = []
1467
1599
  include Aws::Structure
1468
1600
  end
1469
1601
 
@@ -1493,6 +1625,7 @@ module Aws::Personalize
1493
1625
  :schema_arn,
1494
1626
  :creation_date_time,
1495
1627
  :last_updated_date_time)
1628
+ SENSITIVE = []
1496
1629
  include Aws::Structure
1497
1630
  end
1498
1631
 
@@ -1547,6 +1680,7 @@ module Aws::Personalize
1547
1680
  :status,
1548
1681
  :creation_date_time,
1549
1682
  :last_updated_date_time)
1683
+ SENSITIVE = []
1550
1684
  include Aws::Structure
1551
1685
  end
1552
1686
 
@@ -1573,6 +1707,7 @@ module Aws::Personalize
1573
1707
  :name,
1574
1708
  :values,
1575
1709
  :is_tunable)
1710
+ SENSITIVE = []
1576
1711
  include Aws::Structure
1577
1712
  end
1578
1713
 
@@ -1603,6 +1738,7 @@ module Aws::Personalize
1603
1738
  :min_value,
1604
1739
  :max_value,
1605
1740
  :is_tunable)
1741
+ SENSITIVE = []
1606
1742
  include Aws::Structure
1607
1743
  end
1608
1744
 
@@ -1627,6 +1763,7 @@ module Aws::Personalize
1627
1763
  :integer_hyper_parameter_ranges,
1628
1764
  :continuous_hyper_parameter_ranges,
1629
1765
  :categorical_hyper_parameter_ranges)
1766
+ SENSITIVE = []
1630
1767
  include Aws::Structure
1631
1768
  end
1632
1769
 
@@ -1658,6 +1795,7 @@ module Aws::Personalize
1658
1795
  :min_value,
1659
1796
  :max_value,
1660
1797
  :is_tunable)
1798
+ SENSITIVE = []
1661
1799
  include Aws::Structure
1662
1800
  end
1663
1801
 
@@ -1676,6 +1814,7 @@ module Aws::Personalize
1676
1814
  #
1677
1815
  class DeleteCampaignRequest < Struct.new(
1678
1816
  :campaign_arn)
1817
+ SENSITIVE = []
1679
1818
  include Aws::Structure
1680
1819
  end
1681
1820
 
@@ -1694,6 +1833,7 @@ module Aws::Personalize
1694
1833
  #
1695
1834
  class DeleteDatasetGroupRequest < Struct.new(
1696
1835
  :dataset_group_arn)
1836
+ SENSITIVE = []
1697
1837
  include Aws::Structure
1698
1838
  end
1699
1839
 
@@ -1712,6 +1852,7 @@ module Aws::Personalize
1712
1852
  #
1713
1853
  class DeleteDatasetRequest < Struct.new(
1714
1854
  :dataset_arn)
1855
+ SENSITIVE = []
1715
1856
  include Aws::Structure
1716
1857
  end
1717
1858
 
@@ -1730,6 +1871,7 @@ module Aws::Personalize
1730
1871
  #
1731
1872
  class DeleteEventTrackerRequest < Struct.new(
1732
1873
  :event_tracker_arn)
1874
+ SENSITIVE = []
1733
1875
  include Aws::Structure
1734
1876
  end
1735
1877
 
@@ -1748,6 +1890,7 @@ module Aws::Personalize
1748
1890
  #
1749
1891
  class DeleteFilterRequest < Struct.new(
1750
1892
  :filter_arn)
1893
+ SENSITIVE = []
1751
1894
  include Aws::Structure
1752
1895
  end
1753
1896
 
@@ -1766,6 +1909,7 @@ module Aws::Personalize
1766
1909
  #
1767
1910
  class DeleteSchemaRequest < Struct.new(
1768
1911
  :schema_arn)
1912
+ SENSITIVE = []
1769
1913
  include Aws::Structure
1770
1914
  end
1771
1915
 
@@ -1784,6 +1928,7 @@ module Aws::Personalize
1784
1928
  #
1785
1929
  class DeleteSolutionRequest < Struct.new(
1786
1930
  :solution_arn)
1931
+ SENSITIVE = []
1787
1932
  include Aws::Structure
1788
1933
  end
1789
1934
 
@@ -1802,6 +1947,7 @@ module Aws::Personalize
1802
1947
  #
1803
1948
  class DescribeAlgorithmRequest < Struct.new(
1804
1949
  :algorithm_arn)
1950
+ SENSITIVE = []
1805
1951
  include Aws::Structure
1806
1952
  end
1807
1953
 
@@ -1813,6 +1959,7 @@ module Aws::Personalize
1813
1959
  #
1814
1960
  class DescribeAlgorithmResponse < Struct.new(
1815
1961
  :algorithm)
1962
+ SENSITIVE = []
1816
1963
  include Aws::Structure
1817
1964
  end
1818
1965
 
@@ -1831,6 +1978,7 @@ module Aws::Personalize
1831
1978
  #
1832
1979
  class DescribeBatchInferenceJobRequest < Struct.new(
1833
1980
  :batch_inference_job_arn)
1981
+ SENSITIVE = []
1834
1982
  include Aws::Structure
1835
1983
  end
1836
1984
 
@@ -1842,6 +1990,7 @@ module Aws::Personalize
1842
1990
  #
1843
1991
  class DescribeBatchInferenceJobResponse < Struct.new(
1844
1992
  :batch_inference_job)
1993
+ SENSITIVE = []
1845
1994
  include Aws::Structure
1846
1995
  end
1847
1996
 
@@ -1860,6 +2009,7 @@ module Aws::Personalize
1860
2009
  #
1861
2010
  class DescribeCampaignRequest < Struct.new(
1862
2011
  :campaign_arn)
2012
+ SENSITIVE = []
1863
2013
  include Aws::Structure
1864
2014
  end
1865
2015
 
@@ -1871,6 +2021,7 @@ module Aws::Personalize
1871
2021
  #
1872
2022
  class DescribeCampaignResponse < Struct.new(
1873
2023
  :campaign)
2024
+ SENSITIVE = []
1874
2025
  include Aws::Structure
1875
2026
  end
1876
2027
 
@@ -1889,6 +2040,7 @@ module Aws::Personalize
1889
2040
  #
1890
2041
  class DescribeDatasetGroupRequest < Struct.new(
1891
2042
  :dataset_group_arn)
2043
+ SENSITIVE = []
1892
2044
  include Aws::Structure
1893
2045
  end
1894
2046
 
@@ -1900,6 +2052,7 @@ module Aws::Personalize
1900
2052
  #
1901
2053
  class DescribeDatasetGroupResponse < Struct.new(
1902
2054
  :dataset_group)
2055
+ SENSITIVE = []
1903
2056
  include Aws::Structure
1904
2057
  end
1905
2058
 
@@ -1919,6 +2072,7 @@ module Aws::Personalize
1919
2072
  #
1920
2073
  class DescribeDatasetImportJobRequest < Struct.new(
1921
2074
  :dataset_import_job_arn)
2075
+ SENSITIVE = []
1922
2076
  include Aws::Structure
1923
2077
  end
1924
2078
 
@@ -1940,6 +2094,7 @@ module Aws::Personalize
1940
2094
  #
1941
2095
  class DescribeDatasetImportJobResponse < Struct.new(
1942
2096
  :dataset_import_job)
2097
+ SENSITIVE = []
1943
2098
  include Aws::Structure
1944
2099
  end
1945
2100
 
@@ -1958,6 +2113,7 @@ module Aws::Personalize
1958
2113
  #
1959
2114
  class DescribeDatasetRequest < Struct.new(
1960
2115
  :dataset_arn)
2116
+ SENSITIVE = []
1961
2117
  include Aws::Structure
1962
2118
  end
1963
2119
 
@@ -1969,6 +2125,7 @@ module Aws::Personalize
1969
2125
  #
1970
2126
  class DescribeDatasetResponse < Struct.new(
1971
2127
  :dataset)
2128
+ SENSITIVE = []
1972
2129
  include Aws::Structure
1973
2130
  end
1974
2131
 
@@ -1987,6 +2144,7 @@ module Aws::Personalize
1987
2144
  #
1988
2145
  class DescribeEventTrackerRequest < Struct.new(
1989
2146
  :event_tracker_arn)
2147
+ SENSITIVE = []
1990
2148
  include Aws::Structure
1991
2149
  end
1992
2150
 
@@ -1998,6 +2156,7 @@ module Aws::Personalize
1998
2156
  #
1999
2157
  class DescribeEventTrackerResponse < Struct.new(
2000
2158
  :event_tracker)
2159
+ SENSITIVE = []
2001
2160
  include Aws::Structure
2002
2161
  end
2003
2162
 
@@ -2017,6 +2176,7 @@ module Aws::Personalize
2017
2176
  #
2018
2177
  class DescribeFeatureTransformationRequest < Struct.new(
2019
2178
  :feature_transformation_arn)
2179
+ SENSITIVE = []
2020
2180
  include Aws::Structure
2021
2181
  end
2022
2182
 
@@ -2028,6 +2188,7 @@ module Aws::Personalize
2028
2188
  #
2029
2189
  class DescribeFeatureTransformationResponse < Struct.new(
2030
2190
  :feature_transformation)
2191
+ SENSITIVE = []
2031
2192
  include Aws::Structure
2032
2193
  end
2033
2194
 
@@ -2046,6 +2207,7 @@ module Aws::Personalize
2046
2207
  #
2047
2208
  class DescribeFilterRequest < Struct.new(
2048
2209
  :filter_arn)
2210
+ SENSITIVE = []
2049
2211
  include Aws::Structure
2050
2212
  end
2051
2213
 
@@ -2057,6 +2219,7 @@ module Aws::Personalize
2057
2219
  #
2058
2220
  class DescribeFilterResponse < Struct.new(
2059
2221
  :filter)
2222
+ SENSITIVE = []
2060
2223
  include Aws::Structure
2061
2224
  end
2062
2225
 
@@ -2075,6 +2238,7 @@ module Aws::Personalize
2075
2238
  #
2076
2239
  class DescribeRecipeRequest < Struct.new(
2077
2240
  :recipe_arn)
2241
+ SENSITIVE = []
2078
2242
  include Aws::Structure
2079
2243
  end
2080
2244
 
@@ -2086,6 +2250,7 @@ module Aws::Personalize
2086
2250
  #
2087
2251
  class DescribeRecipeResponse < Struct.new(
2088
2252
  :recipe)
2253
+ SENSITIVE = []
2089
2254
  include Aws::Structure
2090
2255
  end
2091
2256
 
@@ -2104,6 +2269,7 @@ module Aws::Personalize
2104
2269
  #
2105
2270
  class DescribeSchemaRequest < Struct.new(
2106
2271
  :schema_arn)
2272
+ SENSITIVE = []
2107
2273
  include Aws::Structure
2108
2274
  end
2109
2275
 
@@ -2115,6 +2281,7 @@ module Aws::Personalize
2115
2281
  #
2116
2282
  class DescribeSchemaResponse < Struct.new(
2117
2283
  :schema)
2284
+ SENSITIVE = []
2118
2285
  include Aws::Structure
2119
2286
  end
2120
2287
 
@@ -2133,6 +2300,7 @@ module Aws::Personalize
2133
2300
  #
2134
2301
  class DescribeSolutionRequest < Struct.new(
2135
2302
  :solution_arn)
2303
+ SENSITIVE = []
2136
2304
  include Aws::Structure
2137
2305
  end
2138
2306
 
@@ -2144,6 +2312,7 @@ module Aws::Personalize
2144
2312
  #
2145
2313
  class DescribeSolutionResponse < Struct.new(
2146
2314
  :solution)
2315
+ SENSITIVE = []
2147
2316
  include Aws::Structure
2148
2317
  end
2149
2318
 
@@ -2162,6 +2331,7 @@ module Aws::Personalize
2162
2331
  #
2163
2332
  class DescribeSolutionVersionRequest < Struct.new(
2164
2333
  :solution_version_arn)
2334
+ SENSITIVE = []
2165
2335
  include Aws::Structure
2166
2336
  end
2167
2337
 
@@ -2173,6 +2343,7 @@ module Aws::Personalize
2173
2343
  #
2174
2344
  class DescribeSolutionVersionResponse < Struct.new(
2175
2345
  :solution_version)
2346
+ SENSITIVE = []
2176
2347
  include Aws::Structure
2177
2348
  end
2178
2349
 
@@ -2236,6 +2407,7 @@ module Aws::Personalize
2236
2407
  :status,
2237
2408
  :creation_date_time,
2238
2409
  :last_updated_date_time)
2410
+ SENSITIVE = []
2239
2411
  include Aws::Structure
2240
2412
  end
2241
2413
 
@@ -2278,6 +2450,7 @@ module Aws::Personalize
2278
2450
  :status,
2279
2451
  :creation_date_time,
2280
2452
  :last_updated_date_time)
2453
+ SENSITIVE = []
2281
2454
  include Aws::Structure
2282
2455
  end
2283
2456
 
@@ -2327,6 +2500,7 @@ module Aws::Personalize
2327
2500
  :creation_date_time,
2328
2501
  :last_updated_date_time,
2329
2502
  :status)
2503
+ SENSITIVE = []
2330
2504
  include Aws::Structure
2331
2505
  end
2332
2506
 
@@ -2365,7 +2539,11 @@ module Aws::Personalize
2365
2539
  # `EXCLUDE itemId WHERE INTERACTIONS.event_type in ("EVENT_TYPE")`
2366
2540
  #
2367
2541
  # Where "EVENT\_TYPE" is the type of event to filter out. For more
2368
- # information, see Using Filters with Amazon Personalize.
2542
+ # information, see [Using Filters with Amazon Personalize][1].
2543
+ #
2544
+ #
2545
+ #
2546
+ # [1]: https://docs.aws.amazon.com/personalize/latest/dg/filters.html
2369
2547
  # @return [String]
2370
2548
  #
2371
2549
  # @!attribute [rw] status
@@ -2383,6 +2561,7 @@ module Aws::Personalize
2383
2561
  :failure_reason,
2384
2562
  :filter_expression,
2385
2563
  :status)
2564
+ SENSITIVE = [:filter_expression]
2386
2565
  include Aws::Structure
2387
2566
  end
2388
2567
 
@@ -2426,6 +2605,7 @@ module Aws::Personalize
2426
2605
  :dataset_group_arn,
2427
2606
  :failure_reason,
2428
2607
  :status)
2608
+ SENSITIVE = []
2429
2609
  include Aws::Structure
2430
2610
  end
2431
2611
 
@@ -2445,6 +2625,7 @@ module Aws::Personalize
2445
2625
  #
2446
2626
  class GetSolutionMetricsRequest < Struct.new(
2447
2627
  :solution_version_arn)
2628
+ SENSITIVE = []
2448
2629
  include Aws::Structure
2449
2630
  end
2450
2631
 
@@ -2461,6 +2642,7 @@ module Aws::Personalize
2461
2642
  class GetSolutionMetricsResponse < Struct.new(
2462
2643
  :solution_version_arn,
2463
2644
  :metrics)
2645
+ SENSITIVE = []
2464
2646
  include Aws::Structure
2465
2647
  end
2466
2648
 
@@ -2523,6 +2705,7 @@ module Aws::Personalize
2523
2705
  :hpo_objective,
2524
2706
  :hpo_resource_config,
2525
2707
  :algorithm_hyper_parameter_ranges)
2708
+ SENSITIVE = []
2526
2709
  include Aws::Structure
2527
2710
  end
2528
2711
 
@@ -2556,6 +2739,7 @@ module Aws::Personalize
2556
2739
  :type,
2557
2740
  :metric_name,
2558
2741
  :metric_regex)
2742
+ SENSITIVE = []
2559
2743
  include Aws::Structure
2560
2744
  end
2561
2745
 
@@ -2586,6 +2770,7 @@ module Aws::Personalize
2586
2770
  class HPOResourceConfig < Struct.new(
2587
2771
  :max_number_of_training_jobs,
2588
2772
  :max_parallel_training_jobs)
2773
+ SENSITIVE = []
2589
2774
  include Aws::Structure
2590
2775
  end
2591
2776
 
@@ -2636,6 +2821,7 @@ module Aws::Personalize
2636
2821
  :integer_hyper_parameter_ranges,
2637
2822
  :continuous_hyper_parameter_ranges,
2638
2823
  :categorical_hyper_parameter_ranges)
2824
+ SENSITIVE = []
2639
2825
  include Aws::Structure
2640
2826
  end
2641
2827
 
@@ -2668,6 +2854,7 @@ module Aws::Personalize
2668
2854
  :name,
2669
2855
  :min_value,
2670
2856
  :max_value)
2857
+ SENSITIVE = []
2671
2858
  include Aws::Structure
2672
2859
  end
2673
2860
 
@@ -2680,6 +2867,7 @@ module Aws::Personalize
2680
2867
  #
2681
2868
  class InvalidInputException < Struct.new(
2682
2869
  :message)
2870
+ SENSITIVE = []
2683
2871
  include Aws::Structure
2684
2872
  end
2685
2873
 
@@ -2692,6 +2880,7 @@ module Aws::Personalize
2692
2880
  #
2693
2881
  class InvalidNextTokenException < Struct.new(
2694
2882
  :message)
2883
+ SENSITIVE = []
2695
2884
  include Aws::Structure
2696
2885
  end
2697
2886
 
@@ -2704,6 +2893,7 @@ module Aws::Personalize
2704
2893
  #
2705
2894
  class LimitExceededException < Struct.new(
2706
2895
  :message)
2896
+ SENSITIVE = []
2707
2897
  include Aws::Structure
2708
2898
  end
2709
2899
 
@@ -2736,6 +2926,7 @@ module Aws::Personalize
2736
2926
  :solution_version_arn,
2737
2927
  :next_token,
2738
2928
  :max_results)
2929
+ SENSITIVE = []
2739
2930
  include Aws::Structure
2740
2931
  end
2741
2932
 
@@ -2753,6 +2944,7 @@ module Aws::Personalize
2753
2944
  class ListBatchInferenceJobsResponse < Struct.new(
2754
2945
  :batch_inference_jobs,
2755
2946
  :next_token)
2947
+ SENSITIVE = []
2756
2948
  include Aws::Structure
2757
2949
  end
2758
2950
 
@@ -2786,6 +2978,7 @@ module Aws::Personalize
2786
2978
  :solution_arn,
2787
2979
  :next_token,
2788
2980
  :max_results)
2981
+ SENSITIVE = []
2789
2982
  include Aws::Structure
2790
2983
  end
2791
2984
 
@@ -2802,6 +2995,7 @@ module Aws::Personalize
2802
2995
  class ListCampaignsResponse < Struct.new(
2803
2996
  :campaigns,
2804
2997
  :next_token)
2998
+ SENSITIVE = []
2805
2999
  include Aws::Structure
2806
3000
  end
2807
3001
 
@@ -2827,6 +3021,7 @@ module Aws::Personalize
2827
3021
  class ListDatasetGroupsRequest < Struct.new(
2828
3022
  :next_token,
2829
3023
  :max_results)
3024
+ SENSITIVE = []
2830
3025
  include Aws::Structure
2831
3026
  end
2832
3027
 
@@ -2843,6 +3038,7 @@ module Aws::Personalize
2843
3038
  class ListDatasetGroupsResponse < Struct.new(
2844
3039
  :dataset_groups,
2845
3040
  :next_token)
3041
+ SENSITIVE = []
2846
3042
  include Aws::Structure
2847
3043
  end
2848
3044
 
@@ -2875,6 +3071,7 @@ module Aws::Personalize
2875
3071
  :dataset_arn,
2876
3072
  :next_token,
2877
3073
  :max_results)
3074
+ SENSITIVE = []
2878
3075
  include Aws::Structure
2879
3076
  end
2880
3077
 
@@ -2892,6 +3089,7 @@ module Aws::Personalize
2892
3089
  class ListDatasetImportJobsResponse < Struct.new(
2893
3090
  :dataset_import_jobs,
2894
3091
  :next_token)
3092
+ SENSITIVE = []
2895
3093
  include Aws::Structure
2896
3094
  end
2897
3095
 
@@ -2924,6 +3122,7 @@ module Aws::Personalize
2924
3122
  :dataset_group_arn,
2925
3123
  :next_token,
2926
3124
  :max_results)
3125
+ SENSITIVE = []
2927
3126
  include Aws::Structure
2928
3127
  end
2929
3128
 
@@ -2941,6 +3140,7 @@ module Aws::Personalize
2941
3140
  class ListDatasetsResponse < Struct.new(
2942
3141
  :datasets,
2943
3142
  :next_token)
3143
+ SENSITIVE = []
2944
3144
  include Aws::Structure
2945
3145
  end
2946
3146
 
@@ -2972,6 +3172,7 @@ module Aws::Personalize
2972
3172
  :dataset_group_arn,
2973
3173
  :next_token,
2974
3174
  :max_results)
3175
+ SENSITIVE = []
2975
3176
  include Aws::Structure
2976
3177
  end
2977
3178
 
@@ -2988,6 +3189,7 @@ module Aws::Personalize
2988
3189
  class ListEventTrackersResponse < Struct.new(
2989
3190
  :event_trackers,
2990
3191
  :next_token)
3192
+ SENSITIVE = []
2991
3193
  include Aws::Structure
2992
3194
  end
2993
3195
 
@@ -3019,6 +3221,7 @@ module Aws::Personalize
3019
3221
  :dataset_group_arn,
3020
3222
  :next_token,
3021
3223
  :max_results)
3224
+ SENSITIVE = []
3022
3225
  include Aws::Structure
3023
3226
  end
3024
3227
 
@@ -3035,6 +3238,7 @@ module Aws::Personalize
3035
3238
  class ListFiltersResponse < Struct.new(
3036
3239
  :filters,
3037
3240
  :next_token)
3241
+ SENSITIVE = []
3038
3242
  include Aws::Structure
3039
3243
  end
3040
3244
 
@@ -3066,6 +3270,7 @@ module Aws::Personalize
3066
3270
  :recipe_provider,
3067
3271
  :next_token,
3068
3272
  :max_results)
3273
+ SENSITIVE = []
3069
3274
  include Aws::Structure
3070
3275
  end
3071
3276
 
@@ -3082,6 +3287,7 @@ module Aws::Personalize
3082
3287
  class ListRecipesResponse < Struct.new(
3083
3288
  :recipes,
3084
3289
  :next_token)
3290
+ SENSITIVE = []
3085
3291
  include Aws::Structure
3086
3292
  end
3087
3293
 
@@ -3107,6 +3313,7 @@ module Aws::Personalize
3107
3313
  class ListSchemasRequest < Struct.new(
3108
3314
  :next_token,
3109
3315
  :max_results)
3316
+ SENSITIVE = []
3110
3317
  include Aws::Structure
3111
3318
  end
3112
3319
 
@@ -3123,6 +3330,7 @@ module Aws::Personalize
3123
3330
  class ListSchemasResponse < Struct.new(
3124
3331
  :schemas,
3125
3332
  :next_token)
3333
+ SENSITIVE = []
3126
3334
  include Aws::Structure
3127
3335
  end
3128
3336
 
@@ -3154,6 +3362,7 @@ module Aws::Personalize
3154
3362
  :solution_arn,
3155
3363
  :next_token,
3156
3364
  :max_results)
3365
+ SENSITIVE = []
3157
3366
  include Aws::Structure
3158
3367
  end
3159
3368
 
@@ -3171,6 +3380,7 @@ module Aws::Personalize
3171
3380
  class ListSolutionVersionsResponse < Struct.new(
3172
3381
  :solution_versions,
3173
3382
  :next_token)
3383
+ SENSITIVE = []
3174
3384
  include Aws::Structure
3175
3385
  end
3176
3386
 
@@ -3202,6 +3412,7 @@ module Aws::Personalize
3202
3412
  :dataset_group_arn,
3203
3413
  :next_token,
3204
3414
  :max_results)
3415
+ SENSITIVE = []
3205
3416
  include Aws::Structure
3206
3417
  end
3207
3418
 
@@ -3218,6 +3429,7 @@ module Aws::Personalize
3218
3429
  class ListSolutionsResponse < Struct.new(
3219
3430
  :solutions,
3220
3431
  :next_token)
3432
+ SENSITIVE = []
3221
3433
  include Aws::Structure
3222
3434
  end
3223
3435
 
@@ -3280,6 +3492,7 @@ module Aws::Personalize
3280
3492
  :creation_date_time,
3281
3493
  :recipe_type,
3282
3494
  :last_updated_date_time)
3495
+ SENSITIVE = []
3283
3496
  include Aws::Structure
3284
3497
  end
3285
3498
 
@@ -3314,6 +3527,7 @@ module Aws::Personalize
3314
3527
  :status,
3315
3528
  :creation_date_time,
3316
3529
  :last_updated_date_time)
3530
+ SENSITIVE = []
3317
3531
  include Aws::Structure
3318
3532
  end
3319
3533
 
@@ -3326,6 +3540,7 @@ module Aws::Personalize
3326
3540
  #
3327
3541
  class ResourceAlreadyExistsException < Struct.new(
3328
3542
  :message)
3543
+ SENSITIVE = []
3329
3544
  include Aws::Structure
3330
3545
  end
3331
3546
 
@@ -3338,6 +3553,7 @@ module Aws::Personalize
3338
3553
  #
3339
3554
  class ResourceInUseException < Struct.new(
3340
3555
  :message)
3556
+ SENSITIVE = []
3341
3557
  include Aws::Structure
3342
3558
  end
3343
3559
 
@@ -3350,6 +3566,7 @@ module Aws::Personalize
3350
3566
  #
3351
3567
  class ResourceNotFoundException < Struct.new(
3352
3568
  :message)
3569
+ SENSITIVE = []
3353
3570
  include Aws::Structure
3354
3571
  end
3355
3572
 
@@ -3378,6 +3595,7 @@ module Aws::Personalize
3378
3595
  class S3DataConfig < Struct.new(
3379
3596
  :path,
3380
3597
  :kms_key_arn)
3598
+ SENSITIVE = []
3381
3599
  include Aws::Structure
3382
3600
  end
3383
3601
 
@@ -3466,6 +3684,7 @@ module Aws::Personalize
3466
3684
  :creation_date_time,
3467
3685
  :last_updated_date_time,
3468
3686
  :latest_solution_version)
3687
+ SENSITIVE = []
3469
3688
  include Aws::Structure
3470
3689
  end
3471
3690
 
@@ -3551,6 +3770,7 @@ module Aws::Personalize
3551
3770
  :algorithm_hyper_parameters,
3552
3771
  :feature_transformation_parameters,
3553
3772
  :auto_ml_config)
3773
+ SENSITIVE = []
3554
3774
  include Aws::Structure
3555
3775
  end
3556
3776
 
@@ -3592,6 +3812,7 @@ module Aws::Personalize
3592
3812
  :status,
3593
3813
  :creation_date_time,
3594
3814
  :last_updated_date_time)
3815
+ SENSITIVE = []
3595
3816
  include Aws::Structure
3596
3817
  end
3597
3818
 
@@ -3705,6 +3926,7 @@ module Aws::Personalize
3705
3926
  :failure_reason,
3706
3927
  :creation_date_time,
3707
3928
  :last_updated_date_time)
3929
+ SENSITIVE = []
3708
3930
  include Aws::Structure
3709
3931
  end
3710
3932
 
@@ -3748,6 +3970,7 @@ module Aws::Personalize
3748
3970
  :creation_date_time,
3749
3971
  :last_updated_date_time,
3750
3972
  :failure_reason)
3973
+ SENSITIVE = []
3751
3974
  include Aws::Structure
3752
3975
  end
3753
3976
 
@@ -3762,6 +3985,7 @@ module Aws::Personalize
3762
3985
  #
3763
3986
  class TunedHPOParams < Struct.new(
3764
3987
  :algorithm_hyper_parameters)
3988
+ SENSITIVE = []
3765
3989
  include Aws::Structure
3766
3990
  end
3767
3991
 
@@ -3772,6 +3996,11 @@ module Aws::Personalize
3772
3996
  # campaign_arn: "Arn", # required
3773
3997
  # solution_version_arn: "Arn",
3774
3998
  # min_provisioned_tps: 1,
3999
+ # campaign_config: {
4000
+ # item_exploration_config: {
4001
+ # "ParameterName" => "ParameterValue",
4002
+ # },
4003
+ # },
3775
4004
  # }
3776
4005
  #
3777
4006
  # @!attribute [rw] campaign_arn
@@ -3787,12 +4016,18 @@ module Aws::Personalize
3787
4016
  # (recommendations) per second that Amazon Personalize will support.
3788
4017
  # @return [Integer]
3789
4018
  #
4019
+ # @!attribute [rw] campaign_config
4020
+ # The configuration details of a campaign.
4021
+ # @return [Types::CampaignConfig]
4022
+ #
3790
4023
  # @see http://docs.aws.amazon.com/goto/WebAPI/personalize-2018-05-22/UpdateCampaignRequest AWS API Documentation
3791
4024
  #
3792
4025
  class UpdateCampaignRequest < Struct.new(
3793
4026
  :campaign_arn,
3794
4027
  :solution_version_arn,
3795
- :min_provisioned_tps)
4028
+ :min_provisioned_tps,
4029
+ :campaign_config)
4030
+ SENSITIVE = []
3796
4031
  include Aws::Structure
3797
4032
  end
3798
4033
 
@@ -3804,6 +4039,7 @@ module Aws::Personalize
3804
4039
  #
3805
4040
  class UpdateCampaignResponse < Struct.new(
3806
4041
  :campaign_arn)
4042
+ SENSITIVE = []
3807
4043
  include Aws::Structure
3808
4044
  end
3809
4045