pub struct CreateCloudFrontOriginAccessIdentityRequest {
pub cloud_front_origin_access_identity_config: CloudFrontOriginAccessIdentityConfig,
}
Expand description
The request to create a new origin access identity (OAI). An origin access identity is a special CloudFront user that you can associate with Amazon S3 origins, so that you can secure all or just some of your Amazon S3 content. For more information, see Restricting Access to Amazon S3 Content by Using an Origin Access Identity in the Amazon CloudFront Developer Guide.
Fields§
§cloud_front_origin_access_identity_config: CloudFrontOriginAccessIdentityConfig
The current configuration information for the identity.
Trait Implementations§
Source§impl Clone for CreateCloudFrontOriginAccessIdentityRequest
impl Clone for CreateCloudFrontOriginAccessIdentityRequest
Source§fn clone(&self) -> CreateCloudFrontOriginAccessIdentityRequest
fn clone(&self) -> CreateCloudFrontOriginAccessIdentityRequest
Returns a copy 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 CreateCloudFrontOriginAccessIdentityRequest
impl Default for CreateCloudFrontOriginAccessIdentityRequest
Source§fn default() -> CreateCloudFrontOriginAccessIdentityRequest
fn default() -> CreateCloudFrontOriginAccessIdentityRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateCloudFrontOriginAccessIdentityRequest
impl PartialEq for CreateCloudFrontOriginAccessIdentityRequest
Source§fn eq(&self, other: &CreateCloudFrontOriginAccessIdentityRequest) -> bool
fn eq(&self, other: &CreateCloudFrontOriginAccessIdentityRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateCloudFrontOriginAccessIdentityRequest
Auto Trait Implementations§
impl Freeze for CreateCloudFrontOriginAccessIdentityRequest
impl RefUnwindSafe for CreateCloudFrontOriginAccessIdentityRequest
impl Send for CreateCloudFrontOriginAccessIdentityRequest
impl Sync for CreateCloudFrontOriginAccessIdentityRequest
impl Unpin for CreateCloudFrontOriginAccessIdentityRequest
impl UnwindSafe for CreateCloudFrontOriginAccessIdentityRequest
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