Struct aws_sdk_sagemaker::input::UpdateModelPackageInput
source · [−]#[non_exhaustive]pub struct UpdateModelPackageInput { /* private fields */ }
Implementations
sourceimpl UpdateModelPackageInput
impl UpdateModelPackageInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateModelPackage, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateModelPackage, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateModelPackage
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateModelPackageInput
.
sourceimpl UpdateModelPackageInput
impl UpdateModelPackageInput
sourcepub fn model_package_arn(&self) -> Option<&str>
pub fn model_package_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the model package.
sourcepub fn model_approval_status(&self) -> Option<&ModelApprovalStatus>
pub fn model_approval_status(&self) -> Option<&ModelApprovalStatus>
The approval status of the model.
sourcepub fn approval_description(&self) -> Option<&str>
pub fn approval_description(&self) -> Option<&str>
A description for the approval status of the model.
sourcepub fn customer_metadata_properties(&self) -> Option<&HashMap<String, String>>
pub fn customer_metadata_properties(&self) -> Option<&HashMap<String, String>>
The metadata properties associated with the model package versions.
sourcepub fn customer_metadata_properties_to_remove(&self) -> Option<&[String]>
pub fn customer_metadata_properties_to_remove(&self) -> Option<&[String]>
The metadata properties associated with the model package versions to remove.
sourcepub fn additional_inference_specifications_to_add(
&self
) -> Option<&[AdditionalInferenceSpecificationDefinition]>
pub fn additional_inference_specifications_to_add(
&self
) -> Option<&[AdditionalInferenceSpecificationDefinition]>
An array of additional Inference Specification objects to be added to the existing array additional Inference Specification. Total number of additional Inference Specifications can not exceed 15. Each additional Inference Specification specifies artifacts based on this model package that can be used on inference endpoints. Generally used with SageMaker Neo to store the compiled artifacts.
Trait Implementations
sourceimpl Clone for UpdateModelPackageInput
impl Clone for UpdateModelPackageInput
sourcefn clone(&self) -> UpdateModelPackageInput
fn clone(&self) -> UpdateModelPackageInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for UpdateModelPackageInput
impl Debug for UpdateModelPackageInput
sourceimpl PartialEq<UpdateModelPackageInput> for UpdateModelPackageInput
impl PartialEq<UpdateModelPackageInput> for UpdateModelPackageInput
sourcefn eq(&self, other: &UpdateModelPackageInput) -> bool
fn eq(&self, other: &UpdateModelPackageInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for UpdateModelPackageInput
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more