pub struct CreateCloudFrontOriginAccessIdentityResult {
pub cloud_front_origin_access_identity: Option<CloudFrontOriginAccessIdentity>,
pub e_tag: Option<String>,
pub location: Option<String>,
}
Expand description
The returned result of the corresponding request.
Fields§
§cloud_front_origin_access_identity: Option<CloudFrontOriginAccessIdentity>
The origin access identity's information.
e_tag: Option<String>
The current version of the origin access identity created.
location: Option<String>
The fully qualified URI of the new origin access identity just created.
Trait Implementations§
Source§impl Clone for CreateCloudFrontOriginAccessIdentityResult
impl Clone for CreateCloudFrontOriginAccessIdentityResult
Source§fn clone(&self) -> CreateCloudFrontOriginAccessIdentityResult
fn clone(&self) -> CreateCloudFrontOriginAccessIdentityResult
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 CreateCloudFrontOriginAccessIdentityResult
impl Default for CreateCloudFrontOriginAccessIdentityResult
Source§fn default() -> CreateCloudFrontOriginAccessIdentityResult
fn default() -> CreateCloudFrontOriginAccessIdentityResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateCloudFrontOriginAccessIdentityResult
impl PartialEq for CreateCloudFrontOriginAccessIdentityResult
Source§fn eq(&self, other: &CreateCloudFrontOriginAccessIdentityResult) -> bool
fn eq(&self, other: &CreateCloudFrontOriginAccessIdentityResult) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateCloudFrontOriginAccessIdentityResult
Auto Trait Implementations§
impl Freeze for CreateCloudFrontOriginAccessIdentityResult
impl RefUnwindSafe for CreateCloudFrontOriginAccessIdentityResult
impl Send for CreateCloudFrontOriginAccessIdentityResult
impl Sync for CreateCloudFrontOriginAccessIdentityResult
impl Unpin for CreateCloudFrontOriginAccessIdentityResult
impl UnwindSafe for CreateCloudFrontOriginAccessIdentityResult
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