pub struct ListOriginEndpointsRequest {
pub channel_id: Option<String>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§channel_id: Option<String>When specified, the request will return only OriginEndpoints associated with the given Channel ID.
max_results: Option<i64>The upper bound on the number of records to return.
next_token: Option<String>A token used to resume pagination from the end of a previous request.
Trait Implementations§
Source§impl Clone for ListOriginEndpointsRequest
impl Clone for ListOriginEndpointsRequest
Source§fn clone(&self) -> ListOriginEndpointsRequest
fn clone(&self) -> ListOriginEndpointsRequest
Returns a duplicate 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 ListOriginEndpointsRequest
impl Debug for ListOriginEndpointsRequest
Source§impl Default for ListOriginEndpointsRequest
impl Default for ListOriginEndpointsRequest
Source§fn default() -> ListOriginEndpointsRequest
fn default() -> ListOriginEndpointsRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListOriginEndpointsRequest
Auto Trait Implementations§
impl Freeze for ListOriginEndpointsRequest
impl RefUnwindSafe for ListOriginEndpointsRequest
impl Send for ListOriginEndpointsRequest
impl Sync for ListOriginEndpointsRequest
impl Unpin for ListOriginEndpointsRequest
impl UnwindSafe for ListOriginEndpointsRequest
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