#[non_exhaustive]pub struct UpdateSizeConstraintSetInput { /* private fields */ }Implementations§
source§impl UpdateSizeConstraintSetInput
impl UpdateSizeConstraintSetInput
sourcepub fn size_constraint_set_id(&self) -> Option<&str>
pub fn size_constraint_set_id(&self) -> Option<&str>
The SizeConstraintSetId of the SizeConstraintSet that you want to update. SizeConstraintSetId is returned by CreateSizeConstraintSet and by ListSizeConstraintSets.
sourcepub fn change_token(&self) -> Option<&str>
pub fn change_token(&self) -> Option<&str>
The value returned by the most recent call to GetChangeToken.
sourcepub fn updates(&self) -> Option<&[SizeConstraintSetUpdate]>
pub fn updates(&self) -> Option<&[SizeConstraintSetUpdate]>
An array of SizeConstraintSetUpdate objects that you want to insert into or delete from a SizeConstraintSet. For more information, see the applicable data types:
-
SizeConstraintSetUpdate: ContainsActionandSizeConstraint -
SizeConstraint: ContainsFieldToMatch,TextTransformation,ComparisonOperator, andSize -
FieldToMatch: ContainsDataandType
source§impl UpdateSizeConstraintSetInput
impl UpdateSizeConstraintSetInput
sourcepub fn builder() -> UpdateSizeConstraintSetInputBuilder
pub fn builder() -> UpdateSizeConstraintSetInputBuilder
Creates a new builder-style object to manufacture UpdateSizeConstraintSetInput.
source§impl UpdateSizeConstraintSetInput
impl UpdateSizeConstraintSetInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateSizeConstraintSet, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<UpdateSizeConstraintSet, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateSizeConstraintSet>
Trait Implementations§
source§impl Clone for UpdateSizeConstraintSetInput
impl Clone for UpdateSizeConstraintSetInput
source§fn clone(&self) -> UpdateSizeConstraintSetInput
fn clone(&self) -> UpdateSizeConstraintSetInput
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 Debug for UpdateSizeConstraintSetInput
impl Debug for UpdateSizeConstraintSetInput
source§impl PartialEq<UpdateSizeConstraintSetInput> for UpdateSizeConstraintSetInput
impl PartialEq<UpdateSizeConstraintSetInput> for UpdateSizeConstraintSetInput
source§fn eq(&self, other: &UpdateSizeConstraintSetInput) -> bool
fn eq(&self, other: &UpdateSizeConstraintSetInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateSizeConstraintSetInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateSizeConstraintSetInput
impl Send for UpdateSizeConstraintSetInput
impl Sync for UpdateSizeConstraintSetInput
impl Unpin for UpdateSizeConstraintSetInput
impl UnwindSafe for UpdateSizeConstraintSetInput
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