Struct aws_sdk_sagemaker::types::ModelAccessConfig
source · #[non_exhaustive]pub struct ModelAccessConfig {
pub accept_eula: Option<bool>,
}
Expand description
The access configuration file for the ML model. You can explicitly accept the model end-user license agreement (EULA) within the ModelAccessConfig
. For more information, see End-user license agreements.
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
source§fn eq(&self, other: &ModelAccessConfig) -> bool
fn eq(&self, other: &ModelAccessConfig) -> bool
self
and other
values to be equal, and is used
by ==
.