#[non_exhaustive]
pub struct PublicEndpoint { pub address: Option<String>, pub attributes: Option<HashMap<String, Vec<String>>>, pub channel_type: Option<ChannelType>, pub demographic: Option<EndpointDemographic>, pub effective_date: Option<String>, pub endpoint_status: Option<String>, pub location: Option<EndpointLocation>, pub metrics: Option<HashMap<String, f64>>, pub opt_out: Option<String>, pub request_id: Option<String>, pub user: Option<EndpointUser>, }
Expand description

Specifies the properties and attributes of an endpoint that's associated with an event.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
address: Option<String>

The unique identifier for the recipient, such as a device token, email address, or mobile phone number.

attributes: Option<HashMap<String, Vec<String>>>

One or more custom attributes that describe the endpoint by associating a name with an array of values. You can use these attributes as filter criteria when you create segments.

channel_type: Option<ChannelType>

The channel that's used when sending messages or push notifications to the endpoint.

demographic: Option<EndpointDemographic>

The demographic information for the endpoint, such as the time zone and platform.

effective_date: Option<String>

The date and time, in ISO 8601 format, when the endpoint was last updated.

endpoint_status: Option<String>

Specifies whether to send messages or push notifications to the endpoint. Valid values are: ACTIVE, messages are sent to the endpoint; and, INACTIVE, messages aren’t sent to the endpoint.

Amazon Pinpoint automatically sets this value to ACTIVE when you create an endpoint or update an existing endpoint. Amazon Pinpoint automatically sets this value to INACTIVE if you update another endpoint that has the same address specified by the Address property.

location: Option<EndpointLocation>

The geographic information for the endpoint.

metrics: Option<HashMap<String, f64>>

One or more custom metrics that your app reports to Amazon Pinpoint for the endpoint.

opt_out: Option<String>

Specifies whether the user who's associated with the endpoint has opted out of receiving messages and push notifications from you. Possible values are: ALL, the user has opted out and doesn't want to receive any messages or push notifications; and, NONE, the user hasn't opted out and wants to receive all messages and push notifications.

request_id: Option<String>

A unique identifier that's generated each time the endpoint is updated.

user: Option<EndpointUser>

One or more custom user attributes that your app reports to Amazon Pinpoint for the user who's associated with the endpoint.

Implementations

The unique identifier for the recipient, such as a device token, email address, or mobile phone number.

One or more custom attributes that describe the endpoint by associating a name with an array of values. You can use these attributes as filter criteria when you create segments.

The channel that's used when sending messages or push notifications to the endpoint.

The demographic information for the endpoint, such as the time zone and platform.

The date and time, in ISO 8601 format, when the endpoint was last updated.

Specifies whether to send messages or push notifications to the endpoint. Valid values are: ACTIVE, messages are sent to the endpoint; and, INACTIVE, messages aren’t sent to the endpoint.

Amazon Pinpoint automatically sets this value to ACTIVE when you create an endpoint or update an existing endpoint. Amazon Pinpoint automatically sets this value to INACTIVE if you update another endpoint that has the same address specified by the Address property.

The geographic information for the endpoint.

One or more custom metrics that your app reports to Amazon Pinpoint for the endpoint.

Specifies whether the user who's associated with the endpoint has opted out of receiving messages and push notifications from you. Possible values are: ALL, the user has opted out and doesn't want to receive any messages or push notifications; and, NONE, the user hasn't opted out and wants to receive all messages and push notifications.

A unique identifier that's generated each time the endpoint is updated.

One or more custom user attributes that your app reports to Amazon Pinpoint for the user who's associated with the endpoint.

Creates a new builder-style object to manufacture PublicEndpoint

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more