Struct aws_sdk_datasync::operation::describe_storage_system_resource_metrics::DescribeStorageSystemResourceMetricsInput
source · #[non_exhaustive]pub struct DescribeStorageSystemResourceMetricsInput {
pub discovery_job_arn: Option<String>,
pub resource_type: Option<DiscoveryResourceType>,
pub resource_id: Option<String>,
pub start_time: Option<DateTime>,
pub end_time: Option<DateTime>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}
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.discovery_job_arn: Option<String>
Specifies the Amazon Resource Name (ARN) of the discovery job that collects information about your on-premises storage system.
resource_type: Option<DiscoveryResourceType>
Specifies the kind of storage system resource that you want information about.
resource_id: Option<String>
Specifies the universally unique identifier (UUID) of the storage system resource that you want information about.
start_time: Option<DateTime>
Specifies a time within the total duration that the discovery job ran. To see information gathered during a certain time frame, use this parameter with EndTime
.
end_time: Option<DateTime>
Specifies a time within the total duration that the discovery job ran. To see information gathered during a certain time frame, use this parameter with StartTime
.
max_results: Option<i32>
Specifies how many results that you want in the response.
next_token: Option<String>
Specifies an opaque string that indicates the position to begin the next list of results in the response.
Implementations§
source§impl DescribeStorageSystemResourceMetricsInput
impl DescribeStorageSystemResourceMetricsInput
sourcepub fn discovery_job_arn(&self) -> Option<&str>
pub fn discovery_job_arn(&self) -> Option<&str>
Specifies the Amazon Resource Name (ARN) of the discovery job that collects information about your on-premises storage system.
sourcepub fn resource_type(&self) -> Option<&DiscoveryResourceType>
pub fn resource_type(&self) -> Option<&DiscoveryResourceType>
Specifies the kind of storage system resource that you want information about.
sourcepub fn resource_id(&self) -> Option<&str>
pub fn resource_id(&self) -> Option<&str>
Specifies the universally unique identifier (UUID) of the storage system resource that you want information about.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
Specifies a time within the total duration that the discovery job ran. To see information gathered during a certain time frame, use this parameter with EndTime
.
sourcepub fn end_time(&self) -> Option<&DateTime>
pub fn end_time(&self) -> Option<&DateTime>
Specifies a time within the total duration that the discovery job ran. To see information gathered during a certain time frame, use this parameter with StartTime
.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
Specifies how many results that you want in the response.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Specifies an opaque string that indicates the position to begin the next list of results in the response.
source§impl DescribeStorageSystemResourceMetricsInput
impl DescribeStorageSystemResourceMetricsInput
sourcepub fn builder() -> DescribeStorageSystemResourceMetricsInputBuilder
pub fn builder() -> DescribeStorageSystemResourceMetricsInputBuilder
Creates a new builder-style object to manufacture DescribeStorageSystemResourceMetricsInput
.
Trait Implementations§
source§impl Clone for DescribeStorageSystemResourceMetricsInput
impl Clone for DescribeStorageSystemResourceMetricsInput
source§fn clone(&self) -> DescribeStorageSystemResourceMetricsInput
fn clone(&self) -> DescribeStorageSystemResourceMetricsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeStorageSystemResourceMetricsInput
impl PartialEq for DescribeStorageSystemResourceMetricsInput
source§fn eq(&self, other: &DescribeStorageSystemResourceMetricsInput) -> bool
fn eq(&self, other: &DescribeStorageSystemResourceMetricsInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeStorageSystemResourceMetricsInput
Auto Trait Implementations§
impl Freeze for DescribeStorageSystemResourceMetricsInput
impl RefUnwindSafe for DescribeStorageSystemResourceMetricsInput
impl Send for DescribeStorageSystemResourceMetricsInput
impl Sync for DescribeStorageSystemResourceMetricsInput
impl Unpin for DescribeStorageSystemResourceMetricsInput
impl UnwindSafe for DescribeStorageSystemResourceMetricsInput
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