pub struct CloudFrontOriginAccessIdentity {
pub cloud_front_origin_access_identity_config: Option<CloudFrontOriginAccessIdentityConfig>,
pub id: String,
pub s3_canonical_user_id: String,
}
Expand description
CloudFront origin access identity.
Fields§
§cloud_front_origin_access_identity_config: Option<CloudFrontOriginAccessIdentityConfig>
The current configuration information for the identity.
id: String
The ID for the origin access identity, for example, E74FTE3AJFJ256A
.
s3_canonical_user_id: String
The Amazon S3 canonical user ID for the origin access identity, used when giving the origin access identity read permission to an object in Amazon S3.
Trait Implementations§
Source§impl Clone for CloudFrontOriginAccessIdentity
impl Clone for CloudFrontOriginAccessIdentity
Source§fn clone(&self) -> CloudFrontOriginAccessIdentity
fn clone(&self) -> CloudFrontOriginAccessIdentity
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 CloudFrontOriginAccessIdentity
impl Default for CloudFrontOriginAccessIdentity
Source§fn default() -> CloudFrontOriginAccessIdentity
fn default() -> CloudFrontOriginAccessIdentity
Returns the “default value” for a type. Read more
Source§impl PartialEq for CloudFrontOriginAccessIdentity
impl PartialEq for CloudFrontOriginAccessIdentity
Source§fn eq(&self, other: &CloudFrontOriginAccessIdentity) -> bool
fn eq(&self, other: &CloudFrontOriginAccessIdentity) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CloudFrontOriginAccessIdentity
Auto Trait Implementations§
impl Freeze for CloudFrontOriginAccessIdentity
impl RefUnwindSafe for CloudFrontOriginAccessIdentity
impl Send for CloudFrontOriginAccessIdentity
impl Sync for CloudFrontOriginAccessIdentity
impl Unpin for CloudFrontOriginAccessIdentity
impl UnwindSafe for CloudFrontOriginAccessIdentity
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