#[non_exhaustive]pub struct ListFrameworksOutputBuilder { /* private fields */ }
Expand description
A builder for ListFrameworksOutput
.
Implementations§
source§impl ListFrameworksOutputBuilder
impl ListFrameworksOutputBuilder
sourcepub fn frameworks(self, input: Framework) -> Self
pub fn frameworks(self, input: Framework) -> Self
Appends an item to frameworks
.
To override the contents of this collection use set_frameworks
.
A list of frameworks with details for each framework, including the framework name, Amazon Resource Name (ARN), description, number of controls, creation time, and deployment status.
sourcepub fn set_frameworks(self, input: Option<Vec<Framework>>) -> Self
pub fn set_frameworks(self, input: Option<Vec<Framework>>) -> Self
A list of frameworks with details for each framework, including the framework name, Amazon Resource Name (ARN), description, number of controls, creation time, and deployment status.
sourcepub fn get_frameworks(&self) -> &Option<Vec<Framework>>
pub fn get_frameworks(&self) -> &Option<Vec<Framework>>
A list of frameworks with details for each framework, including the framework name, Amazon Resource Name (ARN), description, number of controls, creation time, and deployment status.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
sourcepub fn build(self) -> ListFrameworksOutput
pub fn build(self) -> ListFrameworksOutput
Consumes the builder and constructs a ListFrameworksOutput
.
Trait Implementations§
source§impl Clone for ListFrameworksOutputBuilder
impl Clone for ListFrameworksOutputBuilder
source§fn clone(&self) -> ListFrameworksOutputBuilder
fn clone(&self) -> ListFrameworksOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListFrameworksOutputBuilder
impl Debug for ListFrameworksOutputBuilder
source§impl Default for ListFrameworksOutputBuilder
impl Default for ListFrameworksOutputBuilder
source§fn default() -> ListFrameworksOutputBuilder
fn default() -> ListFrameworksOutputBuilder
impl StructuralPartialEq for ListFrameworksOutputBuilder
Auto Trait Implementations§
impl Freeze for ListFrameworksOutputBuilder
impl RefUnwindSafe for ListFrameworksOutputBuilder
impl Send for ListFrameworksOutputBuilder
impl Sync for ListFrameworksOutputBuilder
impl Unpin for ListFrameworksOutputBuilder
impl UnwindSafe for ListFrameworksOutputBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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