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