Struct aws_sdk_sagemaker::types::ModelAccessConfig
source · #[non_exhaustive]pub struct ModelAccessConfig {
pub accept_eula: Option<bool>,
}
Expand description
The access configuration file to control access to the ML model. You can explicitly accept the model end-user license agreement (EULA) within the ModelAccessConfig
.
-
If you are a Jumpstart user, see the End-user license agreements section for more details on accepting the EULA.
-
If you are an AutoML user, see the Optional Parameters section of Create an AutoML job to fine-tune text generation models using the API for details on How to set the EULA acceptance when fine-tuning a model using the AutoML API.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.accept_eula: Option<bool>
Specifies agreement to the model end-user license agreement (EULA). The AcceptEula
value must be explicitly defined as True
in order to accept the EULA that this model requires. You are responsible for reviewing and complying with any applicable license terms and making sure they are acceptable for your use case before downloading or using a model.
Implementations§
source§impl ModelAccessConfig
impl ModelAccessConfig
sourcepub fn accept_eula(&self) -> Option<bool>
pub fn accept_eula(&self) -> Option<bool>
Specifies agreement to the model end-user license agreement (EULA). The AcceptEula
value must be explicitly defined as True
in order to accept the EULA that this model requires. You are responsible for reviewing and complying with any applicable license terms and making sure they are acceptable for your use case before downloading or using a model.
source§impl ModelAccessConfig
impl ModelAccessConfig
sourcepub fn builder() -> ModelAccessConfigBuilder
pub fn builder() -> ModelAccessConfigBuilder
Creates a new builder-style object to manufacture ModelAccessConfig
.
Trait Implementations§
source§impl Clone for ModelAccessConfig
impl Clone for ModelAccessConfig
source§fn clone(&self) -> ModelAccessConfig
fn clone(&self) -> ModelAccessConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ModelAccessConfig
impl Debug for ModelAccessConfig
source§impl PartialEq for ModelAccessConfig
impl PartialEq for ModelAccessConfig
impl StructuralPartialEq for ModelAccessConfig
Auto Trait Implementations§
impl Freeze for ModelAccessConfig
impl RefUnwindSafe for ModelAccessConfig
impl Send for ModelAccessConfig
impl Sync for ModelAccessConfig
impl Unpin for ModelAccessConfig
impl UnwindSafe for ModelAccessConfig
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more