Struct aws_sdk_fsx::operation::describe_data_repository_tasks::DescribeDataRepositoryTasksOutput
source · #[non_exhaustive]pub struct DescribeDataRepositoryTasksOutput {
pub data_repository_tasks: Option<Vec<DataRepositoryTask>>,
pub next_token: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.data_repository_tasks: Option<Vec<DataRepositoryTask>>
The collection of data repository task descriptions returned.
next_token: Option<String>
(Optional) Opaque pagination token returned from a previous operation (String). If present, this token indicates from what point you can continue processing the request, where the previous NextToken
value left off.
Implementations§
source§impl DescribeDataRepositoryTasksOutput
impl DescribeDataRepositoryTasksOutput
sourcepub fn data_repository_tasks(&self) -> Option<&[DataRepositoryTask]>
pub fn data_repository_tasks(&self) -> Option<&[DataRepositoryTask]>
The collection of data repository task descriptions returned.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
(Optional) Opaque pagination token returned from a previous operation (String). If present, this token indicates from what point you can continue processing the request, where the previous NextToken
value left off.
source§impl DescribeDataRepositoryTasksOutput
impl DescribeDataRepositoryTasksOutput
sourcepub fn builder() -> DescribeDataRepositoryTasksOutputBuilder
pub fn builder() -> DescribeDataRepositoryTasksOutputBuilder
Creates a new builder-style object to manufacture DescribeDataRepositoryTasksOutput
.
Trait Implementations§
source§impl Clone for DescribeDataRepositoryTasksOutput
impl Clone for DescribeDataRepositoryTasksOutput
source§fn clone(&self) -> DescribeDataRepositoryTasksOutput
fn clone(&self) -> DescribeDataRepositoryTasksOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<DescribeDataRepositoryTasksOutput> for DescribeDataRepositoryTasksOutput
impl PartialEq<DescribeDataRepositoryTasksOutput> for DescribeDataRepositoryTasksOutput
source§fn eq(&self, other: &DescribeDataRepositoryTasksOutput) -> bool
fn eq(&self, other: &DescribeDataRepositoryTasksOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeDataRepositoryTasksOutput
impl RequestId for DescribeDataRepositoryTasksOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DescribeDataRepositoryTasksOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeDataRepositoryTasksOutput
impl Send for DescribeDataRepositoryTasksOutput
impl Sync for DescribeDataRepositoryTasksOutput
impl Unpin for DescribeDataRepositoryTasksOutput
impl UnwindSafe for DescribeDataRepositoryTasksOutput
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
Mutably borrows from an owned value. Read more