aws-sdk-frauddetector 1.40.0 → 1.41.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: e0ccbf41a1c2dd7369a4493bedabd5b49b7aeb8957ac3a33f0bc386a6de53f05
4
- data.tar.gz: c4890e1ba4022f92cd6868603d3b973e262782a0fc9e1ad8dfc6d364089e2efb
3
+ metadata.gz: ad147d47eb186a02ad585439ab91f5eafd0f115489d969c7ba6f5c30e0e0cd7a
4
+ data.tar.gz: 3a4ed9341208206444b321dc6a37d3ce0622ba6b1d19a023cabb68ce649165b1
5
5
  SHA512:
6
- metadata.gz: 478e89b5942f06b49d8281bea8e0d71966b745ad414818f8d0905fc4c9e00c540db2e4d06f34d63b8bbd1dbbbc8392e7d87e68eb74cd096468d3c9adb3468704
7
- data.tar.gz: c3f31bd1062e752a656575a2f203f959447560d9d758a575ebb6d84547ec6f1d54d495924333a76cd6d9fe2b37f449f576c6f093241d89e9296ce45aaa6ba9ff
6
+ metadata.gz: 7fa0ab22cc26463feb8253a97274f810eb0553f5295bf95dd198413f1b7099517dee6e62d85fc0b44bdee672729c8ed25eec9621c8c8aae88169a25af33729e4
7
+ data.tar.gz: 81463486e8a80c53bd2fc49256c2749a3598e724b4a41779767409f7a6bad3a62c0310aedb3a468f43e151db4d40e0c7d6b42498c676feae4130d14a86638ce7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.41.0 (2023-06-05)
5
+ ------------------
6
+
7
+ * Feature - Added new variable types, new DateTime data type, and new rules engine functions for interacting and working with DateTime data types.
8
+
4
9
  1.40.0 (2023-05-31)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.40.0
1
+ 1.41.0
@@ -452,7 +452,7 @@ module Aws::FraudDetector
452
452
  #
453
453
  # resp.variables #=> Array
454
454
  # resp.variables[0].name #=> String
455
- # resp.variables[0].data_type #=> String, one of "STRING", "INTEGER", "FLOAT", "BOOLEAN"
455
+ # resp.variables[0].data_type #=> String, one of "STRING", "INTEGER", "FLOAT", "BOOLEAN", "DATETIME"
456
456
  # resp.variables[0].data_source #=> String, one of "EVENT", "MODEL_SCORE", "EXTERNAL_MODEL_SCORE"
457
457
  # resp.variables[0].default_value #=> String
458
458
  # resp.variables[0].description #=> String
@@ -985,7 +985,7 @@ module Aws::FraudDetector
985
985
  # The name of the variable.
986
986
  #
987
987
  # @option params [required, String] :data_type
988
- # The data type.
988
+ # The data type of the variable.
989
989
  #
990
990
  # @option params [required, String] :data_source
991
991
  # The source of the data.
@@ -1021,7 +1021,7 @@ module Aws::FraudDetector
1021
1021
  #
1022
1022
  # resp = client.create_variable({
1023
1023
  # name: "string", # required
1024
- # data_type: "STRING", # required, accepts STRING, INTEGER, FLOAT, BOOLEAN
1024
+ # data_type: "STRING", # required, accepts STRING, INTEGER, FLOAT, BOOLEAN, DATETIME
1025
1025
  # data_source: "EVENT", # required, accepts EVENT, MODEL_SCORE, EXTERNAL_MODEL_SCORE
1026
1026
  # default_value: "string", # required
1027
1027
  # description: "string",
@@ -1179,7 +1179,9 @@ module Aws::FraudDetector
1179
1179
  #
1180
1180
  # When you delete an event, Amazon Fraud Detector permanently deletes
1181
1181
  # that event and the event data is no longer stored in Amazon Fraud
1182
- # Detector.
1182
+ # Detector. If `deleteAuditHistory` is `True`, event data is available
1183
+ # through search for up to 30 seconds after the delete operation is
1184
+ # completed.
1183
1185
  #
1184
1186
  # @option params [required, String] :event_id
1185
1187
  # The ID of the event to delete.
@@ -1189,7 +1191,7 @@ module Aws::FraudDetector
1189
1191
  #
1190
1192
  # @option params [Boolean] :delete_audit_history
1191
1193
  # Specifies whether or not to delete any predictions associated with the
1192
- # event.
1194
+ # event. If set to `True`,
1193
1195
  #
1194
1196
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1195
1197
  #
@@ -2829,7 +2831,7 @@ module Aws::FraudDetector
2829
2831
  #
2830
2832
  # resp.variables #=> Array
2831
2833
  # resp.variables[0].name #=> String
2832
- # resp.variables[0].data_type #=> String, one of "STRING", "INTEGER", "FLOAT", "BOOLEAN"
2834
+ # resp.variables[0].data_type #=> String, one of "STRING", "INTEGER", "FLOAT", "BOOLEAN", "DATETIME"
2833
2835
  # resp.variables[0].data_source #=> String, one of "EVENT", "MODEL_SCORE", "EXTERNAL_MODEL_SCORE"
2834
2836
  # resp.variables[0].default_value #=> String
2835
2837
  # resp.variables[0].description #=> String
@@ -3925,7 +3927,7 @@ module Aws::FraudDetector
3925
3927
  params: params,
3926
3928
  config: config)
3927
3929
  context[:gem_name] = 'aws-sdk-frauddetector'
3928
- context[:gem_version] = '1.40.0'
3930
+ context[:gem_version] = '1.41.0'
3929
3931
  Seahorse::Client::Request.new(handlers, context)
3930
3932
  end
3931
3933
 
@@ -956,7 +956,7 @@ module Aws::FraudDetector
956
956
  # @return [String]
957
957
  #
958
958
  # @!attribute [rw] data_type
959
- # The data type.
959
+ # The data type of the variable.
960
960
  # @return [String]
961
961
  #
962
962
  # @!attribute [rw] data_source
@@ -1125,7 +1125,7 @@ module Aws::FraudDetector
1125
1125
  #
1126
1126
  # @!attribute [rw] delete_audit_history
1127
1127
  # Specifies whether or not to delete any predictions associated with
1128
- # the event.
1128
+ # the event. If set to `True`,
1129
1129
  # @return [Boolean]
1130
1130
  #
1131
1131
  # @see http://docs.aws.amazon.com/goto/WebAPI/frauddetector-2019-11-15/DeleteEventRequest AWS API Documentation
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-frauddetector/customizations'
52
52
  # @!group service
53
53
  module Aws::FraudDetector
54
54
 
55
- GEM_VERSION = '1.40.0'
55
+ GEM_VERSION = '1.41.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-frauddetector
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.40.0
4
+ version: 1.41.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: 2023-05-31 00:00:00.000000000 Z
11
+ date: 2023-06-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core