Packages
aws
1.0.14
1.0.14
1.0.13
1.0.12
1.0.11
1.0.10
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.14.1
0.14.0
0.13.3
0.13.2
0.13.1
0.13.0
0.12.0
0.11.0
0.10.1
0.10.0
0.9.2
0.9.1
0.9.0
0.8.0
0.7.0
0.6.0
0.5.0
0.4.0
0.3.0
0.2.0
0.1.0
0.0.12
0.0.11
0.0.10
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
AWS clients for Elixir
Current section
Files
Jump to
Current section
Files
lib/aws/generated/personalize_events.ex
# WARNING: DO NOT EDIT, AUTO-GENERATED CODE!
# See https://github.com/aws-beam/aws-codegen for more details.
defmodule AWS.PersonalizeEvents do
@moduledoc """
Amazon Personalize can consume real-time user event data, such as *stream* or
*click* data, and use
it for model training either alone or combined with historical data.
For more information see
[Recording item interaction events](https://docs.aws.amazon.com/personalize/latest/dg/recording-item-interaction-events.html).
"""
alias AWS.Client
alias AWS.Request
@typedoc """
## Example:
action() :: %{
"actionId" => String.t() | atom(),
"properties" => String.t() | atom()
}
"""
@type action() :: %{(String.t() | atom()) => any()}
@typedoc """
## Example:
action_interaction() :: %{
"actionId" => String.t() | atom(),
"eventId" => String.t() | atom(),
"eventType" => String.t() | atom(),
"impression" => list(String.t() | atom()),
"properties" => String.t() | atom(),
"recommendationId" => String.t() | atom(),
"sessionId" => String.t() | atom(),
"timestamp" => non_neg_integer(),
"userId" => String.t() | atom()
}
"""
@type action_interaction() :: %{(String.t() | atom()) => any()}
@typedoc """
## Example:
event() :: %{
"eventId" => String.t() | atom(),
"eventType" => String.t() | atom(),
"eventValue" => float(),
"impression" => list(String.t() | atom()),
"itemId" => String.t() | atom(),
"metricAttribution" => metric_attribution(),
"properties" => String.t() | atom(),
"recommendationId" => String.t() | atom(),
"sentAt" => non_neg_integer()
}
"""
@type event() :: %{(String.t() | atom()) => any()}
@typedoc """
## Example:
invalid_input_exception() :: %{
"message" => String.t() | atom()
}
"""
@type invalid_input_exception() :: %{(String.t() | atom()) => any()}
@typedoc """
## Example:
item() :: %{
"itemId" => String.t() | atom(),
"properties" => String.t() | atom()
}
"""
@type item() :: %{(String.t() | atom()) => any()}
@typedoc """
## Example:
metric_attribution() :: %{
"eventAttributionSource" => String.t() | atom()
}
"""
@type metric_attribution() :: %{(String.t() | atom()) => any()}
@typedoc """
## Example:
put_action_interactions_request() :: %{
required("actionInteractions") => list(action_interaction()),
required("trackingId") => String.t() | atom()
}
"""
@type put_action_interactions_request() :: %{(String.t() | atom()) => any()}
@typedoc """
## Example:
put_actions_request() :: %{
required("actions") => list(action()),
required("datasetArn") => String.t() | atom()
}
"""
@type put_actions_request() :: %{(String.t() | atom()) => any()}
@typedoc """
## Example:
put_events_request() :: %{
optional("userId") => String.t() | atom(),
required("eventList") => list(event()),
required("sessionId") => String.t() | atom(),
required("trackingId") => String.t() | atom()
}
"""
@type put_events_request() :: %{(String.t() | atom()) => any()}
@typedoc """
## Example:
put_items_request() :: %{
required("datasetArn") => String.t() | atom(),
required("items") => list(item())
}
"""
@type put_items_request() :: %{(String.t() | atom()) => any()}
@typedoc """
## Example:
put_users_request() :: %{
required("datasetArn") => String.t() | atom(),
required("users") => list(user())
}
"""
@type put_users_request() :: %{(String.t() | atom()) => any()}
@typedoc """
## Example:
resource_in_use_exception() :: %{
"message" => String.t() | atom()
}
"""
@type resource_in_use_exception() :: %{(String.t() | atom()) => any()}
@typedoc """
## Example:
resource_not_found_exception() :: %{
"message" => String.t() | atom()
}
"""
@type resource_not_found_exception() :: %{(String.t() | atom()) => any()}
@typedoc """
## Example:
user() :: %{
"properties" => String.t() | atom(),
"userId" => String.t() | atom()
}
"""
@type user() :: %{(String.t() | atom()) => any()}
@type put_action_interactions_errors() ::
resource_not_found_exception() | resource_in_use_exception() | invalid_input_exception()
@type put_actions_errors() ::
resource_not_found_exception() | resource_in_use_exception() | invalid_input_exception()
@type put_events_errors() :: invalid_input_exception()
@type put_items_errors() ::
resource_not_found_exception() | resource_in_use_exception() | invalid_input_exception()
@type put_users_errors() ::
resource_not_found_exception() | resource_in_use_exception() | invalid_input_exception()
def metadata do
%{
api_version: "2018-03-22",
content_type: "application/x-amz-json-1.1",
credential_scope: nil,
endpoint_prefix: "personalize-events",
global?: false,
hostname: nil,
protocol: "rest-json",
service_id: "Personalize Events",
signature_version: "v4",
signing_name: "personalize",
target_prefix: nil
}
end
@doc """
Records action interaction event data.
An *action interaction* event is an interaction between a user and an *action*.
For example, a user taking an action, such a enrolling in a membership program
or downloading your app.
For more information about recording action interactions, see [Recording action interaction
events](https://docs.aws.amazon.com/personalize/latest/dg/recording-action-interaction-events.html).
For more information about actions in an Actions dataset, see [Actions dataset](https://docs.aws.amazon.com/personalize/latest/dg/actions-datasets.html).
"""
@spec put_action_interactions(map(), put_action_interactions_request(), list()) ::
{:ok, nil, any()}
| {:error, {:unexpected_response, any()}}
| {:error, term()}
| {:error, put_action_interactions_errors()}
def put_action_interactions(%Client{} = client, input, options \\ []) do
url_path = "/action-interactions"
headers = []
custom_headers = []
query_params = []
meta = metadata()
Request.request_rest(
client,
meta,
:post,
url_path,
query_params,
custom_headers ++ headers,
input,
options,
200
)
end
@doc """
Adds one or more actions to an Actions dataset.
For more information see
[Importing actions individually](https://docs.aws.amazon.com/personalize/latest/dg/importing-actions.html).
"""
@spec put_actions(map(), put_actions_request(), list()) ::
{:ok, nil, any()}
| {:error, {:unexpected_response, any()}}
| {:error, term()}
| {:error, put_actions_errors()}
def put_actions(%Client{} = client, input, options \\ []) do
url_path = "/actions"
headers = []
custom_headers = []
query_params = []
meta = metadata()
Request.request_rest(
client,
meta,
:post,
url_path,
query_params,
custom_headers ++ headers,
input,
options,
200
)
end
@doc """
Records item interaction event data.
For more information see
[Recording item interaction events](https://docs.aws.amazon.com/personalize/latest/dg/recording-item-interaction-events.html).
"""
@spec put_events(map(), put_events_request(), list()) ::
{:ok, nil, any()}
| {:error, {:unexpected_response, any()}}
| {:error, term()}
| {:error, put_events_errors()}
def put_events(%Client{} = client, input, options \\ []) do
url_path = "/events"
headers = []
custom_headers = []
query_params = []
meta = metadata()
Request.request_rest(
client,
meta,
:post,
url_path,
query_params,
custom_headers ++ headers,
input,
options,
200
)
end
@doc """
Adds one or more items to an Items dataset.
For more information see
[Importing items individually](https://docs.aws.amazon.com/personalize/latest/dg/importing-items.html).
"""
@spec put_items(map(), put_items_request(), list()) ::
{:ok, nil, any()}
| {:error, {:unexpected_response, any()}}
| {:error, term()}
| {:error, put_items_errors()}
def put_items(%Client{} = client, input, options \\ []) do
url_path = "/items"
headers = []
custom_headers = []
query_params = []
meta = metadata()
Request.request_rest(
client,
meta,
:post,
url_path,
query_params,
custom_headers ++ headers,
input,
options,
200
)
end
@doc """
Adds one or more users to a Users dataset.
For more information see
[Importing users individually](https://docs.aws.amazon.com/personalize/latest/dg/importing-users.html).
"""
@spec put_users(map(), put_users_request(), list()) ::
{:ok, nil, any()}
| {:error, {:unexpected_response, any()}}
| {:error, term()}
| {:error, put_users_errors()}
def put_users(%Client{} = client, input, options \\ []) do
url_path = "/users"
headers = []
custom_headers = []
query_params = []
meta = metadata()
Request.request_rest(
client,
meta,
:post,
url_path,
query_params,
custom_headers ++ headers,
input,
options,
200
)
end
end