Struct aws_sdk_waf::operation::create_size_constraint_set::builders::CreateSizeConstraintSetOutputBuilder
source · #[non_exhaustive]pub struct CreateSizeConstraintSetOutputBuilder { /* private fields */ }
Expand description
A builder for CreateSizeConstraintSetOutput
.
Implementations§
source§impl CreateSizeConstraintSetOutputBuilder
impl CreateSizeConstraintSetOutputBuilder
sourcepub fn size_constraint_set(self, input: SizeConstraintSet) -> Self
pub fn size_constraint_set(self, input: SizeConstraintSet) -> Self
A SizeConstraintSet
that contains no SizeConstraint
objects.
sourcepub fn set_size_constraint_set(self, input: Option<SizeConstraintSet>) -> Self
pub fn set_size_constraint_set(self, input: Option<SizeConstraintSet>) -> Self
A SizeConstraintSet
that contains no SizeConstraint
objects.
sourcepub fn get_size_constraint_set(&self) -> &Option<SizeConstraintSet>
pub fn get_size_constraint_set(&self) -> &Option<SizeConstraintSet>
A SizeConstraintSet
that contains no SizeConstraint
objects.
sourcepub fn change_token(self, input: impl Into<String>) -> Self
pub fn change_token(self, input: impl Into<String>) -> Self
The ChangeToken
that you used to submit the CreateSizeConstraintSet
request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus
.
sourcepub fn set_change_token(self, input: Option<String>) -> Self
pub fn set_change_token(self, input: Option<String>) -> Self
The ChangeToken
that you used to submit the CreateSizeConstraintSet
request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus
.
sourcepub fn get_change_token(&self) -> &Option<String>
pub fn get_change_token(&self) -> &Option<String>
The ChangeToken
that you used to submit the CreateSizeConstraintSet
request. You can also use this value to query the status of the request. For more information, see GetChangeTokenStatus
.
sourcepub fn build(self) -> CreateSizeConstraintSetOutput
pub fn build(self) -> CreateSizeConstraintSetOutput
Consumes the builder and constructs a CreateSizeConstraintSetOutput
.
Trait Implementations§
source§impl Clone for CreateSizeConstraintSetOutputBuilder
impl Clone for CreateSizeConstraintSetOutputBuilder
source§fn clone(&self) -> CreateSizeConstraintSetOutputBuilder
fn clone(&self) -> CreateSizeConstraintSetOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CreateSizeConstraintSetOutputBuilder
impl Default for CreateSizeConstraintSetOutputBuilder
source§fn default() -> CreateSizeConstraintSetOutputBuilder
fn default() -> CreateSizeConstraintSetOutputBuilder
source§impl PartialEq for CreateSizeConstraintSetOutputBuilder
impl PartialEq for CreateSizeConstraintSetOutputBuilder
source§fn eq(&self, other: &CreateSizeConstraintSetOutputBuilder) -> bool
fn eq(&self, other: &CreateSizeConstraintSetOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateSizeConstraintSetOutputBuilder
Auto Trait Implementations§
impl Freeze for CreateSizeConstraintSetOutputBuilder
impl RefUnwindSafe for CreateSizeConstraintSetOutputBuilder
impl Send for CreateSizeConstraintSetOutputBuilder
impl Sync for CreateSizeConstraintSetOutputBuilder
impl Unpin for CreateSizeConstraintSetOutputBuilder
impl UnwindSafe for CreateSizeConstraintSetOutputBuilder
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