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

Class: Aws::FraudDetector::Types::PutEventTypeRequest

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

Overview

Note:

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

{
  name: "identifier", # required
  description: "description",
  event_variables: ["string"], # required
  labels: ["string"],
  entity_types: ["string"], # required
  tags: [
    {
      key: "tagKey", # required
      value: "tagValue", # required
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

The description of the event type.

Returns:

  • (String)

    The description of the event type.

#entity_typesArray<String>

The entity type for the event type. Example entity types: customer, merchant, account.

Returns:

  • (Array<String>)

    The entity type for the event type.

#event_variablesArray<String>

The event type variables.

Returns:

  • (Array<String>)

    The event type variables.

#labelsArray<String>

The event type labels.

Returns:

  • (Array<String>)

    The event type labels.

#nameString

The name.

Returns:

  • (String)

    The name.

#tagsArray<Types::Tag>

A collection of key and value pairs.

Returns:

  • (Array<Types::Tag>)

    A collection of key and value pairs.