#[non_exhaustive]pub struct UpdateEndpointsBatchInput {
pub application_id: Option<String>,
pub endpoint_batch_request: Option<EndpointBatchRequest>,
}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.application_id: Option<String>The unique identifier for the application. This identifier is displayed as the Project ID on the Amazon Pinpoint console.
endpoint_batch_request: Option<EndpointBatchRequest>Specifies a batch of endpoints to create or update and the settings and attributes to set or change for each endpoint.
Implementations§
source§impl UpdateEndpointsBatchInput
impl UpdateEndpointsBatchInput
sourcepub fn application_id(&self) -> Option<&str>
pub fn application_id(&self) -> Option<&str>
The unique identifier for the application. This identifier is displayed as the Project ID on the Amazon Pinpoint console.
sourcepub fn endpoint_batch_request(&self) -> Option<&EndpointBatchRequest>
pub fn endpoint_batch_request(&self) -> Option<&EndpointBatchRequest>
Specifies a batch of endpoints to create or update and the settings and attributes to set or change for each endpoint.
source§impl UpdateEndpointsBatchInput
impl UpdateEndpointsBatchInput
sourcepub fn builder() -> UpdateEndpointsBatchInputBuilder
pub fn builder() -> UpdateEndpointsBatchInputBuilder
Creates a new builder-style object to manufacture UpdateEndpointsBatchInput.
Trait Implementations§
source§impl Clone for UpdateEndpointsBatchInput
impl Clone for UpdateEndpointsBatchInput
source§fn clone(&self) -> UpdateEndpointsBatchInput
fn clone(&self) -> UpdateEndpointsBatchInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for UpdateEndpointsBatchInput
impl Debug for UpdateEndpointsBatchInput
source§impl PartialEq for UpdateEndpointsBatchInput
impl PartialEq for UpdateEndpointsBatchInput
source§fn eq(&self, other: &UpdateEndpointsBatchInput) -> bool
fn eq(&self, other: &UpdateEndpointsBatchInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateEndpointsBatchInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateEndpointsBatchInput
impl Send for UpdateEndpointsBatchInput
impl Sync for UpdateEndpointsBatchInput
impl Unpin for UpdateEndpointsBatchInput
impl UnwindSafe for UpdateEndpointsBatchInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more