Struct aws_sdk_sagemaker::input::UpdateActionInput [−][src]
#[non_exhaustive]pub struct UpdateActionInput {
pub action_name: Option<String>,
pub description: Option<String>,
pub status: Option<ActionStatus>,
pub properties: Option<HashMap<String, String>>,
pub properties_to_remove: Option<Vec<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.action_name: Option<String>
The name of the action to update.
description: Option<String>
The new description for the action.
status: Option<ActionStatus>
The new status for the action.
properties: Option<HashMap<String, String>>
The new list of properties. Overwrites the current property list.
properties_to_remove: Option<Vec<String>>
A list of properties to remove.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateAction, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateAction, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateAction
>
Creates a new builder-style object to manufacture UpdateActionInput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for UpdateActionInput
impl Send for UpdateActionInput
impl Sync for UpdateActionInput
impl Unpin for UpdateActionInput
impl UnwindSafe for UpdateActionInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more