#[non_exhaustive]pub struct LambdaFunctionAssociationsBuilder { /* private fields */ }
Expand description
A builder for LambdaFunctionAssociations
.
Implementations§
source§impl LambdaFunctionAssociationsBuilder
impl LambdaFunctionAssociationsBuilder
sourcepub fn quantity(self, input: i32) -> Self
pub fn quantity(self, input: i32) -> Self
The number of Lambda@Edge function associations for this cache behavior.
sourcepub fn set_quantity(self, input: Option<i32>) -> Self
pub fn set_quantity(self, input: Option<i32>) -> Self
The number of Lambda@Edge function associations for this cache behavior.
sourcepub fn items(self, input: LambdaFunctionAssociation) -> Self
pub fn items(self, input: LambdaFunctionAssociation) -> Self
Appends an item to items
.
To override the contents of this collection use set_items
.
Optional: A complex type that contains LambdaFunctionAssociation
items for this cache behavior. If Quantity
is 0
, you can omit Items
.
sourcepub fn set_items(self, input: Option<Vec<LambdaFunctionAssociation>>) -> Self
pub fn set_items(self, input: Option<Vec<LambdaFunctionAssociation>>) -> Self
Optional: A complex type that contains LambdaFunctionAssociation
items for this cache behavior. If Quantity
is 0
, you can omit Items
.
sourcepub fn build(self) -> LambdaFunctionAssociations
pub fn build(self) -> LambdaFunctionAssociations
Consumes the builder and constructs a LambdaFunctionAssociations
.
Trait Implementations§
source§impl Clone for LambdaFunctionAssociationsBuilder
impl Clone for LambdaFunctionAssociationsBuilder
source§fn clone(&self) -> LambdaFunctionAssociationsBuilder
fn clone(&self) -> LambdaFunctionAssociationsBuilder
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 LambdaFunctionAssociationsBuilder
impl Default for LambdaFunctionAssociationsBuilder
source§fn default() -> LambdaFunctionAssociationsBuilder
fn default() -> LambdaFunctionAssociationsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<LambdaFunctionAssociationsBuilder> for LambdaFunctionAssociationsBuilder
impl PartialEq<LambdaFunctionAssociationsBuilder> for LambdaFunctionAssociationsBuilder
source§fn eq(&self, other: &LambdaFunctionAssociationsBuilder) -> bool
fn eq(&self, other: &LambdaFunctionAssociationsBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.