#[non_exhaustive]
pub struct EndpointResponse {
Show 15 fields pub address: Option<String>, pub application_id: Option<String>, pub attributes: Option<HashMap<String, Vec<String>>>, pub channel_type: Option<ChannelType>, pub cohort_id: Option<String>, pub creation_date: Option<String>, pub demographic: Option<EndpointDemographic>, pub effective_date: Option<String>, pub endpoint_status: Option<String>, pub id: 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

Provides information about the channel type and other settings for an endpoint.

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 destination address for messages or push notifications that you send to the endpoint. The address varies by channel. For example, the address for a push-notification channel is typically the token provided by a push notification service, such as an Apple Push Notification service (APNs) device token or a Firebase Cloud Messaging (FCM) registration token. The address for the SMS channel is a phone number in E.164 format, such as +12065550100. The address for the email channel is an email address.

application_id: Option<String>

The unique identifier for the application that's associated with the endpoint.

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

One or more custom attributes that describe the endpoint by associating a name with an array of values. For example, the value of a custom attribute named Interests might be: ["Science", "Music", "Travel"]. 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.

cohort_id: Option<String>

A number from 0-99 that represents the cohort that the endpoint is assigned to. Endpoints are grouped into cohorts randomly, and each cohort contains approximately 1 percent of the endpoints for an application. Amazon Pinpoint assigns cohorts to the holdout or treatment allocations for campaigns.

creation_date: Option<String>

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

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 messages or push notifications are sent to the endpoint. Possible 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.

id: Option<String>

The unique identifier that you assigned to the endpoint. The identifier should be a globally unique identifier (GUID) to ensure that it doesn't conflict with other endpoint identifiers that are associated with the application.

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>

The unique identifier for the most recent request to update the endpoint.

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 destination address for messages or push notifications that you send to the endpoint. The address varies by channel. For example, the address for a push-notification channel is typically the token provided by a push notification service, such as an Apple Push Notification service (APNs) device token or a Firebase Cloud Messaging (FCM) registration token. The address for the SMS channel is a phone number in E.164 format, such as +12065550100. The address for the email channel is an email address.

The unique identifier for the application that's associated with the endpoint.

One or more custom attributes that describe the endpoint by associating a name with an array of values. For example, the value of a custom attribute named Interests might be: ["Science", "Music", "Travel"]. 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.

A number from 0-99 that represents the cohort that the endpoint is assigned to. Endpoints are grouped into cohorts randomly, and each cohort contains approximately 1 percent of the endpoints for an application. Amazon Pinpoint assigns cohorts to the holdout or treatment allocations for campaigns.

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

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 messages or push notifications are sent to the endpoint. Possible 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 unique identifier that you assigned to the endpoint. The identifier should be a globally unique identifier (GUID) to ensure that it doesn't conflict with other endpoint identifiers that are associated with the application.

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.

The unique identifier for the most recent request to update the endpoint.

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 EndpointResponse

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