#[non_exhaustive]pub struct GenerateRecommendationsInput {
pub discovery_job_arn: Option<String>,
pub resource_ids: Option<Vec<String>>,
pub resource_type: Option<DiscoveryResourceType>,
}
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_ids: Option<Vec<String>>
Specifies the universally unique identifiers (UUIDs) of the resources in your storage system that you want recommendations on.
resource_type: Option<DiscoveryResourceType>
Specifies the type of resource in your storage system that you want recommendations on.
Implementations§
source§impl GenerateRecommendationsInput
impl GenerateRecommendationsInput
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_ids(&self) -> Option<&[String]>
pub fn resource_ids(&self) -> Option<&[String]>
Specifies the universally unique identifiers (UUIDs) of the resources in your storage system that you want recommendations on.
sourcepub fn resource_type(&self) -> Option<&DiscoveryResourceType>
pub fn resource_type(&self) -> Option<&DiscoveryResourceType>
Specifies the type of resource in your storage system that you want recommendations on.
source§impl GenerateRecommendationsInput
impl GenerateRecommendationsInput
sourcepub fn builder() -> GenerateRecommendationsInputBuilder
pub fn builder() -> GenerateRecommendationsInputBuilder
Creates a new builder-style object to manufacture GenerateRecommendationsInput
.
Trait Implementations§
source§impl Clone for GenerateRecommendationsInput
impl Clone for GenerateRecommendationsInput
source§fn clone(&self) -> GenerateRecommendationsInput
fn clone(&self) -> GenerateRecommendationsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GenerateRecommendationsInput
impl Debug for GenerateRecommendationsInput
source§impl PartialEq for GenerateRecommendationsInput
impl PartialEq for GenerateRecommendationsInput
source§fn eq(&self, other: &GenerateRecommendationsInput) -> bool
fn eq(&self, other: &GenerateRecommendationsInput) -> bool
self
and other
values to be equal, and is used
by ==
.