#[non_exhaustive]pub struct CreateRecommenderInput {
pub name: Option<String>,
pub dataset_group_arn: Option<String>,
pub recipe_arn: Option<String>,
pub recommender_config: Option<RecommenderConfig>,
pub tags: Option<Vec<Tag>>,
}
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.name: Option<String>
The name of the recommender.
dataset_group_arn: Option<String>
The Amazon Resource Name (ARN) of the destination domain dataset group for the recommender.
recipe_arn: Option<String>
The Amazon Resource Name (ARN) of the recipe that the recommender will use. For a recommender, a recipe is a Domain dataset group use case. Only Domain dataset group use cases can be used to create a recommender. For information about use cases see Choosing recommender use cases.
recommender_config: Option<RecommenderConfig>
The configuration details of the recommender.
A list of tags to apply to the recommender.
Implementations§
source§impl CreateRecommenderInput
impl CreateRecommenderInput
sourcepub fn dataset_group_arn(&self) -> Option<&str>
pub fn dataset_group_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the destination domain dataset group for the recommender.
sourcepub fn recipe_arn(&self) -> Option<&str>
pub fn recipe_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the recipe that the recommender will use. For a recommender, a recipe is a Domain dataset group use case. Only Domain dataset group use cases can be used to create a recommender. For information about use cases see Choosing recommender use cases.
sourcepub fn recommender_config(&self) -> Option<&RecommenderConfig>
pub fn recommender_config(&self) -> Option<&RecommenderConfig>
The configuration details of the recommender.
A list of tags to apply to the recommender.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl CreateRecommenderInput
impl CreateRecommenderInput
sourcepub fn builder() -> CreateRecommenderInputBuilder
pub fn builder() -> CreateRecommenderInputBuilder
Creates a new builder-style object to manufacture CreateRecommenderInput
.
Trait Implementations§
source§impl Clone for CreateRecommenderInput
impl Clone for CreateRecommenderInput
source§fn clone(&self) -> CreateRecommenderInput
fn clone(&self) -> CreateRecommenderInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateRecommenderInput
impl Debug for CreateRecommenderInput
source§impl PartialEq for CreateRecommenderInput
impl PartialEq for CreateRecommenderInput
source§fn eq(&self, other: &CreateRecommenderInput) -> bool
fn eq(&self, other: &CreateRecommenderInput) -> bool
self
and other
values to be equal, and is used
by ==
.