#[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.