Struct aws_sdk_iot::operation::get_behavior_model_training_summaries::GetBehaviorModelTrainingSummariesInput
source · #[non_exhaustive]pub struct GetBehaviorModelTrainingSummariesInput {
pub security_profile_name: Option<String>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}
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.security_profile_name: Option<String>
The name of the security profile.
max_results: Option<i32>
The maximum number of results to return at one time. The default is 10.
next_token: Option<String>
The token for the next set of results.
Implementations§
source§impl GetBehaviorModelTrainingSummariesInput
impl GetBehaviorModelTrainingSummariesInput
sourcepub fn security_profile_name(&self) -> Option<&str>
pub fn security_profile_name(&self) -> Option<&str>
The name of the security profile.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return at one time. The default is 10.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next set of results.
source§impl GetBehaviorModelTrainingSummariesInput
impl GetBehaviorModelTrainingSummariesInput
sourcepub fn builder() -> GetBehaviorModelTrainingSummariesInputBuilder
pub fn builder() -> GetBehaviorModelTrainingSummariesInputBuilder
Creates a new builder-style object to manufacture GetBehaviorModelTrainingSummariesInput
.
Trait Implementations§
source§impl Clone for GetBehaviorModelTrainingSummariesInput
impl Clone for GetBehaviorModelTrainingSummariesInput
source§fn clone(&self) -> GetBehaviorModelTrainingSummariesInput
fn clone(&self) -> GetBehaviorModelTrainingSummariesInput
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<GetBehaviorModelTrainingSummariesInput> for GetBehaviorModelTrainingSummariesInput
impl PartialEq<GetBehaviorModelTrainingSummariesInput> for GetBehaviorModelTrainingSummariesInput
source§fn eq(&self, other: &GetBehaviorModelTrainingSummariesInput) -> bool
fn eq(&self, other: &GetBehaviorModelTrainingSummariesInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetBehaviorModelTrainingSummariesInput
Auto Trait Implementations§
impl RefUnwindSafe for GetBehaviorModelTrainingSummariesInput
impl Send for GetBehaviorModelTrainingSummariesInput
impl Sync for GetBehaviorModelTrainingSummariesInput
impl Unpin for GetBehaviorModelTrainingSummariesInput
impl UnwindSafe for GetBehaviorModelTrainingSummariesInput
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