#[non_exhaustive]pub struct DescribeCustomKeyStoresOutputBuilder { /* private fields */ }Expand description
A builder for DescribeCustomKeyStoresOutput.
Implementations§
Source§impl DescribeCustomKeyStoresOutputBuilder
impl DescribeCustomKeyStoresOutputBuilder
Sourcepub fn custom_key_stores(self, input: CustomKeyStoresListEntry) -> Self
pub fn custom_key_stores(self, input: CustomKeyStoresListEntry) -> Self
Appends an item to custom_key_stores.
To override the contents of this collection use set_custom_key_stores.
Contains metadata about each custom key store.
Sourcepub fn set_custom_key_stores(
self,
input: Option<Vec<CustomKeyStoresListEntry>>,
) -> Self
pub fn set_custom_key_stores( self, input: Option<Vec<CustomKeyStoresListEntry>>, ) -> Self
Contains metadata about each custom key store.
Sourcepub fn get_custom_key_stores(&self) -> &Option<Vec<CustomKeyStoresListEntry>>
pub fn get_custom_key_stores(&self) -> &Option<Vec<CustomKeyStoresListEntry>>
Contains metadata about each custom key store.
Sourcepub fn next_marker(self, input: impl Into<String>) -> Self
pub fn next_marker(self, input: impl Into<String>) -> Self
When Truncated is true, this element is present and contains the value to use for the Marker parameter in a subsequent request.
Sourcepub fn set_next_marker(self, input: Option<String>) -> Self
pub fn set_next_marker(self, input: Option<String>) -> Self
When Truncated is true, this element is present and contains the value to use for the Marker parameter in a subsequent request.
Sourcepub fn get_next_marker(&self) -> &Option<String>
pub fn get_next_marker(&self) -> &Option<String>
When Truncated is true, this element is present and contains the value to use for the Marker parameter in a subsequent request.
Sourcepub fn truncated(self, input: bool) -> Self
pub fn truncated(self, input: bool) -> Self
A flag that indicates whether there are more items in the list. When this value is true, the list in this response is truncated. To get more items, pass the value of the NextMarker element in this response to the Marker parameter in a subsequent request.
Sourcepub fn set_truncated(self, input: Option<bool>) -> Self
pub fn set_truncated(self, input: Option<bool>) -> Self
A flag that indicates whether there are more items in the list. When this value is true, the list in this response is truncated. To get more items, pass the value of the NextMarker element in this response to the Marker parameter in a subsequent request.
Sourcepub fn get_truncated(&self) -> &Option<bool>
pub fn get_truncated(&self) -> &Option<bool>
A flag that indicates whether there are more items in the list. When this value is true, the list in this response is truncated. To get more items, pass the value of the NextMarker element in this response to the Marker parameter in a subsequent request.
Sourcepub fn build(self) -> DescribeCustomKeyStoresOutput
pub fn build(self) -> DescribeCustomKeyStoresOutput
Consumes the builder and constructs a DescribeCustomKeyStoresOutput.
Trait Implementations§
Source§impl Clone for DescribeCustomKeyStoresOutputBuilder
impl Clone for DescribeCustomKeyStoresOutputBuilder
Source§fn clone(&self) -> DescribeCustomKeyStoresOutputBuilder
fn clone(&self) -> DescribeCustomKeyStoresOutputBuilder
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for DescribeCustomKeyStoresOutputBuilder
impl Default for DescribeCustomKeyStoresOutputBuilder
Source§fn default() -> DescribeCustomKeyStoresOutputBuilder
fn default() -> DescribeCustomKeyStoresOutputBuilder
Source§impl PartialEq for DescribeCustomKeyStoresOutputBuilder
impl PartialEq for DescribeCustomKeyStoresOutputBuilder
Source§fn eq(&self, other: &DescribeCustomKeyStoresOutputBuilder) -> bool
fn eq(&self, other: &DescribeCustomKeyStoresOutputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeCustomKeyStoresOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeCustomKeyStoresOutputBuilder
impl RefUnwindSafe for DescribeCustomKeyStoresOutputBuilder
impl Send for DescribeCustomKeyStoresOutputBuilder
impl Sync for DescribeCustomKeyStoresOutputBuilder
impl Unpin for DescribeCustomKeyStoresOutputBuilder
impl UnwindSafe for DescribeCustomKeyStoresOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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