Struct aws_sdk_securitylake::operation::list_log_sources::builders::ListLogSourcesOutputBuilder
source · #[non_exhaustive]pub struct ListLogSourcesOutputBuilder { /* private fields */ }Expand description
A builder for ListLogSourcesOutput.
Implementations§
source§impl ListLogSourcesOutputBuilder
impl ListLogSourcesOutputBuilder
sourcepub fn sources(self, input: LogSource) -> Self
pub fn sources(self, input: LogSource) -> Self
Appends an item to sources.
To override the contents of this collection use set_sources.
The list of log sources in your organization that send data to the data lake.
sourcepub fn set_sources(self, input: Option<Vec<LogSource>>) -> Self
pub fn set_sources(self, input: Option<Vec<LogSource>>) -> Self
The list of log sources in your organization that send data to the data lake.
sourcepub fn get_sources(&self) -> &Option<Vec<LogSource>>
pub fn get_sources(&self) -> &Option<Vec<LogSource>>
The list of log sources in your organization that send data to the data lake.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If nextToken is returned, there are more results available. You can repeat the call using the returned token to retrieve the next page.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If nextToken is returned, there are more results available. You can repeat the call using the returned token to retrieve the next page.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If nextToken is returned, there are more results available. You can repeat the call using the returned token to retrieve the next page.
sourcepub fn build(self) -> ListLogSourcesOutput
pub fn build(self) -> ListLogSourcesOutput
Consumes the builder and constructs a ListLogSourcesOutput.
Trait Implementations§
source§impl Clone for ListLogSourcesOutputBuilder
impl Clone for ListLogSourcesOutputBuilder
source§fn clone(&self) -> ListLogSourcesOutputBuilder
fn clone(&self) -> ListLogSourcesOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListLogSourcesOutputBuilder
impl Debug for ListLogSourcesOutputBuilder
source§impl Default for ListLogSourcesOutputBuilder
impl Default for ListLogSourcesOutputBuilder
source§fn default() -> ListLogSourcesOutputBuilder
fn default() -> ListLogSourcesOutputBuilder
source§impl PartialEq for ListLogSourcesOutputBuilder
impl PartialEq for ListLogSourcesOutputBuilder
source§fn eq(&self, other: &ListLogSourcesOutputBuilder) -> bool
fn eq(&self, other: &ListLogSourcesOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListLogSourcesOutputBuilder
Auto Trait Implementations§
impl Freeze for ListLogSourcesOutputBuilder
impl RefUnwindSafe for ListLogSourcesOutputBuilder
impl Send for ListLogSourcesOutputBuilder
impl Sync for ListLogSourcesOutputBuilder
impl Unpin for ListLogSourcesOutputBuilder
impl UnwindSafe for ListLogSourcesOutputBuilder
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