pub struct DeleteCloudFrontOriginAccessIdentityRequest {
pub id: String,
pub if_match: Option<String>,
}
Expand description
Deletes a origin access identity.
Fields§
§id: String
The origin access identity's ID.
if_match: Option<String>
The value of the ETag
header you received from a previous GET
or PUT
request. For example: E2QWRUHAPOMQZL
.
Trait Implementations§
Source§impl Clone for DeleteCloudFrontOriginAccessIdentityRequest
impl Clone for DeleteCloudFrontOriginAccessIdentityRequest
Source§fn clone(&self) -> DeleteCloudFrontOriginAccessIdentityRequest
fn clone(&self) -> DeleteCloudFrontOriginAccessIdentityRequest
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 Default for DeleteCloudFrontOriginAccessIdentityRequest
impl Default for DeleteCloudFrontOriginAccessIdentityRequest
Source§fn default() -> DeleteCloudFrontOriginAccessIdentityRequest
fn default() -> DeleteCloudFrontOriginAccessIdentityRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteCloudFrontOriginAccessIdentityRequest
impl PartialEq for DeleteCloudFrontOriginAccessIdentityRequest
Source§fn eq(&self, other: &DeleteCloudFrontOriginAccessIdentityRequest) -> bool
fn eq(&self, other: &DeleteCloudFrontOriginAccessIdentityRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeleteCloudFrontOriginAccessIdentityRequest
Auto Trait Implementations§
impl Freeze for DeleteCloudFrontOriginAccessIdentityRequest
impl RefUnwindSafe for DeleteCloudFrontOriginAccessIdentityRequest
impl Send for DeleteCloudFrontOriginAccessIdentityRequest
impl Sync for DeleteCloudFrontOriginAccessIdentityRequest
impl Unpin for DeleteCloudFrontOriginAccessIdentityRequest
impl UnwindSafe for DeleteCloudFrontOriginAccessIdentityRequest
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