#[non_exhaustive]pub struct UpdateFlywheelInput {
pub flywheel_arn: Option<String>,
pub active_model_arn: Option<String>,
pub data_access_role_arn: Option<String>,
pub data_security_config: Option<UpdateDataSecurityConfig>,
}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.flywheel_arn: Option<String>The Amazon Resource Number (ARN) of the flywheel to update.
active_model_arn: Option<String>The Amazon Resource Number (ARN) of the active model version.
data_access_role_arn: Option<String>The Amazon Resource Name (ARN) of the IAM role that grants Amazon Comprehend permission to access the flywheel data.
data_security_config: Option<UpdateDataSecurityConfig>Flywheel data security configuration.
Implementations§
source§impl UpdateFlywheelInput
impl UpdateFlywheelInput
sourcepub fn flywheel_arn(&self) -> Option<&str>
pub fn flywheel_arn(&self) -> Option<&str>
The Amazon Resource Number (ARN) of the flywheel to update.
sourcepub fn active_model_arn(&self) -> Option<&str>
pub fn active_model_arn(&self) -> Option<&str>
The Amazon Resource Number (ARN) of the active model version.
sourcepub fn data_access_role_arn(&self) -> Option<&str>
pub fn data_access_role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the IAM role that grants Amazon Comprehend permission to access the flywheel data.
sourcepub fn data_security_config(&self) -> Option<&UpdateDataSecurityConfig>
pub fn data_security_config(&self) -> Option<&UpdateDataSecurityConfig>
Flywheel data security configuration.
source§impl UpdateFlywheelInput
impl UpdateFlywheelInput
sourcepub fn builder() -> UpdateFlywheelInputBuilder
pub fn builder() -> UpdateFlywheelInputBuilder
Creates a new builder-style object to manufacture UpdateFlywheelInput.
Trait Implementations§
source§impl Clone for UpdateFlywheelInput
impl Clone for UpdateFlywheelInput
source§fn clone(&self) -> UpdateFlywheelInput
fn clone(&self) -> UpdateFlywheelInput
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 Debug for UpdateFlywheelInput
impl Debug for UpdateFlywheelInput
source§impl PartialEq for UpdateFlywheelInput
impl PartialEq for UpdateFlywheelInput
source§fn eq(&self, other: &UpdateFlywheelInput) -> bool
fn eq(&self, other: &UpdateFlywheelInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateFlywheelInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateFlywheelInput
impl Send for UpdateFlywheelInput
impl Sync for UpdateFlywheelInput
impl Unpin for UpdateFlywheelInput
impl UnwindSafe for UpdateFlywheelInput
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
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>
Creates a shared type from an unshared type.