amazonka-sagemaker-2.0: Amazon SageMaker Service SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.SageMaker.Types.Model

Description

 
Synopsis

Documentation

data Model Source #

The properties of a model as returned by the Search API.

See: newModel smart constructor.

Constructors

Model' 

Fields

Instances

Instances details
FromJSON Model Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Model

Generic Model Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Model

Associated Types

type Rep Model :: Type -> Type #

Methods

from :: Model -> Rep Model x #

to :: Rep Model x -> Model #

Read Model Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Model

Show Model Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Model

Methods

showsPrec :: Int -> Model -> ShowS #

show :: Model -> String #

showList :: [Model] -> ShowS #

NFData Model Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Model

Methods

rnf :: Model -> () #

Eq Model Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Model

Methods

(==) :: Model -> Model -> Bool #

(/=) :: Model -> Model -> Bool #

Hashable Model Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Model

Methods

hashWithSalt :: Int -> Model -> Int #

hash :: Model -> Int #

type Rep Model Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Model

newModel :: Model Source #

Create a value of Model with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:containers:Model', model_containers - The containers in the inference pipeline.

$sel:creationTime:Model', model_creationTime - A timestamp that indicates when the model was created.

$sel:enableNetworkIsolation:Model', model_enableNetworkIsolation - Isolates the model container. No inbound or outbound network calls can be made to or from the model container.

$sel:executionRoleArn:Model', model_executionRoleArn - The Amazon Resource Name (ARN) of the IAM role that you specified for the model.

$sel:inferenceExecutionConfig:Model', model_inferenceExecutionConfig - Undocumented member.

$sel:modelArn:Model', model_modelArn - The Amazon Resource Name (ARN) of the model.

$sel:modelName:Model', model_modelName - The name of the model.

$sel:primaryContainer:Model', model_primaryContainer - Undocumented member.

$sel:tags:Model', model_tags - A list of key-value pairs associated with the model. For more information, see Tagging Amazon Web Services resources in the Amazon Web Services General Reference Guide.

$sel:vpcConfig:Model', model_vpcConfig - Undocumented member.

model_containers :: Lens' Model (Maybe [ContainerDefinition]) Source #

The containers in the inference pipeline.

model_creationTime :: Lens' Model (Maybe UTCTime) Source #

A timestamp that indicates when the model was created.

model_enableNetworkIsolation :: Lens' Model (Maybe Bool) Source #

Isolates the model container. No inbound or outbound network calls can be made to or from the model container.

model_executionRoleArn :: Lens' Model (Maybe Text) Source #

The Amazon Resource Name (ARN) of the IAM role that you specified for the model.

model_modelArn :: Lens' Model (Maybe Text) Source #

The Amazon Resource Name (ARN) of the model.

model_modelName :: Lens' Model (Maybe Text) Source #

The name of the model.

model_tags :: Lens' Model (Maybe [Tag]) Source #

A list of key-value pairs associated with the model. For more information, see Tagging Amazon Web Services resources in the Amazon Web Services General Reference Guide.

model_vpcConfig :: Lens' Model (Maybe VpcConfig) Source #

Undocumented member.