You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::FraudDetector::Types::CreateModelRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateModelRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  model_id: "modelIdentifier", # required
  model_type: "ONLINE_FRAUD_INSIGHTS", # required, accepts ONLINE_FRAUD_INSIGHTS
  description: "description",
  event_type_name: "string", # required
  tags: [
    {
      key: "tagKey", # required
      value: "tagValue", # required
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

The model description.

Returns:

  • (String)

    The model description.

#event_type_nameString

The name of the event type.

Returns:

  • (String)

    The name of the event type.

#model_idString

The model ID.

Returns:

  • (String)

    The model ID.

#model_typeString

The model type.

Possible values:

  • ONLINE_FRAUD_INSIGHTS

Returns:

  • (String)

    The model type.

#tagsArray<Types::Tag>

A collection of key and value pairs.

Returns:

  • (Array<Types::Tag>)

    A collection of key and value pairs.