Struct aws_sdk_sagemaker::input::UpdateModelPackageInput [−][src]
#[non_exhaustive]pub struct UpdateModelPackageInput {
pub model_package_arn: Option<String>,
pub model_approval_status: Option<ModelApprovalStatus>,
pub approval_description: 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.model_package_arn: Option<String>
The Amazon Resource Name (ARN) of the model.
model_approval_status: Option<ModelApprovalStatus>
The approval status of the model.
approval_description: Option<String>
A description for the approval status of the model.
Implementations
pub fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateModelPackage, AwsErrorRetryPolicy>, BuildError>
pub fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateModelPackage, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateModelPackage
>
Creates a new builder-style object to manufacture UpdateModelPackageInput
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 UpdateModelPackageInput
impl Send for UpdateModelPackageInput
impl Sync for UpdateModelPackageInput
impl Unpin for UpdateModelPackageInput
impl UnwindSafe for UpdateModelPackageInput
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