Struct aws_sdk_cloudfront::types::builders::OriginShieldBuilder
source · #[non_exhaustive]pub struct OriginShieldBuilder { /* private fields */ }
Expand description
A builder for OriginShield
.
Implementations§
source§impl OriginShieldBuilder
impl OriginShieldBuilder
sourcepub fn enabled(self, input: bool) -> Self
pub fn enabled(self, input: bool) -> Self
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.
This field is required.sourcepub fn set_enabled(self, input: Option<bool>) -> Self
pub fn set_enabled(self, input: Option<bool>) -> Self
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 get_enabled(&self) -> &Option<bool>
pub fn get_enabled(&self) -> &Option<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, input: impl Into<String>) -> Self
pub fn origin_shield_region(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_origin_shield_region(self, input: Option<String>) -> Self
pub fn set_origin_shield_region(self, input: Option<String>) -> Self
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.
sourcepub fn get_origin_shield_region(&self) -> &Option<String>
pub fn get_origin_shield_region(&self) -> &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.
sourcepub fn build(self) -> Result<OriginShield, BuildError>
pub fn build(self) -> Result<OriginShield, BuildError>
Consumes the builder and constructs a OriginShield
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for OriginShieldBuilder
impl Clone for OriginShieldBuilder
source§fn clone(&self) -> OriginShieldBuilder
fn clone(&self) -> OriginShieldBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for OriginShieldBuilder
impl Debug for OriginShieldBuilder
source§impl Default for OriginShieldBuilder
impl Default for OriginShieldBuilder
source§fn default() -> OriginShieldBuilder
fn default() -> OriginShieldBuilder
source§impl PartialEq for OriginShieldBuilder
impl PartialEq for OriginShieldBuilder
source§fn eq(&self, other: &OriginShieldBuilder) -> bool
fn eq(&self, other: &OriginShieldBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for OriginShieldBuilder
Auto Trait Implementations§
impl Freeze for OriginShieldBuilder
impl RefUnwindSafe for OriginShieldBuilder
impl Send for OriginShieldBuilder
impl Sync for OriginShieldBuilder
impl Unpin for OriginShieldBuilder
impl UnwindSafe for OriginShieldBuilder
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