pub struct Builder { /* private fields */ }
Expand description
A builder for FieldLevelEncryptionList
.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn next_marker(self, input: impl Into<String>) -> Self
pub fn next_marker(self, input: impl Into<String>) -> Self
If there are more elements to be listed, this element is present and contains the value that you can use for the Marker
request parameter to continue listing your configurations where you left off.
sourcepub fn set_next_marker(self, input: Option<String>) -> Self
pub fn set_next_marker(self, input: Option<String>) -> Self
If there are more elements to be listed, this element is present and contains the value that you can use for the Marker
request parameter to continue listing your configurations where you left off.
sourcepub fn max_items(self, input: i32) -> Self
pub fn max_items(self, input: i32) -> Self
The maximum number of elements you want in the response body.
sourcepub fn set_max_items(self, input: Option<i32>) -> Self
pub fn set_max_items(self, input: Option<i32>) -> Self
The maximum number of elements you want in the response body.
sourcepub fn set_quantity(self, input: Option<i32>) -> Self
pub fn set_quantity(self, input: Option<i32>) -> Self
The number of field-level encryption items.
sourcepub fn items(self, input: FieldLevelEncryptionSummary) -> Self
pub fn items(self, input: FieldLevelEncryptionSummary) -> Self
Appends an item to items
.
To override the contents of this collection use set_items
.
An array of field-level encryption items.
sourcepub fn set_items(self, input: Option<Vec<FieldLevelEncryptionSummary>>) -> Self
pub fn set_items(self, input: Option<Vec<FieldLevelEncryptionSummary>>) -> Self
An array of field-level encryption items.
sourcepub fn build(self) -> FieldLevelEncryptionList
pub fn build(self) -> FieldLevelEncryptionList
Consumes the builder and constructs a FieldLevelEncryptionList
.