Class: Aws::FraudDetector::Types::UpdateVariableRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::FraudDetector::Types::UpdateVariableRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-frauddetector/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#default_value ⇒ String
The new default value of the variable.
-
#description ⇒ String
The new description.
-
#name ⇒ String
The name of the variable.
-
#variable_type ⇒ String
The variable type.
Instance Attribute Details
#default_value ⇒ String
The new default value of the variable.
4946 4947 4948 4949 4950 4951 4952 4953 |
# File 'lib/aws-sdk-frauddetector/types.rb', line 4946 class UpdateVariableRequest < Struct.new( :name, :default_value, :description, :variable_type) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The new description.
4946 4947 4948 4949 4950 4951 4952 4953 |
# File 'lib/aws-sdk-frauddetector/types.rb', line 4946 class UpdateVariableRequest < Struct.new( :name, :default_value, :description, :variable_type) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the variable.
4946 4947 4948 4949 4950 4951 4952 4953 |
# File 'lib/aws-sdk-frauddetector/types.rb', line 4946 class UpdateVariableRequest < Struct.new( :name, :default_value, :description, :variable_type) SENSITIVE = [] include Aws::Structure end |
#variable_type ⇒ String
The variable type. For more information see [Variable types].
[1]: docs.aws.amazon.com/frauddetector/latest/ug/create-a-variable.html#variable-types
4946 4947 4948 4949 4950 4951 4952 4953 |
# File 'lib/aws-sdk-frauddetector/types.rb', line 4946 class UpdateVariableRequest < Struct.new( :name, :default_value, :description, :variable_type) SENSITIVE = [] include Aws::Structure end |