Struct aws_sdk_cloudfront::types::OriginShield
source · #[non_exhaustive]pub struct OriginShield {
pub enabled: bool,
pub origin_shield_region: Option<String>,
}
Expand description
CloudFront Origin Shield.
Using Origin Shield can help reduce the load on your origin. For more information, see Using Origin Shield in the Amazon CloudFront Developer Guide.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.enabled: bool
A flag that specifies whether Origin Shield is enabled.
When it's enabled, CloudFront routes all requests through Origin Shield, which can help protect your origin. When it's disabled, CloudFront might send requests directly to your origin from multiple edge locations or regional edge caches.
origin_shield_region: Option<String>
The Amazon Web Services Region for Origin Shield.
Specify the Amazon Web Services Region that has the lowest latency to your origin. To specify a region, use the region code, not the region name. For example, specify the US East (Ohio) region as us-east-2
.
When you enable CloudFront Origin Shield, you must specify the Amazon Web Services Region for Origin Shield. For the list of Amazon Web Services Regions that you can specify, and for help choosing the best Region for your origin, see Choosing the Amazon Web Services Region for Origin Shield in the Amazon CloudFront Developer Guide.
Implementations§
source§impl OriginShield
impl OriginShield
sourcepub fn enabled(&self) -> bool
pub fn enabled(&self) -> bool
A flag that specifies whether Origin Shield is enabled.
When it's enabled, CloudFront routes all requests through Origin Shield, which can help protect your origin. When it's disabled, CloudFront might send requests directly to your origin from multiple edge locations or regional edge caches.
sourcepub fn origin_shield_region(&self) -> Option<&str>
pub fn origin_shield_region(&self) -> Option<&str>
The Amazon Web Services Region for Origin Shield.
Specify the Amazon Web Services Region that has the lowest latency to your origin. To specify a region, use the region code, not the region name. For example, specify the US East (Ohio) region as us-east-2
.
When you enable CloudFront Origin Shield, you must specify the Amazon Web Services Region for Origin Shield. For the list of Amazon Web Services Regions that you can specify, and for help choosing the best Region for your origin, see Choosing the Amazon Web Services Region for Origin Shield in the Amazon CloudFront Developer Guide.
source§impl OriginShield
impl OriginShield
sourcepub fn builder() -> OriginShieldBuilder
pub fn builder() -> OriginShieldBuilder
Creates a new builder-style object to manufacture OriginShield
.
Trait Implementations§
source§impl Clone for OriginShield
impl Clone for OriginShield
source§fn clone(&self) -> OriginShield
fn clone(&self) -> OriginShield
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for OriginShield
impl Debug for OriginShield
source§impl PartialEq for OriginShield
impl PartialEq for OriginShield
source§fn eq(&self, other: &OriginShield) -> bool
fn eq(&self, other: &OriginShield) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for OriginShield
Auto Trait Implementations§
impl Freeze for OriginShield
impl RefUnwindSafe for OriginShield
impl Send for OriginShield
impl Sync for OriginShield
impl Unpin for OriginShield
impl UnwindSafe for OriginShield
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more