#[non_exhaustive]pub struct GetDataLakeSourcesOutput {
pub data_lake_arn: Option<String>,
pub data_lake_sources: Option<Vec<DataLakeSource>>,
pub next_token: Option<String>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.data_lake_arn: Option<String>The Amazon Resource Name (ARN) created by you to provide to the subscriber. For more information about ARNs and how to use them in policies, see the Amazon Security Lake User Guide.
data_lake_sources: Option<Vec<DataLakeSource>>The list of enabled accounts and enabled sources.
next_token: Option<String>Lists if there are more results available. The value of nextToken is a unique pagination token for each page. Repeat the call using the returned token to retrieve the next page. Keep all other arguments unchanged.
Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.
Implementations§
source§impl GetDataLakeSourcesOutput
impl GetDataLakeSourcesOutput
sourcepub fn data_lake_arn(&self) -> Option<&str>
pub fn data_lake_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) created by you to provide to the subscriber. For more information about ARNs and how to use them in policies, see the Amazon Security Lake User Guide.
sourcepub fn data_lake_sources(&self) -> &[DataLakeSource]
pub fn data_lake_sources(&self) -> &[DataLakeSource]
The list of enabled accounts and enabled sources.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .data_lake_sources.is_none().
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Lists if there are more results available. The value of nextToken is a unique pagination token for each page. Repeat the call using the returned token to retrieve the next page. Keep all other arguments unchanged.
Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.
source§impl GetDataLakeSourcesOutput
impl GetDataLakeSourcesOutput
sourcepub fn builder() -> GetDataLakeSourcesOutputBuilder
pub fn builder() -> GetDataLakeSourcesOutputBuilder
Creates a new builder-style object to manufacture GetDataLakeSourcesOutput.
Trait Implementations§
source§impl Clone for GetDataLakeSourcesOutput
impl Clone for GetDataLakeSourcesOutput
source§fn clone(&self) -> GetDataLakeSourcesOutput
fn clone(&self) -> GetDataLakeSourcesOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetDataLakeSourcesOutput
impl Debug for GetDataLakeSourcesOutput
source§impl PartialEq for GetDataLakeSourcesOutput
impl PartialEq for GetDataLakeSourcesOutput
source§fn eq(&self, other: &GetDataLakeSourcesOutput) -> bool
fn eq(&self, other: &GetDataLakeSourcesOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for GetDataLakeSourcesOutput
impl RequestId for GetDataLakeSourcesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for GetDataLakeSourcesOutput
Auto Trait Implementations§
impl Freeze for GetDataLakeSourcesOutput
impl RefUnwindSafe for GetDataLakeSourcesOutput
impl Send for GetDataLakeSourcesOutput
impl Sync for GetDataLakeSourcesOutput
impl Unpin for GetDataLakeSourcesOutput
impl UnwindSafe for GetDataLakeSourcesOutput
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> 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