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 ==
.