amazonka-lookoutvision-2.0: Amazon Lookout for Vision 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.LookoutVision

Description

Derived from API version 2020-11-20 of the AWS service descriptions, licensed under Apache 2.0.

This is the Amazon Lookout for Vision API Reference. It provides descriptions of actions, data types, common parameters, and common errors.

Amazon Lookout for Vision enables you to find visual defects in industrial products, accurately and at scale. It uses computer vision to identify missing components in an industrial product, damage to vehicles or structures, irregularities in production lines, and even minuscule defects in silicon wafers — or any other physical item where quality is important such as a missing capacitor on printed circuit boards.

Synopsis

Service Configuration

defaultService :: Service Source #

API version 2020-11-20 of the Amazon Lookout for Vision SDK configuration.

Errors

Error matchers are designed for use with the functions provided by Control.Exception.Lens. This allows catching (and rethrowing) service specific errors returned by LookoutVision.

AccessDeniedException

_AccessDeniedException :: AsError a => Fold a ServiceError Source #

You are not authorized to perform the action.

ConflictException

_ConflictException :: AsError a => Fold a ServiceError Source #

The update or deletion of a resource caused an inconsistent state.

InternalServerException

_InternalServerException :: AsError a => Fold a ServiceError Source #

Amazon Lookout for Vision experienced a service issue. Try your call again.

ResourceNotFoundException

_ResourceNotFoundException :: AsError a => Fold a ServiceError Source #

The resource could not be found.

ServiceQuotaExceededException

_ServiceQuotaExceededException :: AsError a => Fold a ServiceError Source #

A service quota was exceeded the allowed limit. For more information, see Limits in Amazon Lookout for Vision in the Amazon Lookout for Vision Developer Guide.

ThrottlingException

_ThrottlingException :: AsError a => Fold a ServiceError Source #

Amazon Lookout for Vision is temporarily unable to process the request. Try your call again.

ValidationException

_ValidationException :: AsError a => Fold a ServiceError Source #

An input validation error occured. For example, invalid characters in a project name, or if a pagination token is invalid.

Waiters

Waiters poll by repeatedly sending a request until some remote success condition configured by the Wait specification is fulfilled. The Wait specification determines how many attempts should be made, in addition to delay and retry strategies.

Operations

Some AWS operations return results that are incomplete and require subsequent requests in order to obtain the entire result set. The process of sending subsequent requests to continue where a previous request left off is called pagination. For example, the ListObjects operation of Amazon S3 returns up to 1000 objects at a time, and you must send subsequent requests with the appropriate Marker in order to retrieve the next page of results.

Operations that have an AWSPager instance can transparently perform subsequent requests, correctly setting Markers and other request facets to iterate through the entire result set of a truncated API operation. Operations which support this have an additional note in the documentation.

Many operations have the ability to filter results on the server side. See the individual operation parameters for details.

CreateDataset

data CreateDataset Source #

See: newCreateDataset smart constructor.

Instances

Instances details
ToJSON CreateDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateDataset

ToHeaders CreateDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateDataset

ToPath CreateDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateDataset

ToQuery CreateDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateDataset

AWSRequest CreateDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateDataset

Associated Types

type AWSResponse CreateDataset #

Generic CreateDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateDataset

Associated Types

type Rep CreateDataset :: Type -> Type #

Read CreateDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateDataset

Show CreateDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateDataset

NFData CreateDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateDataset

Methods

rnf :: CreateDataset -> () #

Eq CreateDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateDataset

Hashable CreateDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateDataset

type AWSResponse CreateDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateDataset

type Rep CreateDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateDataset

type Rep CreateDataset = D1 ('MetaData "CreateDataset" "Amazonka.LookoutVision.CreateDataset" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "CreateDataset'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "clientToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "datasetSource") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DatasetSource))) :*: (S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "datasetType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newCreateDataset Source #

Create a value of CreateDataset 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:clientToken:CreateDataset', createDataset_clientToken - ClientToken is an idempotency token that ensures a call to CreateDataset completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from CreateDataset. In this case, safely retry your call to CreateDataset by using the same ClientToken parameter value.

If you don't supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple dataset creation requests. You'll need to provide your own value for other use cases.

An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to CreateDataset. An idempotency token is active for 8 hours.

$sel:datasetSource:CreateDataset', createDataset_datasetSource - The location of the manifest file that Amazon Lookout for Vision uses to create the dataset.

If you don't specify DatasetSource, an empty dataset is created and the operation synchronously returns. Later, you can add JSON Lines by calling UpdateDatasetEntries.

If you specify a value for DataSource, the manifest at the S3 location is validated and used to create the dataset. The call to CreateDataset is asynchronous and might take a while to complete. To find out the current status, Check the value of Status returned in a call to DescribeDataset.

CreateDataset, createDataset_projectName - The name of the project in which you want to create a dataset.

CreateDataset, createDataset_datasetType - The type of the dataset. Specify train for a training dataset. Specify test for a test dataset.

data CreateDatasetResponse Source #

See: newCreateDatasetResponse smart constructor.

Instances

Instances details
Generic CreateDatasetResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateDataset

Associated Types

type Rep CreateDatasetResponse :: Type -> Type #

Read CreateDatasetResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateDataset

Show CreateDatasetResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateDataset

NFData CreateDatasetResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateDataset

Methods

rnf :: CreateDatasetResponse -> () #

Eq CreateDatasetResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateDataset

type Rep CreateDatasetResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateDataset

type Rep CreateDatasetResponse = D1 ('MetaData "CreateDatasetResponse" "Amazonka.LookoutVision.CreateDataset" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "CreateDatasetResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "datasetMetadata") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DatasetMetadata)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newCreateDatasetResponse Source #

Create a value of CreateDatasetResponse 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:datasetMetadata:CreateDatasetResponse', createDatasetResponse_datasetMetadata - Information about the dataset.

$sel:httpStatus:CreateDatasetResponse', createDatasetResponse_httpStatus - The response's http status code.

CreateModel

data CreateModel Source #

See: newCreateModel smart constructor.

Instances

Instances details
ToJSON CreateModel Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateModel

ToHeaders CreateModel Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateModel

Methods

toHeaders :: CreateModel -> [Header] #

ToPath CreateModel Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateModel

ToQuery CreateModel Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateModel

AWSRequest CreateModel Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateModel

Associated Types

type AWSResponse CreateModel #

Generic CreateModel Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateModel

Associated Types

type Rep CreateModel :: Type -> Type #

Read CreateModel Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateModel

Show CreateModel Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateModel

NFData CreateModel Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateModel

Methods

rnf :: CreateModel -> () #

Eq CreateModel Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateModel

Hashable CreateModel Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateModel

type AWSResponse CreateModel Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateModel

type Rep CreateModel Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateModel

type Rep CreateModel = D1 ('MetaData "CreateModel" "Amazonka.LookoutVision.CreateModel" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "CreateModel'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "clientToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "kmsKeyId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag])) :*: (S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "outputConfig") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 OutputConfig)))))

newCreateModel Source #

Create a value of CreateModel 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:clientToken:CreateModel', createModel_clientToken - ClientToken is an idempotency token that ensures a call to CreateModel completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from CreateModel. In this case, safely retry your call to CreateModel by using the same ClientToken parameter value.

If you don't supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from starting multiple training jobs. You'll need to provide your own value for other use cases.

An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to CreateModel. An idempotency token is active for 8 hours.

CreateModel, createModel_description - A description for the version of the model.

CreateModel, createModel_kmsKeyId - The identifier for your AWS KMS key. The key is used to encrypt training and test images copied into the service for model training. Your source images are unaffected. If this parameter is not specified, the copied images are encrypted by a key that AWS owns and manages.

CreateModel, createModel_tags - A set of tags (key-value pairs) that you want to attach to the model.

CreateModel, createModel_projectName - The name of the project in which you want to create a model version.

CreateModel, createModel_outputConfig - The location where Amazon Lookout for Vision saves the training results.

data CreateModelResponse Source #

See: newCreateModelResponse smart constructor.

Instances

Instances details
Generic CreateModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateModel

Associated Types

type Rep CreateModelResponse :: Type -> Type #

Read CreateModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateModel

Show CreateModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateModel

NFData CreateModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateModel

Methods

rnf :: CreateModelResponse -> () #

Eq CreateModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateModel

type Rep CreateModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateModel

type Rep CreateModelResponse = D1 ('MetaData "CreateModelResponse" "Amazonka.LookoutVision.CreateModel" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "CreateModelResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "modelMetadata") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelMetadata)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newCreateModelResponse Source #

Create a value of CreateModelResponse 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:modelMetadata:CreateModelResponse', createModelResponse_modelMetadata - The response from a call to CreateModel.

$sel:httpStatus:CreateModelResponse', createModelResponse_httpStatus - The response's http status code.

CreateProject

data CreateProject Source #

See: newCreateProject smart constructor.

Constructors

CreateProject' (Maybe Text) Text 

Instances

Instances details
ToJSON CreateProject Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateProject

ToHeaders CreateProject Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateProject

ToPath CreateProject Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateProject

ToQuery CreateProject Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateProject

AWSRequest CreateProject Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateProject

Associated Types

type AWSResponse CreateProject #

Generic CreateProject Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateProject

Associated Types

type Rep CreateProject :: Type -> Type #

Read CreateProject Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateProject

Show CreateProject Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateProject

NFData CreateProject Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateProject

Methods

rnf :: CreateProject -> () #

Eq CreateProject Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateProject

Hashable CreateProject Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateProject

type AWSResponse CreateProject Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateProject

type Rep CreateProject Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateProject

type Rep CreateProject = D1 ('MetaData "CreateProject" "Amazonka.LookoutVision.CreateProject" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "CreateProject'" 'PrefixI 'True) (S1 ('MetaSel ('Just "clientToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newCreateProject Source #

Create a value of CreateProject 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:clientToken:CreateProject', createProject_clientToken - ClientToken is an idempotency token that ensures a call to CreateProject completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from CreateProject. In this case, safely retry your call to CreateProject by using the same ClientToken parameter value.

If you don't supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple project creation requests. You'll need to provide your own value for other use cases.

An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to CreateProject. An idempotency token is active for 8 hours.

CreateProject, createProject_projectName - The name for the project.

data CreateProjectResponse Source #

See: newCreateProjectResponse smart constructor.

Instances

Instances details
Generic CreateProjectResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateProject

Associated Types

type Rep CreateProjectResponse :: Type -> Type #

Read CreateProjectResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateProject

Show CreateProjectResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateProject

NFData CreateProjectResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateProject

Methods

rnf :: CreateProjectResponse -> () #

Eq CreateProjectResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateProject

type Rep CreateProjectResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.CreateProject

type Rep CreateProjectResponse = D1 ('MetaData "CreateProjectResponse" "Amazonka.LookoutVision.CreateProject" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "CreateProjectResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "projectMetadata") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ProjectMetadata)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newCreateProjectResponse Source #

Create a value of CreateProjectResponse 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:projectMetadata:CreateProjectResponse', createProjectResponse_projectMetadata - Information about the project.

$sel:httpStatus:CreateProjectResponse', createProjectResponse_httpStatus - The response's http status code.

DeleteDataset

data DeleteDataset Source #

See: newDeleteDataset smart constructor.

Instances

Instances details
ToHeaders DeleteDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteDataset

ToPath DeleteDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteDataset

ToQuery DeleteDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteDataset

AWSRequest DeleteDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteDataset

Associated Types

type AWSResponse DeleteDataset #

Generic DeleteDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteDataset

Associated Types

type Rep DeleteDataset :: Type -> Type #

Read DeleteDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteDataset

Show DeleteDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteDataset

NFData DeleteDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteDataset

Methods

rnf :: DeleteDataset -> () #

Eq DeleteDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteDataset

Hashable DeleteDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteDataset

type AWSResponse DeleteDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteDataset

type Rep DeleteDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteDataset

type Rep DeleteDataset = D1 ('MetaData "DeleteDataset" "Amazonka.LookoutVision.DeleteDataset" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "DeleteDataset'" 'PrefixI 'True) (S1 ('MetaSel ('Just "clientToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "datasetType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newDeleteDataset Source #

Create a value of DeleteDataset 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:clientToken:DeleteDataset', deleteDataset_clientToken - ClientToken is an idempotency token that ensures a call to DeleteDataset completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from DeleteDataset. In this case, safely retry your call to DeleteDataset by using the same ClientToken parameter value.

If you don't supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple deletetion requests. You'll need to provide your own value for other use cases.

An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to DeleteDataset. An idempotency token is active for 8 hours.

DeleteDataset, deleteDataset_projectName - The name of the project that contains the dataset that you want to delete.

DeleteDataset, deleteDataset_datasetType - The type of the dataset to delete. Specify train to delete the training dataset. Specify test to delete the test dataset. To delete the dataset in a single dataset project, specify train.

data DeleteDatasetResponse Source #

See: newDeleteDatasetResponse smart constructor.

Instances

Instances details
Generic DeleteDatasetResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteDataset

Associated Types

type Rep DeleteDatasetResponse :: Type -> Type #

Read DeleteDatasetResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteDataset

Show DeleteDatasetResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteDataset

NFData DeleteDatasetResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteDataset

Methods

rnf :: DeleteDatasetResponse -> () #

Eq DeleteDatasetResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteDataset

type Rep DeleteDatasetResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteDataset

type Rep DeleteDatasetResponse = D1 ('MetaData "DeleteDatasetResponse" "Amazonka.LookoutVision.DeleteDataset" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "DeleteDatasetResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteDatasetResponse Source #

Create a value of DeleteDatasetResponse 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:httpStatus:DeleteDatasetResponse', deleteDatasetResponse_httpStatus - The response's http status code.

DeleteModel

data DeleteModel Source #

See: newDeleteModel smart constructor.

Constructors

DeleteModel' (Maybe Text) Text Text 

Instances

Instances details
ToHeaders DeleteModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteModel

Methods

toHeaders :: DeleteModel -> [Header] #

ToPath DeleteModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteModel

ToQuery DeleteModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteModel

AWSRequest DeleteModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteModel

Associated Types

type AWSResponse DeleteModel #

Generic DeleteModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteModel

Associated Types

type Rep DeleteModel :: Type -> Type #

Read DeleteModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteModel

Show DeleteModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteModel

NFData DeleteModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteModel

Methods

rnf :: DeleteModel -> () #

Eq DeleteModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteModel

Hashable DeleteModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteModel

type AWSResponse DeleteModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteModel

type Rep DeleteModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteModel

type Rep DeleteModel = D1 ('MetaData "DeleteModel" "Amazonka.LookoutVision.DeleteModel" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "DeleteModel'" 'PrefixI 'True) (S1 ('MetaSel ('Just "clientToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "modelVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newDeleteModel Source #

Create a value of DeleteModel 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:clientToken:DeleteModel', deleteModel_clientToken - ClientToken is an idempotency token that ensures a call to DeleteModel completes only once. You choose the value to pass. For example, an issue might prevent you from getting a response from DeleteModel. In this case, safely retry your call to DeleteModel by using the same ClientToken parameter value.

If you don't supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple model deletion requests. You'll need to provide your own value for other use cases.

An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to DeleteModel. An idempotency token is active for 8 hours.

DeleteModel, deleteModel_projectName - The name of the project that contains the model that you want to delete.

DeleteModel, deleteModel_modelVersion - The version of the model that you want to delete.

data DeleteModelResponse Source #

See: newDeleteModelResponse smart constructor.

Instances

Instances details
Generic DeleteModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteModel

Associated Types

type Rep DeleteModelResponse :: Type -> Type #

Read DeleteModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteModel

Show DeleteModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteModel

NFData DeleteModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteModel

Methods

rnf :: DeleteModelResponse -> () #

Eq DeleteModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteModel

type Rep DeleteModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteModel

type Rep DeleteModelResponse = D1 ('MetaData "DeleteModelResponse" "Amazonka.LookoutVision.DeleteModel" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "DeleteModelResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "modelArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteModelResponse Source #

Create a value of DeleteModelResponse 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:

DeleteModelResponse, deleteModelResponse_modelArn - The Amazon Resource Name (ARN) of the model that was deleted.

$sel:httpStatus:DeleteModelResponse', deleteModelResponse_httpStatus - The response's http status code.

DeleteProject

data DeleteProject Source #

See: newDeleteProject smart constructor.

Constructors

DeleteProject' (Maybe Text) Text 

Instances

Instances details
ToHeaders DeleteProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteProject

ToPath DeleteProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteProject

ToQuery DeleteProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteProject

AWSRequest DeleteProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteProject

Associated Types

type AWSResponse DeleteProject #

Generic DeleteProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteProject

Associated Types

type Rep DeleteProject :: Type -> Type #

Read DeleteProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteProject

Show DeleteProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteProject

NFData DeleteProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteProject

Methods

rnf :: DeleteProject -> () #

Eq DeleteProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteProject

Hashable DeleteProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteProject

type AWSResponse DeleteProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteProject

type Rep DeleteProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteProject

type Rep DeleteProject = D1 ('MetaData "DeleteProject" "Amazonka.LookoutVision.DeleteProject" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "DeleteProject'" 'PrefixI 'True) (S1 ('MetaSel ('Just "clientToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDeleteProject Source #

Create a value of DeleteProject 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:clientToken:DeleteProject', deleteProject_clientToken - ClientToken is an idempotency token that ensures a call to DeleteProject completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from DeleteProject. In this case, safely retry your call to DeleteProject by using the same ClientToken parameter value.

If you don't supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple project deletion requests. You'll need to provide your own value for other use cases.

An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to DeleteProject. An idempotency token is active for 8 hours.

DeleteProject, deleteProject_projectName - The name of the project to delete.

data DeleteProjectResponse Source #

See: newDeleteProjectResponse smart constructor.

Instances

Instances details
Generic DeleteProjectResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteProject

Associated Types

type Rep DeleteProjectResponse :: Type -> Type #

Read DeleteProjectResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteProject

Show DeleteProjectResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteProject

NFData DeleteProjectResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteProject

Methods

rnf :: DeleteProjectResponse -> () #

Eq DeleteProjectResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteProject

type Rep DeleteProjectResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DeleteProject

type Rep DeleteProjectResponse = D1 ('MetaData "DeleteProjectResponse" "Amazonka.LookoutVision.DeleteProject" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "DeleteProjectResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "projectArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteProjectResponse Source #

Create a value of DeleteProjectResponse 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:

DeleteProjectResponse, deleteProjectResponse_projectArn - The Amazon Resource Name (ARN) of the project that was deleted.

$sel:httpStatus:DeleteProjectResponse', deleteProjectResponse_httpStatus - The response's http status code.

DescribeDataset

data DescribeDataset Source #

See: newDescribeDataset smart constructor.

Constructors

DescribeDataset' Text Text 

Instances

Instances details
ToHeaders DescribeDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeDataset

ToPath DescribeDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeDataset

ToQuery DescribeDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeDataset

AWSRequest DescribeDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeDataset

Associated Types

type AWSResponse DescribeDataset #

Generic DescribeDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeDataset

Associated Types

type Rep DescribeDataset :: Type -> Type #

Read DescribeDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeDataset

Show DescribeDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeDataset

NFData DescribeDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeDataset

Methods

rnf :: DescribeDataset -> () #

Eq DescribeDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeDataset

Hashable DescribeDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeDataset

type AWSResponse DescribeDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeDataset

type Rep DescribeDataset Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeDataset

type Rep DescribeDataset = D1 ('MetaData "DescribeDataset" "Amazonka.LookoutVision.DescribeDataset" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "DescribeDataset'" 'PrefixI 'True) (S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "datasetType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDescribeDataset Source #

Create a value of DescribeDataset 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:

DescribeDataset, describeDataset_projectName - The name of the project that contains the dataset that you want to describe.

DescribeDataset, describeDataset_datasetType - The type of the dataset to describe. Specify train to describe the training dataset. Specify test to describe the test dataset. If you have a single dataset project, specify train

data DescribeDatasetResponse Source #

See: newDescribeDatasetResponse smart constructor.

Instances

Instances details
Generic DescribeDatasetResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeDataset

Associated Types

type Rep DescribeDatasetResponse :: Type -> Type #

Read DescribeDatasetResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeDataset

Show DescribeDatasetResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeDataset

NFData DescribeDatasetResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeDataset

Methods

rnf :: DescribeDatasetResponse -> () #

Eq DescribeDatasetResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeDataset

type Rep DescribeDatasetResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeDataset

type Rep DescribeDatasetResponse = D1 ('MetaData "DescribeDatasetResponse" "Amazonka.LookoutVision.DescribeDataset" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "DescribeDatasetResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "datasetDescription") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DatasetDescription)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDescribeDatasetResponse Source #

Create a value of DescribeDatasetResponse 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:datasetDescription:DescribeDatasetResponse', describeDatasetResponse_datasetDescription - The description of the requested dataset.

$sel:httpStatus:DescribeDatasetResponse', describeDatasetResponse_httpStatus - The response's http status code.

DescribeModel

data DescribeModel Source #

See: newDescribeModel smart constructor.

Constructors

DescribeModel' Text Text 

Instances

Instances details
ToHeaders DescribeModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModel

ToPath DescribeModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModel

ToQuery DescribeModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModel

AWSRequest DescribeModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModel

Associated Types

type AWSResponse DescribeModel #

Generic DescribeModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModel

Associated Types

type Rep DescribeModel :: Type -> Type #

Read DescribeModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModel

Show DescribeModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModel

NFData DescribeModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModel

Methods

rnf :: DescribeModel -> () #

Eq DescribeModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModel

Hashable DescribeModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModel

type AWSResponse DescribeModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModel

type Rep DescribeModel Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModel

type Rep DescribeModel = D1 ('MetaData "DescribeModel" "Amazonka.LookoutVision.DescribeModel" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "DescribeModel'" 'PrefixI 'True) (S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "modelVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDescribeModel Source #

Create a value of DescribeModel 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:

DescribeModel, describeModel_projectName - The project that contains the version of a model that you want to describe.

DescribeModel, describeModel_modelVersion - The version of the model that you want to describe.

data DescribeModelResponse Source #

See: newDescribeModelResponse smart constructor.

Instances

Instances details
Generic DescribeModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModel

Associated Types

type Rep DescribeModelResponse :: Type -> Type #

Read DescribeModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModel

Show DescribeModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModel

NFData DescribeModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModel

Methods

rnf :: DescribeModelResponse -> () #

Eq DescribeModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModel

type Rep DescribeModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModel

type Rep DescribeModelResponse = D1 ('MetaData "DescribeModelResponse" "Amazonka.LookoutVision.DescribeModel" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "DescribeModelResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "modelDescription") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelDescription)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDescribeModelResponse Source #

Create a value of DescribeModelResponse 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:modelDescription:DescribeModelResponse', describeModelResponse_modelDescription - Contains the description of the model.

$sel:httpStatus:DescribeModelResponse', describeModelResponse_httpStatus - The response's http status code.

DescribeModelPackagingJob

data DescribeModelPackagingJob Source #

See: newDescribeModelPackagingJob smart constructor.

Instances

Instances details
ToHeaders DescribeModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModelPackagingJob

ToPath DescribeModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModelPackagingJob

ToQuery DescribeModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModelPackagingJob

AWSRequest DescribeModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModelPackagingJob

Generic DescribeModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModelPackagingJob

Associated Types

type Rep DescribeModelPackagingJob :: Type -> Type #

Read DescribeModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModelPackagingJob

Show DescribeModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModelPackagingJob

NFData DescribeModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModelPackagingJob

Eq DescribeModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModelPackagingJob

Hashable DescribeModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModelPackagingJob

type AWSResponse DescribeModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModelPackagingJob

type Rep DescribeModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModelPackagingJob

type Rep DescribeModelPackagingJob = D1 ('MetaData "DescribeModelPackagingJob" "Amazonka.LookoutVision.DescribeModelPackagingJob" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "DescribeModelPackagingJob'" 'PrefixI 'True) (S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "jobName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDescribeModelPackagingJob Source #

Create a value of DescribeModelPackagingJob 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:

DescribeModelPackagingJob, describeModelPackagingJob_projectName - The name of the project that contains the model packaging job that you want to describe.

DescribeModelPackagingJob, describeModelPackagingJob_jobName - The job name for the model packaging job.

data DescribeModelPackagingJobResponse Source #

See: newDescribeModelPackagingJobResponse smart constructor.

Instances

Instances details
Generic DescribeModelPackagingJobResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModelPackagingJob

Associated Types

type Rep DescribeModelPackagingJobResponse :: Type -> Type #

Read DescribeModelPackagingJobResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModelPackagingJob

Show DescribeModelPackagingJobResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModelPackagingJob

NFData DescribeModelPackagingJobResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModelPackagingJob

Eq DescribeModelPackagingJobResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModelPackagingJob

type Rep DescribeModelPackagingJobResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeModelPackagingJob

type Rep DescribeModelPackagingJobResponse = D1 ('MetaData "DescribeModelPackagingJobResponse" "Amazonka.LookoutVision.DescribeModelPackagingJob" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "DescribeModelPackagingJobResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "modelPackagingDescription") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelPackagingDescription)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDescribeModelPackagingJobResponse Source #

Create a value of DescribeModelPackagingJobResponse 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:modelPackagingDescription:DescribeModelPackagingJobResponse', describeModelPackagingJobResponse_modelPackagingDescription - The description of the model packaging job.

$sel:httpStatus:DescribeModelPackagingJobResponse', describeModelPackagingJobResponse_httpStatus - The response's http status code.

DescribeProject

data DescribeProject Source #

See: newDescribeProject smart constructor.

Constructors

DescribeProject' Text 

Instances

Instances details
ToHeaders DescribeProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeProject

ToPath DescribeProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeProject

ToQuery DescribeProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeProject

AWSRequest DescribeProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeProject

Associated Types

type AWSResponse DescribeProject #

Generic DescribeProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeProject

Associated Types

type Rep DescribeProject :: Type -> Type #

Read DescribeProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeProject

Show DescribeProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeProject

NFData DescribeProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeProject

Methods

rnf :: DescribeProject -> () #

Eq DescribeProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeProject

Hashable DescribeProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeProject

type AWSResponse DescribeProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeProject

type Rep DescribeProject Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeProject

type Rep DescribeProject = D1 ('MetaData "DescribeProject" "Amazonka.LookoutVision.DescribeProject" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "DescribeProject'" 'PrefixI 'True) (S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDescribeProject Source #

Create a value of DescribeProject 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:

DescribeProject, describeProject_projectName - The name of the project that you want to describe.

data DescribeProjectResponse Source #

See: newDescribeProjectResponse smart constructor.

Instances

Instances details
Generic DescribeProjectResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeProject

Associated Types

type Rep DescribeProjectResponse :: Type -> Type #

Read DescribeProjectResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeProject

Show DescribeProjectResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeProject

NFData DescribeProjectResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeProject

Methods

rnf :: DescribeProjectResponse -> () #

Eq DescribeProjectResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeProject

type Rep DescribeProjectResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DescribeProject

type Rep DescribeProjectResponse = D1 ('MetaData "DescribeProjectResponse" "Amazonka.LookoutVision.DescribeProject" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "DescribeProjectResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "projectDescription") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ProjectDescription)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDescribeProjectResponse Source #

Create a value of DescribeProjectResponse 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:projectDescription:DescribeProjectResponse', describeProjectResponse_projectDescription - The description of the project.

$sel:httpStatus:DescribeProjectResponse', describeProjectResponse_httpStatus - The response's http status code.

DetectAnomalies

data DetectAnomalies Source #

See: newDetectAnomalies smart constructor.

Instances

Instances details
ToBody DetectAnomalies Source # 
Instance details

Defined in Amazonka.LookoutVision.DetectAnomalies

ToHeaders DetectAnomalies Source # 
Instance details

Defined in Amazonka.LookoutVision.DetectAnomalies

ToPath DetectAnomalies Source # 
Instance details

Defined in Amazonka.LookoutVision.DetectAnomalies

ToQuery DetectAnomalies Source # 
Instance details

Defined in Amazonka.LookoutVision.DetectAnomalies

AWSRequest DetectAnomalies Source # 
Instance details

Defined in Amazonka.LookoutVision.DetectAnomalies

Associated Types

type AWSResponse DetectAnomalies #

Generic DetectAnomalies Source # 
Instance details

Defined in Amazonka.LookoutVision.DetectAnomalies

Associated Types

type Rep DetectAnomalies :: Type -> Type #

Show DetectAnomalies Source # 
Instance details

Defined in Amazonka.LookoutVision.DetectAnomalies

type AWSResponse DetectAnomalies Source # 
Instance details

Defined in Amazonka.LookoutVision.DetectAnomalies

type Rep DetectAnomalies Source # 
Instance details

Defined in Amazonka.LookoutVision.DetectAnomalies

type Rep DetectAnomalies = D1 ('MetaData "DetectAnomalies" "Amazonka.LookoutVision.DetectAnomalies" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "DetectAnomalies'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "modelVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "contentType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "body") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 HashedBody))))

newDetectAnomalies Source #

Create a value of DetectAnomalies 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:

DetectAnomalies, detectAnomalies_projectName - The name of the project that contains the model version that you want to use.

DetectAnomalies, detectAnomalies_modelVersion - The version of the model that you want to use.

$sel:contentType:DetectAnomalies', detectAnomalies_contentType - The type of the image passed in Body. Valid values are image/png (PNG format images) and image/jpeg (JPG format images).

$sel:body:DetectAnomalies', detectAnomalies_body - The unencrypted image bytes that you want to analyze.

data DetectAnomaliesResponse Source #

See: newDetectAnomaliesResponse smart constructor.

Instances

Instances details
Generic DetectAnomaliesResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DetectAnomalies

Associated Types

type Rep DetectAnomaliesResponse :: Type -> Type #

Read DetectAnomaliesResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DetectAnomalies

Show DetectAnomaliesResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DetectAnomalies

NFData DetectAnomaliesResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DetectAnomalies

Methods

rnf :: DetectAnomaliesResponse -> () #

Eq DetectAnomaliesResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DetectAnomalies

type Rep DetectAnomaliesResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.DetectAnomalies

type Rep DetectAnomaliesResponse = D1 ('MetaData "DetectAnomaliesResponse" "Amazonka.LookoutVision.DetectAnomalies" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "DetectAnomaliesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "detectAnomalyResult") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DetectAnomalyResult)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDetectAnomaliesResponse Source #

Create a value of DetectAnomaliesResponse 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:detectAnomalyResult:DetectAnomaliesResponse', detectAnomaliesResponse_detectAnomalyResult - The results of the DetectAnomalies operation.

$sel:httpStatus:DetectAnomaliesResponse', detectAnomaliesResponse_httpStatus - The response's http status code.

ListDatasetEntries (Paginated)

data ListDatasetEntries Source #

See: newListDatasetEntries smart constructor.

Instances

Instances details
ToHeaders ListDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.ListDatasetEntries

ToPath ListDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.ListDatasetEntries

ToQuery ListDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.ListDatasetEntries

AWSPager ListDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.ListDatasetEntries

AWSRequest ListDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.ListDatasetEntries

Associated Types

type AWSResponse ListDatasetEntries #

Generic ListDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.ListDatasetEntries

Associated Types

type Rep ListDatasetEntries :: Type -> Type #

Read ListDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.ListDatasetEntries

Show ListDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.ListDatasetEntries

NFData ListDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.ListDatasetEntries

Methods

rnf :: ListDatasetEntries -> () #

Eq ListDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.ListDatasetEntries

Hashable ListDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.ListDatasetEntries

type AWSResponse ListDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.ListDatasetEntries

type Rep ListDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.ListDatasetEntries

type Rep ListDatasetEntries = D1 ('MetaData "ListDatasetEntries" "Amazonka.LookoutVision.ListDatasetEntries" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "ListDatasetEntries'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "afterCreationDate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "anomalyClass") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "beforeCreationDate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "labeled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)))) :*: ((S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "sourceRefContains") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "datasetType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))))

newListDatasetEntries Source #

Create a value of ListDatasetEntries 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:afterCreationDate:ListDatasetEntries', listDatasetEntries_afterCreationDate - Only includes entries after the specified date in the response. For example, 2020-06-23T00:00:00.

$sel:anomalyClass:ListDatasetEntries', listDatasetEntries_anomalyClass - Specify normal to include only normal images. Specify anomaly to only include anomalous entries. If you don't specify a value, Amazon Lookout for Vision returns normal and anomalous images.

$sel:beforeCreationDate:ListDatasetEntries', listDatasetEntries_beforeCreationDate - Only includes entries before the specified date in the response. For example, 2020-06-23T00:00:00.

ListDatasetEntries, listDatasetEntries_labeled - Specify true to include labeled entries, otherwise specify false. If you don't specify a value, Lookout for Vision returns all entries.

$sel:maxResults:ListDatasetEntries', listDatasetEntries_maxResults - The maximum number of results to return per paginated call. The largest value you can specify is 100. If you specify a value greater than 100, a ValidationException error occurs. The default value is 100.

ListDatasetEntries, listDatasetEntries_nextToken - If the previous response was incomplete (because there is more data to retrieve), Amazon Lookout for Vision returns a pagination token in the response. You can use this pagination token to retrieve the next set of dataset entries.

$sel:sourceRefContains:ListDatasetEntries', listDatasetEntries_sourceRefContains - Perform a "contains" search on the values of the source-ref key within the dataset. For example a value of "IMG_17" returns all JSON Lines where the source-ref key value matches *IMG_17*.

ListDatasetEntries, listDatasetEntries_projectName - The name of the project that contains the dataset that you want to list.

ListDatasetEntries, listDatasetEntries_datasetType - The type of the dataset that you want to list. Specify train to list the training dataset. Specify test to list the test dataset. If you have a single dataset project, specify train.

data ListDatasetEntriesResponse Source #

See: newListDatasetEntriesResponse smart constructor.

Instances

Instances details
Generic ListDatasetEntriesResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListDatasetEntries

Associated Types

type Rep ListDatasetEntriesResponse :: Type -> Type #

Read ListDatasetEntriesResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListDatasetEntries

Show ListDatasetEntriesResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListDatasetEntries

NFData ListDatasetEntriesResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListDatasetEntries

Eq ListDatasetEntriesResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListDatasetEntries

type Rep ListDatasetEntriesResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListDatasetEntries

type Rep ListDatasetEntriesResponse = D1 ('MetaData "ListDatasetEntriesResponse" "Amazonka.LookoutVision.ListDatasetEntries" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "ListDatasetEntriesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "datasetEntries") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListDatasetEntriesResponse Source #

Create a value of ListDatasetEntriesResponse 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:datasetEntries:ListDatasetEntriesResponse', listDatasetEntriesResponse_datasetEntries - A list of the entries (JSON Lines) within the dataset.

ListDatasetEntries, listDatasetEntriesResponse_nextToken - If the response is truncated, Amazon Lookout for Vision returns this token that you can use in the subsequent request to retrieve the next set ofdataset entries.

$sel:httpStatus:ListDatasetEntriesResponse', listDatasetEntriesResponse_httpStatus - The response's http status code.

ListModelPackagingJobs (Paginated)

data ListModelPackagingJobs Source #

See: newListModelPackagingJobs smart constructor.

Instances

Instances details
ToHeaders ListModelPackagingJobs Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModelPackagingJobs

ToPath ListModelPackagingJobs Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModelPackagingJobs

ToQuery ListModelPackagingJobs Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModelPackagingJobs

AWSPager ListModelPackagingJobs Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModelPackagingJobs

AWSRequest ListModelPackagingJobs Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModelPackagingJobs

Associated Types

type AWSResponse ListModelPackagingJobs #

Generic ListModelPackagingJobs Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModelPackagingJobs

Associated Types

type Rep ListModelPackagingJobs :: Type -> Type #

Read ListModelPackagingJobs Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModelPackagingJobs

Show ListModelPackagingJobs Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModelPackagingJobs

NFData ListModelPackagingJobs Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModelPackagingJobs

Methods

rnf :: ListModelPackagingJobs -> () #

Eq ListModelPackagingJobs Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModelPackagingJobs

Hashable ListModelPackagingJobs Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModelPackagingJobs

type AWSResponse ListModelPackagingJobs Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModelPackagingJobs

type Rep ListModelPackagingJobs Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModelPackagingJobs

type Rep ListModelPackagingJobs = D1 ('MetaData "ListModelPackagingJobs" "Amazonka.LookoutVision.ListModelPackagingJobs" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "ListModelPackagingJobs'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newListModelPackagingJobs Source #

Create a value of ListModelPackagingJobs 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:maxResults:ListModelPackagingJobs', listModelPackagingJobs_maxResults - The maximum number of results to return per paginated call. The largest value you can specify is 100. If you specify a value greater than 100, a ValidationException error occurs. The default value is 100.

ListModelPackagingJobs, listModelPackagingJobs_nextToken - If the previous response was incomplete (because there is more results to retrieve), Amazon Lookout for Vision returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.

ListModelPackagingJobs, listModelPackagingJobs_projectName - The name of the project for which you want to list the model packaging jobs.

data ListModelPackagingJobsResponse Source #

See: newListModelPackagingJobsResponse smart constructor.

Instances

Instances details
Generic ListModelPackagingJobsResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModelPackagingJobs

Associated Types

type Rep ListModelPackagingJobsResponse :: Type -> Type #

Read ListModelPackagingJobsResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModelPackagingJobs

Show ListModelPackagingJobsResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModelPackagingJobs

NFData ListModelPackagingJobsResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModelPackagingJobs

Eq ListModelPackagingJobsResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModelPackagingJobs

type Rep ListModelPackagingJobsResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModelPackagingJobs

type Rep ListModelPackagingJobsResponse = D1 ('MetaData "ListModelPackagingJobsResponse" "Amazonka.LookoutVision.ListModelPackagingJobs" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "ListModelPackagingJobsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "modelPackagingJobs") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ModelPackagingJobMetadata])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListModelPackagingJobsResponse Source #

Create a value of ListModelPackagingJobsResponse 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:modelPackagingJobs:ListModelPackagingJobsResponse', listModelPackagingJobsResponse_modelPackagingJobs - A list of the model packaging jobs created for the specified Amazon Lookout for Vision project.

ListModelPackagingJobs, listModelPackagingJobsResponse_nextToken - If the previous response was incomplete (because there is more results to retrieve), Amazon Lookout for Vision returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.

$sel:httpStatus:ListModelPackagingJobsResponse', listModelPackagingJobsResponse_httpStatus - The response's http status code.

ListModels (Paginated)

data ListModels Source #

See: newListModels smart constructor.

Instances

Instances details
ToHeaders ListModels Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModels

Methods

toHeaders :: ListModels -> [Header] #

ToPath ListModels Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModels

ToQuery ListModels Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModels

AWSPager ListModels Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModels

AWSRequest ListModels Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModels

Associated Types

type AWSResponse ListModels #

Generic ListModels Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModels

Associated Types

type Rep ListModels :: Type -> Type #

Read ListModels Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModels

Show ListModels Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModels

NFData ListModels Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModels

Methods

rnf :: ListModels -> () #

Eq ListModels Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModels

Hashable ListModels Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModels

type AWSResponse ListModels Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModels

type Rep ListModels Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModels

type Rep ListModels = D1 ('MetaData "ListModels" "Amazonka.LookoutVision.ListModels" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "ListModels'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newListModels Source #

Arguments

:: Text

ListModels

-> ListModels 

Create a value of ListModels 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:maxResults:ListModels', listModels_maxResults - The maximum number of results to return per paginated call. The largest value you can specify is 100. If you specify a value greater than 100, a ValidationException error occurs. The default value is 100.

ListModels, listModels_nextToken - If the previous response was incomplete (because there is more data to retrieve), Amazon Lookout for Vision returns a pagination token in the response. You can use this pagination token to retrieve the next set of models.

ListModels, listModels_projectName - The name of the project that contains the model versions that you want to list.

data ListModelsResponse Source #

See: newListModelsResponse smart constructor.

Instances

Instances details
Generic ListModelsResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModels

Associated Types

type Rep ListModelsResponse :: Type -> Type #

Read ListModelsResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModels

Show ListModelsResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModels

NFData ListModelsResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModels

Methods

rnf :: ListModelsResponse -> () #

Eq ListModelsResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModels

type Rep ListModelsResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListModels

type Rep ListModelsResponse = D1 ('MetaData "ListModelsResponse" "Amazonka.LookoutVision.ListModels" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "ListModelsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "models") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ModelMetadata])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListModelsResponse Source #

Create a value of ListModelsResponse 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:models:ListModelsResponse', listModelsResponse_models - A list of model versions in the specified project.

ListModels, listModelsResponse_nextToken - If the response is truncated, Amazon Lookout for Vision returns this token that you can use in the subsequent request to retrieve the next set of models.

$sel:httpStatus:ListModelsResponse', listModelsResponse_httpStatus - The response's http status code.

ListProjects (Paginated)

data ListProjects Source #

See: newListProjects smart constructor.

Instances

Instances details
ToHeaders ListProjects Source # 
Instance details

Defined in Amazonka.LookoutVision.ListProjects

ToPath ListProjects Source # 
Instance details

Defined in Amazonka.LookoutVision.ListProjects

ToQuery ListProjects Source # 
Instance details

Defined in Amazonka.LookoutVision.ListProjects

AWSPager ListProjects Source # 
Instance details

Defined in Amazonka.LookoutVision.ListProjects

AWSRequest ListProjects Source # 
Instance details

Defined in Amazonka.LookoutVision.ListProjects

Associated Types

type AWSResponse ListProjects #

Generic ListProjects Source # 
Instance details

Defined in Amazonka.LookoutVision.ListProjects

Associated Types

type Rep ListProjects :: Type -> Type #

Read ListProjects Source # 
Instance details

Defined in Amazonka.LookoutVision.ListProjects

Show ListProjects Source # 
Instance details

Defined in Amazonka.LookoutVision.ListProjects

NFData ListProjects Source # 
Instance details

Defined in Amazonka.LookoutVision.ListProjects

Methods

rnf :: ListProjects -> () #

Eq ListProjects Source # 
Instance details

Defined in Amazonka.LookoutVision.ListProjects

Hashable ListProjects Source # 
Instance details

Defined in Amazonka.LookoutVision.ListProjects

type AWSResponse ListProjects Source # 
Instance details

Defined in Amazonka.LookoutVision.ListProjects

type Rep ListProjects Source # 
Instance details

Defined in Amazonka.LookoutVision.ListProjects

type Rep ListProjects = D1 ('MetaData "ListProjects" "Amazonka.LookoutVision.ListProjects" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "ListProjects'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newListProjects :: ListProjects Source #

Create a value of ListProjects 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:maxResults:ListProjects', listProjects_maxResults - The maximum number of results to return per paginated call. The largest value you can specify is 100. If you specify a value greater than 100, a ValidationException error occurs. The default value is 100.

ListProjects, listProjects_nextToken - If the previous response was incomplete (because there is more data to retrieve), Amazon Lookout for Vision returns a pagination token in the response. You can use this pagination token to retrieve the next set of projects.

data ListProjectsResponse Source #

See: newListProjectsResponse smart constructor.

Instances

Instances details
Generic ListProjectsResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListProjects

Associated Types

type Rep ListProjectsResponse :: Type -> Type #

Read ListProjectsResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListProjects

Show ListProjectsResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListProjects

NFData ListProjectsResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListProjects

Methods

rnf :: ListProjectsResponse -> () #

Eq ListProjectsResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListProjects

type Rep ListProjectsResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListProjects

type Rep ListProjectsResponse = D1 ('MetaData "ListProjectsResponse" "Amazonka.LookoutVision.ListProjects" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "ListProjectsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "projects") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ProjectMetadata])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListProjectsResponse Source #

Create a value of ListProjectsResponse 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:

ListProjects, listProjectsResponse_nextToken - If the response is truncated, Amazon Lookout for Vision returns this token that you can use in the subsequent request to retrieve the next set of projects.

$sel:projects:ListProjectsResponse', listProjectsResponse_projects - A list of projects in your AWS account.

$sel:httpStatus:ListProjectsResponse', listProjectsResponse_httpStatus - The response's http status code.

ListTagsForResource

data ListTagsForResource Source #

See: newListTagsForResource smart constructor.

Instances

Instances details
ToHeaders ListTagsForResource Source # 
Instance details

Defined in Amazonka.LookoutVision.ListTagsForResource

ToPath ListTagsForResource Source # 
Instance details

Defined in Amazonka.LookoutVision.ListTagsForResource

ToQuery ListTagsForResource Source # 
Instance details

Defined in Amazonka.LookoutVision.ListTagsForResource

AWSRequest ListTagsForResource Source # 
Instance details

Defined in Amazonka.LookoutVision.ListTagsForResource

Associated Types

type AWSResponse ListTagsForResource #

Generic ListTagsForResource Source # 
Instance details

Defined in Amazonka.LookoutVision.ListTagsForResource

Associated Types

type Rep ListTagsForResource :: Type -> Type #

Read ListTagsForResource Source # 
Instance details

Defined in Amazonka.LookoutVision.ListTagsForResource

Show ListTagsForResource Source # 
Instance details

Defined in Amazonka.LookoutVision.ListTagsForResource

NFData ListTagsForResource Source # 
Instance details

Defined in Amazonka.LookoutVision.ListTagsForResource

Methods

rnf :: ListTagsForResource -> () #

Eq ListTagsForResource Source # 
Instance details

Defined in Amazonka.LookoutVision.ListTagsForResource

Hashable ListTagsForResource Source # 
Instance details

Defined in Amazonka.LookoutVision.ListTagsForResource

type AWSResponse ListTagsForResource Source # 
Instance details

Defined in Amazonka.LookoutVision.ListTagsForResource

type Rep ListTagsForResource Source # 
Instance details

Defined in Amazonka.LookoutVision.ListTagsForResource

type Rep ListTagsForResource = D1 ('MetaData "ListTagsForResource" "Amazonka.LookoutVision.ListTagsForResource" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "ListTagsForResource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resourceArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newListTagsForResource Source #

Create a value of ListTagsForResource 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:resourceArn:ListTagsForResource', listTagsForResource_resourceArn - The Amazon Resource Name (ARN) of the model for which you want to list tags.

data ListTagsForResourceResponse Source #

See: newListTagsForResourceResponse smart constructor.

Instances

Instances details
Generic ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListTagsForResource

Associated Types

type Rep ListTagsForResourceResponse :: Type -> Type #

Read ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListTagsForResource

Show ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListTagsForResource

NFData ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListTagsForResource

Eq ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListTagsForResource

type Rep ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.ListTagsForResource

type Rep ListTagsForResourceResponse = D1 ('MetaData "ListTagsForResourceResponse" "Amazonka.LookoutVision.ListTagsForResource" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "ListTagsForResourceResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newListTagsForResourceResponse Source #

Create a value of ListTagsForResourceResponse 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:

ListTagsForResourceResponse, listTagsForResourceResponse_tags - A map of tag keys and values attached to the specified model.

$sel:httpStatus:ListTagsForResourceResponse', listTagsForResourceResponse_httpStatus - The response's http status code.

StartModel

data StartModel Source #

See: newStartModel smart constructor.

Instances

Instances details
ToJSON StartModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModel

ToHeaders StartModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModel

Methods

toHeaders :: StartModel -> [Header] #

ToPath StartModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModel

ToQuery StartModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModel

AWSRequest StartModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModel

Associated Types

type AWSResponse StartModel #

Generic StartModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModel

Associated Types

type Rep StartModel :: Type -> Type #

Read StartModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModel

Show StartModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModel

NFData StartModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModel

Methods

rnf :: StartModel -> () #

Eq StartModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModel

Hashable StartModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModel

type AWSResponse StartModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModel

type Rep StartModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModel

type Rep StartModel = D1 ('MetaData "StartModel" "Amazonka.LookoutVision.StartModel" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "StartModel'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "clientToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxInferenceUnits") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "modelVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "minInferenceUnits") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Natural)))))

newStartModel Source #

Create a value of StartModel 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:clientToken:StartModel', startModel_clientToken - ClientToken is an idempotency token that ensures a call to StartModel completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from StartModel. In this case, safely retry your call to StartModel by using the same ClientToken parameter value.

If you don't supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple start requests. You'll need to provide your own value for other use cases.

An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to StartModel. An idempotency token is active for 8 hours.

StartModel, startModel_maxInferenceUnits - The maximum number of inference units to use for auto-scaling the model. If you don't specify a value, Amazon Lookout for Vision doesn't auto-scale the model.

StartModel, startModel_projectName - The name of the project that contains the model that you want to start.

StartModel, startModel_modelVersion - The version of the model that you want to start.

StartModel, startModel_minInferenceUnits - The minimum number of inference units to use. A single inference unit represents 1 hour of processing. Use a higher number to increase the TPS throughput of your model. You are charged for the number of inference units that you use.

data StartModelResponse Source #

See: newStartModelResponse smart constructor.

Instances

Instances details
Generic StartModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModel

Associated Types

type Rep StartModelResponse :: Type -> Type #

Read StartModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModel

Show StartModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModel

NFData StartModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModel

Methods

rnf :: StartModelResponse -> () #

Eq StartModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModel

type Rep StartModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModel

type Rep StartModelResponse = D1 ('MetaData "StartModelResponse" "Amazonka.LookoutVision.StartModel" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "StartModelResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelHostingStatus)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newStartModelResponse Source #

Create a value of StartModelResponse 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:

StartModelResponse, startModelResponse_status - The current running status of the model.

$sel:httpStatus:StartModelResponse', startModelResponse_httpStatus - The response's http status code.

StartModelPackagingJob

data StartModelPackagingJob Source #

See: newStartModelPackagingJob smart constructor.

Instances

Instances details
ToJSON StartModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModelPackagingJob

ToHeaders StartModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModelPackagingJob

ToPath StartModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModelPackagingJob

ToQuery StartModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModelPackagingJob

AWSRequest StartModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModelPackagingJob

Associated Types

type AWSResponse StartModelPackagingJob #

Generic StartModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModelPackagingJob

Associated Types

type Rep StartModelPackagingJob :: Type -> Type #

Read StartModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModelPackagingJob

Show StartModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModelPackagingJob

NFData StartModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModelPackagingJob

Methods

rnf :: StartModelPackagingJob -> () #

Eq StartModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModelPackagingJob

Hashable StartModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModelPackagingJob

type AWSResponse StartModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModelPackagingJob

type Rep StartModelPackagingJob Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModelPackagingJob

type Rep StartModelPackagingJob = D1 ('MetaData "StartModelPackagingJob" "Amazonka.LookoutVision.StartModelPackagingJob" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "StartModelPackagingJob'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "clientToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "jobName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "modelVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "configuration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ModelPackagingConfiguration)))))

newStartModelPackagingJob Source #

Create a value of StartModelPackagingJob 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:clientToken:StartModelPackagingJob', startModelPackagingJob_clientToken - ClientToken is an idempotency token that ensures a call to StartModelPackagingJob completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from StartModelPackagingJob. In this case, safely retry your call to StartModelPackagingJob by using the same ClientToken parameter value.

If you don't supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple dataset creation requests. You'll need to provide your own value for other use cases.

An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to StartModelPackagingJob. An idempotency token is active for 8 hours.

StartModelPackagingJob, startModelPackagingJob_description - A description for the model packaging job.

StartModelPackagingJob, startModelPackagingJob_jobName - A name for the model packaging job. If you don't supply a value, the service creates a job name for you.

StartModelPackagingJob, startModelPackagingJob_projectName - The name of the project which contains the version of the model that you want to package.

StartModelPackagingJob, startModelPackagingJob_modelVersion - The version of the model within the project that you want to package.

$sel:configuration:StartModelPackagingJob', startModelPackagingJob_configuration - The configuration for the model packaging job.

data StartModelPackagingJobResponse Source #

See: newStartModelPackagingJobResponse smart constructor.

Instances

Instances details
Generic StartModelPackagingJobResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModelPackagingJob

Associated Types

type Rep StartModelPackagingJobResponse :: Type -> Type #

Read StartModelPackagingJobResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModelPackagingJob

Show StartModelPackagingJobResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModelPackagingJob

NFData StartModelPackagingJobResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModelPackagingJob

Eq StartModelPackagingJobResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModelPackagingJob

type Rep StartModelPackagingJobResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.StartModelPackagingJob

type Rep StartModelPackagingJobResponse = D1 ('MetaData "StartModelPackagingJobResponse" "Amazonka.LookoutVision.StartModelPackagingJob" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "StartModelPackagingJobResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "jobName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newStartModelPackagingJobResponse Source #

Create a value of StartModelPackagingJobResponse 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:

StartModelPackagingJob, startModelPackagingJobResponse_jobName - The job name for the model packaging job. If you don't supply a job name in the JobName input parameter, the service creates a job name for you.

$sel:httpStatus:StartModelPackagingJobResponse', startModelPackagingJobResponse_httpStatus - The response's http status code.

StopModel

data StopModel Source #

See: newStopModel smart constructor.

Constructors

StopModel' (Maybe Text) Text Text 

Instances

Instances details
ToJSON StopModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StopModel

ToHeaders StopModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StopModel

Methods

toHeaders :: StopModel -> [Header] #

ToPath StopModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StopModel

ToQuery StopModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StopModel

AWSRequest StopModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StopModel

Associated Types

type AWSResponse StopModel #

Generic StopModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StopModel

Associated Types

type Rep StopModel :: Type -> Type #

Read StopModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StopModel

Show StopModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StopModel

NFData StopModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StopModel

Methods

rnf :: StopModel -> () #

Eq StopModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StopModel

Hashable StopModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StopModel

type AWSResponse StopModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StopModel

type Rep StopModel Source # 
Instance details

Defined in Amazonka.LookoutVision.StopModel

type Rep StopModel = D1 ('MetaData "StopModel" "Amazonka.LookoutVision.StopModel" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "StopModel'" 'PrefixI 'True) (S1 ('MetaSel ('Just "clientToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "modelVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newStopModel Source #

Create a value of StopModel 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:clientToken:StopModel', stopModel_clientToken - ClientToken is an idempotency token that ensures a call to StopModel completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from StopModel. In this case, safely retry your call to StopModel by using the same ClientToken parameter value.

If you don't supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple stop requests. You'll need to provide your own value for other use cases.

An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to StopModel. An idempotency token is active for 8 hours.

StopModel, stopModel_projectName - The name of the project that contains the model that you want to stop.

StopModel, stopModel_modelVersion - The version of the model that you want to stop.

data StopModelResponse Source #

See: newStopModelResponse smart constructor.

Instances

Instances details
Generic StopModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.StopModel

Associated Types

type Rep StopModelResponse :: Type -> Type #

Read StopModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.StopModel

Show StopModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.StopModel

NFData StopModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.StopModel

Methods

rnf :: StopModelResponse -> () #

Eq StopModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.StopModel

type Rep StopModelResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.StopModel

type Rep StopModelResponse = D1 ('MetaData "StopModelResponse" "Amazonka.LookoutVision.StopModel" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "StopModelResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelHostingStatus)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newStopModelResponse Source #

Create a value of StopModelResponse 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:

StopModelResponse, stopModelResponse_status - The status of the model.

$sel:httpStatus:StopModelResponse', stopModelResponse_httpStatus - The response's http status code.

TagResource

data TagResource Source #

See: newTagResource smart constructor.

Constructors

TagResource' Text [Tag] 

Instances

Instances details
ToJSON TagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.TagResource

ToHeaders TagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.TagResource

Methods

toHeaders :: TagResource -> [Header] #

ToPath TagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.TagResource

ToQuery TagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.TagResource

AWSRequest TagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.TagResource

Associated Types

type AWSResponse TagResource #

Generic TagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.TagResource

Associated Types

type Rep TagResource :: Type -> Type #

Read TagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.TagResource

Show TagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.TagResource

NFData TagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.TagResource

Methods

rnf :: TagResource -> () #

Eq TagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.TagResource

Hashable TagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.TagResource

type AWSResponse TagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.TagResource

type Rep TagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.TagResource

type Rep TagResource = D1 ('MetaData "TagResource" "Amazonka.LookoutVision.TagResource" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "TagResource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resourceArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Tag])))

newTagResource Source #

Create a value of TagResource 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:resourceArn:TagResource', tagResource_resourceArn - The Amazon Resource Name (ARN) of the model to assign the tags.

TagResource, tagResource_tags - The key-value tags to assign to the model.

data TagResourceResponse Source #

See: newTagResourceResponse smart constructor.

Instances

Instances details
Generic TagResourceResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.TagResource

Associated Types

type Rep TagResourceResponse :: Type -> Type #

Read TagResourceResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.TagResource

Show TagResourceResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.TagResource

NFData TagResourceResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.TagResource

Methods

rnf :: TagResourceResponse -> () #

Eq TagResourceResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.TagResource

type Rep TagResourceResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.TagResource

type Rep TagResourceResponse = D1 ('MetaData "TagResourceResponse" "Amazonka.LookoutVision.TagResource" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "TagResourceResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newTagResourceResponse Source #

Create a value of TagResourceResponse 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:httpStatus:TagResourceResponse', tagResourceResponse_httpStatus - The response's http status code.

UntagResource

data UntagResource Source #

See: newUntagResource smart constructor.

Constructors

UntagResource' Text [Text] 

Instances

Instances details
ToHeaders UntagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.UntagResource

ToPath UntagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.UntagResource

ToQuery UntagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.UntagResource

AWSRequest UntagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.UntagResource

Associated Types

type AWSResponse UntagResource #

Generic UntagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.UntagResource

Associated Types

type Rep UntagResource :: Type -> Type #

Read UntagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.UntagResource

Show UntagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.UntagResource

NFData UntagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.UntagResource

Methods

rnf :: UntagResource -> () #

Eq UntagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.UntagResource

Hashable UntagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.UntagResource

type AWSResponse UntagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.UntagResource

type Rep UntagResource Source # 
Instance details

Defined in Amazonka.LookoutVision.UntagResource

type Rep UntagResource = D1 ('MetaData "UntagResource" "Amazonka.LookoutVision.UntagResource" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "UntagResource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resourceArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "tagKeys") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Text])))

newUntagResource Source #

Create a value of UntagResource 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:resourceArn:UntagResource', untagResource_resourceArn - The Amazon Resource Name (ARN) of the model from which you want to remove tags.

$sel:tagKeys:UntagResource', untagResource_tagKeys - A list of the keys of the tags that you want to remove.

data UntagResourceResponse Source #

See: newUntagResourceResponse smart constructor.

Instances

Instances details
Generic UntagResourceResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.UntagResource

Associated Types

type Rep UntagResourceResponse :: Type -> Type #

Read UntagResourceResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.UntagResource

Show UntagResourceResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.UntagResource

NFData UntagResourceResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.UntagResource

Methods

rnf :: UntagResourceResponse -> () #

Eq UntagResourceResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.UntagResource

type Rep UntagResourceResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.UntagResource

type Rep UntagResourceResponse = D1 ('MetaData "UntagResourceResponse" "Amazonka.LookoutVision.UntagResource" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "UntagResourceResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUntagResourceResponse Source #

Create a value of UntagResourceResponse 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:httpStatus:UntagResourceResponse', untagResourceResponse_httpStatus - The response's http status code.

UpdateDatasetEntries

data UpdateDatasetEntries Source #

See: newUpdateDatasetEntries smart constructor.

Instances

Instances details
ToJSON UpdateDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.UpdateDatasetEntries

ToHeaders UpdateDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.UpdateDatasetEntries

ToPath UpdateDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.UpdateDatasetEntries

ToQuery UpdateDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.UpdateDatasetEntries

AWSRequest UpdateDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.UpdateDatasetEntries

Associated Types

type AWSResponse UpdateDatasetEntries #

Generic UpdateDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.UpdateDatasetEntries

Associated Types

type Rep UpdateDatasetEntries :: Type -> Type #

Read UpdateDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.UpdateDatasetEntries

Show UpdateDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.UpdateDatasetEntries

NFData UpdateDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.UpdateDatasetEntries

Methods

rnf :: UpdateDatasetEntries -> () #

Eq UpdateDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.UpdateDatasetEntries

Hashable UpdateDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.UpdateDatasetEntries

type AWSResponse UpdateDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.UpdateDatasetEntries

type Rep UpdateDatasetEntries Source # 
Instance details

Defined in Amazonka.LookoutVision.UpdateDatasetEntries

type Rep UpdateDatasetEntries = D1 ('MetaData "UpdateDatasetEntries" "Amazonka.LookoutVision.UpdateDatasetEntries" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "UpdateDatasetEntries'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "clientToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "datasetType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "changes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Base64))))

newUpdateDatasetEntries Source #

Create a value of UpdateDatasetEntries 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:clientToken:UpdateDatasetEntries', updateDatasetEntries_clientToken - ClientToken is an idempotency token that ensures a call to UpdateDatasetEntries completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response from UpdateDatasetEntries. In this case, safely retry your call to UpdateDatasetEntries by using the same ClientToken parameter value.

If you don't supply a value for ClientToken, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple updates with the same dataset entries. You'll need to provide your own value for other use cases.

An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to UpdateDatasetEntries. An idempotency token is active for 8 hours.

UpdateDatasetEntries, updateDatasetEntries_projectName - The name of the project that contains the dataset that you want to update.

UpdateDatasetEntries, updateDatasetEntries_datasetType - The type of the dataset that you want to update. Specify train to update the training dataset. Specify test to update the test dataset. If you have a single dataset project, specify train.

$sel:changes:UpdateDatasetEntries', updateDatasetEntries_changes - The entries to add to the dataset.-- -- Note: This Lens automatically encodes and decodes Base64 data. -- The underlying isomorphism will encode to Base64 representation during -- serialisation, and decode from Base64 representation during deserialisation. -- This Lens accepts and returns only raw unencoded data.

data UpdateDatasetEntriesResponse Source #

See: newUpdateDatasetEntriesResponse smart constructor.

Instances

Instances details
Generic UpdateDatasetEntriesResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.UpdateDatasetEntries

Associated Types

type Rep UpdateDatasetEntriesResponse :: Type -> Type #

Read UpdateDatasetEntriesResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.UpdateDatasetEntries

Show UpdateDatasetEntriesResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.UpdateDatasetEntries

NFData UpdateDatasetEntriesResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.UpdateDatasetEntries

Eq UpdateDatasetEntriesResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.UpdateDatasetEntries

type Rep UpdateDatasetEntriesResponse Source # 
Instance details

Defined in Amazonka.LookoutVision.UpdateDatasetEntries

type Rep UpdateDatasetEntriesResponse = D1 ('MetaData "UpdateDatasetEntriesResponse" "Amazonka.LookoutVision.UpdateDatasetEntries" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "UpdateDatasetEntriesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DatasetStatus)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUpdateDatasetEntriesResponse Source #

Create a value of UpdateDatasetEntriesResponse 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:

UpdateDatasetEntriesResponse, updateDatasetEntriesResponse_status - The status of the dataset update.

$sel:httpStatus:UpdateDatasetEntriesResponse', updateDatasetEntriesResponse_httpStatus - The response's http status code.

Types

DatasetStatus

newtype DatasetStatus Source #

Constructors

DatasetStatus' 

Instances

Instances details
FromJSON DatasetStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetStatus

FromJSONKey DatasetStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetStatus

ToJSON DatasetStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetStatus

ToJSONKey DatasetStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetStatus

ToByteString DatasetStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetStatus

ToHeader DatasetStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetStatus

ToLog DatasetStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetStatus

ToQuery DatasetStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetStatus

FromText DatasetStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetStatus

ToText DatasetStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetStatus

Methods

toText :: DatasetStatus -> Text #

FromXML DatasetStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetStatus

ToXML DatasetStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetStatus

Methods

toXML :: DatasetStatus -> XML #

Generic DatasetStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetStatus

Associated Types

type Rep DatasetStatus :: Type -> Type #

Read DatasetStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetStatus

Show DatasetStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetStatus

NFData DatasetStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetStatus

Methods

rnf :: DatasetStatus -> () #

Eq DatasetStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetStatus

Ord DatasetStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetStatus

Hashable DatasetStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetStatus

type Rep DatasetStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetStatus

type Rep DatasetStatus = D1 ('MetaData "DatasetStatus" "Amazonka.LookoutVision.Types.DatasetStatus" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'True) (C1 ('MetaCons "DatasetStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromDatasetStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ModelHostingStatus

newtype ModelHostingStatus Source #

Instances

Instances details
FromJSON ModelHostingStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelHostingStatus

FromJSONKey ModelHostingStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelHostingStatus

ToJSON ModelHostingStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelHostingStatus

ToJSONKey ModelHostingStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelHostingStatus

ToByteString ModelHostingStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelHostingStatus

ToHeader ModelHostingStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelHostingStatus

ToLog ModelHostingStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelHostingStatus

ToQuery ModelHostingStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelHostingStatus

FromText ModelHostingStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelHostingStatus

ToText ModelHostingStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelHostingStatus

FromXML ModelHostingStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelHostingStatus

ToXML ModelHostingStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelHostingStatus

Generic ModelHostingStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelHostingStatus

Associated Types

type Rep ModelHostingStatus :: Type -> Type #

Read ModelHostingStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelHostingStatus

Show ModelHostingStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelHostingStatus

NFData ModelHostingStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelHostingStatus

Methods

rnf :: ModelHostingStatus -> () #

Eq ModelHostingStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelHostingStatus

Ord ModelHostingStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelHostingStatus

Hashable ModelHostingStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelHostingStatus

type Rep ModelHostingStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelHostingStatus

type Rep ModelHostingStatus = D1 ('MetaData "ModelHostingStatus" "Amazonka.LookoutVision.Types.ModelHostingStatus" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'True) (C1 ('MetaCons "ModelHostingStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromModelHostingStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ModelPackagingJobStatus

newtype ModelPackagingJobStatus Source #

Instances

Instances details
FromJSON ModelPackagingJobStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobStatus

FromJSONKey ModelPackagingJobStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobStatus

ToJSON ModelPackagingJobStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobStatus

ToJSONKey ModelPackagingJobStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobStatus

ToByteString ModelPackagingJobStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobStatus

ToHeader ModelPackagingJobStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobStatus

ToLog ModelPackagingJobStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobStatus

ToQuery ModelPackagingJobStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobStatus

FromText ModelPackagingJobStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobStatus

ToText ModelPackagingJobStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobStatus

FromXML ModelPackagingJobStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobStatus

ToXML ModelPackagingJobStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobStatus

Generic ModelPackagingJobStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobStatus

Associated Types

type Rep ModelPackagingJobStatus :: Type -> Type #

Read ModelPackagingJobStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobStatus

Show ModelPackagingJobStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobStatus

NFData ModelPackagingJobStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobStatus

Methods

rnf :: ModelPackagingJobStatus -> () #

Eq ModelPackagingJobStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobStatus

Ord ModelPackagingJobStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobStatus

Hashable ModelPackagingJobStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobStatus

type Rep ModelPackagingJobStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobStatus

type Rep ModelPackagingJobStatus = D1 ('MetaData "ModelPackagingJobStatus" "Amazonka.LookoutVision.Types.ModelPackagingJobStatus" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'True) (C1 ('MetaCons "ModelPackagingJobStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromModelPackagingJobStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ModelStatus

newtype ModelStatus Source #

Constructors

ModelStatus' 

Instances

Instances details
FromJSON ModelStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelStatus

FromJSONKey ModelStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelStatus

ToJSON ModelStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelStatus

ToJSONKey ModelStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelStatus

ToByteString ModelStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelStatus

ToHeader ModelStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelStatus

ToLog ModelStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelStatus

ToQuery ModelStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelStatus

FromText ModelStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelStatus

ToText ModelStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelStatus

Methods

toText :: ModelStatus -> Text #

FromXML ModelStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelStatus

ToXML ModelStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelStatus

Methods

toXML :: ModelStatus -> XML #

Generic ModelStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelStatus

Associated Types

type Rep ModelStatus :: Type -> Type #

Read ModelStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelStatus

Show ModelStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelStatus

NFData ModelStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelStatus

Methods

rnf :: ModelStatus -> () #

Eq ModelStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelStatus

Ord ModelStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelStatus

Hashable ModelStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelStatus

type Rep ModelStatus Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelStatus

type Rep ModelStatus = D1 ('MetaData "ModelStatus" "Amazonka.LookoutVision.Types.ModelStatus" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'True) (C1 ('MetaCons "ModelStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromModelStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

TargetDevice

newtype TargetDevice Source #

Constructors

TargetDevice' 

Bundled Patterns

pattern TargetDevice_Jetson_xavier :: TargetDevice 

Instances

Instances details
FromJSON TargetDevice Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetDevice

FromJSONKey TargetDevice Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetDevice

ToJSON TargetDevice Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetDevice

ToJSONKey TargetDevice Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetDevice

ToByteString TargetDevice Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetDevice

ToHeader TargetDevice Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetDevice

ToLog TargetDevice Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetDevice

ToQuery TargetDevice Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetDevice

FromText TargetDevice Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetDevice

ToText TargetDevice Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetDevice

Methods

toText :: TargetDevice -> Text #

FromXML TargetDevice Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetDevice

ToXML TargetDevice Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetDevice

Methods

toXML :: TargetDevice -> XML #

Generic TargetDevice Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetDevice

Associated Types

type Rep TargetDevice :: Type -> Type #

Read TargetDevice Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetDevice

Show TargetDevice Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetDevice

NFData TargetDevice Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetDevice

Methods

rnf :: TargetDevice -> () #

Eq TargetDevice Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetDevice

Ord TargetDevice Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetDevice

Hashable TargetDevice Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetDevice

type Rep TargetDevice Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetDevice

type Rep TargetDevice = D1 ('MetaData "TargetDevice" "Amazonka.LookoutVision.Types.TargetDevice" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'True) (C1 ('MetaCons "TargetDevice'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromTargetDevice") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

TargetPlatformAccelerator

newtype TargetPlatformAccelerator Source #

Instances

Instances details
FromJSON TargetPlatformAccelerator Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformAccelerator

FromJSONKey TargetPlatformAccelerator Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformAccelerator

ToJSON TargetPlatformAccelerator Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformAccelerator

ToJSONKey TargetPlatformAccelerator Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformAccelerator

ToByteString TargetPlatformAccelerator Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformAccelerator

ToHeader TargetPlatformAccelerator Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformAccelerator

ToLog TargetPlatformAccelerator Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformAccelerator

ToQuery TargetPlatformAccelerator Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformAccelerator

FromText TargetPlatformAccelerator Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformAccelerator

ToText TargetPlatformAccelerator Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformAccelerator

FromXML TargetPlatformAccelerator Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformAccelerator

ToXML TargetPlatformAccelerator Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformAccelerator

Generic TargetPlatformAccelerator Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformAccelerator

Associated Types

type Rep TargetPlatformAccelerator :: Type -> Type #

Read TargetPlatformAccelerator Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformAccelerator

Show TargetPlatformAccelerator Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformAccelerator

NFData TargetPlatformAccelerator Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformAccelerator

Eq TargetPlatformAccelerator Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformAccelerator

Ord TargetPlatformAccelerator Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformAccelerator

Hashable TargetPlatformAccelerator Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformAccelerator

type Rep TargetPlatformAccelerator Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformAccelerator

type Rep TargetPlatformAccelerator = D1 ('MetaData "TargetPlatformAccelerator" "Amazonka.LookoutVision.Types.TargetPlatformAccelerator" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'True) (C1 ('MetaCons "TargetPlatformAccelerator'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromTargetPlatformAccelerator") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

TargetPlatformArch

newtype TargetPlatformArch Source #

Instances

Instances details
FromJSON TargetPlatformArch Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformArch

FromJSONKey TargetPlatformArch Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformArch

ToJSON TargetPlatformArch Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformArch

ToJSONKey TargetPlatformArch Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformArch

ToByteString TargetPlatformArch Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformArch

ToHeader TargetPlatformArch Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformArch

ToLog TargetPlatformArch Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformArch

ToQuery TargetPlatformArch Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformArch

FromText TargetPlatformArch Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformArch

ToText TargetPlatformArch Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformArch

FromXML TargetPlatformArch Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformArch

ToXML TargetPlatformArch Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformArch

Generic TargetPlatformArch Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformArch

Associated Types

type Rep TargetPlatformArch :: Type -> Type #

Read TargetPlatformArch Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformArch

Show TargetPlatformArch Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformArch

NFData TargetPlatformArch Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformArch

Methods

rnf :: TargetPlatformArch -> () #

Eq TargetPlatformArch Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformArch

Ord TargetPlatformArch Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformArch

Hashable TargetPlatformArch Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformArch

type Rep TargetPlatformArch Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformArch

type Rep TargetPlatformArch = D1 ('MetaData "TargetPlatformArch" "Amazonka.LookoutVision.Types.TargetPlatformArch" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'True) (C1 ('MetaCons "TargetPlatformArch'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromTargetPlatformArch") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

TargetPlatformOs

newtype TargetPlatformOs Source #

Bundled Patterns

pattern TargetPlatformOs_LINUX :: TargetPlatformOs 

Instances

Instances details
FromJSON TargetPlatformOs Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformOs

FromJSONKey TargetPlatformOs Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformOs

ToJSON TargetPlatformOs Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformOs

ToJSONKey TargetPlatformOs Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformOs

ToByteString TargetPlatformOs Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformOs

ToHeader TargetPlatformOs Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformOs

ToLog TargetPlatformOs Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformOs

ToQuery TargetPlatformOs Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformOs

FromText TargetPlatformOs Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformOs

ToText TargetPlatformOs Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformOs

FromXML TargetPlatformOs Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformOs

ToXML TargetPlatformOs Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformOs

Generic TargetPlatformOs Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformOs

Associated Types

type Rep TargetPlatformOs :: Type -> Type #

Read TargetPlatformOs Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformOs

Show TargetPlatformOs Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformOs

NFData TargetPlatformOs Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformOs

Methods

rnf :: TargetPlatformOs -> () #

Eq TargetPlatformOs Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformOs

Ord TargetPlatformOs Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformOs

Hashable TargetPlatformOs Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformOs

type Rep TargetPlatformOs Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatformOs

type Rep TargetPlatformOs = D1 ('MetaData "TargetPlatformOs" "Amazonka.LookoutVision.Types.TargetPlatformOs" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'True) (C1 ('MetaCons "TargetPlatformOs'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromTargetPlatformOs") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

Anomaly

data Anomaly Source #

Information about an anomaly type found on an image by an image segmentation model. For more information, see DetectAnomalies.

See: newAnomaly smart constructor.

Instances

Instances details
FromJSON Anomaly Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.Anomaly

Generic Anomaly Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.Anomaly

Associated Types

type Rep Anomaly :: Type -> Type #

Methods

from :: Anomaly -> Rep Anomaly x #

to :: Rep Anomaly x -> Anomaly #

Read Anomaly Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.Anomaly

Show Anomaly Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.Anomaly

NFData Anomaly Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.Anomaly

Methods

rnf :: Anomaly -> () #

Eq Anomaly Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.Anomaly

Methods

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

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

Hashable Anomaly Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.Anomaly

Methods

hashWithSalt :: Int -> Anomaly -> Int #

hash :: Anomaly -> Int #

type Rep Anomaly Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.Anomaly

type Rep Anomaly = D1 ('MetaData "Anomaly" "Amazonka.LookoutVision.Types.Anomaly" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "Anomaly'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "pixelAnomaly") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe PixelAnomaly))))

newAnomaly :: Anomaly Source #

Create a value of Anomaly 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:name:Anomaly', anomaly_name - The name of an anomaly type found in an image. Name maps to an anomaly type in the training dataset, apart from the anomaly type background. The service automatically inserts the background anomaly type into the response from DetectAnomalies.

$sel:pixelAnomaly:Anomaly', anomaly_pixelAnomaly - Information about the pixel mask that covers an anomaly type.

DatasetDescription

data DatasetDescription Source #

The description for a dataset. For more information, see DescribeDataset.

See: newDatasetDescription smart constructor.

Instances

Instances details
FromJSON DatasetDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetDescription

Generic DatasetDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetDescription

Associated Types

type Rep DatasetDescription :: Type -> Type #

Read DatasetDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetDescription

Show DatasetDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetDescription

NFData DatasetDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetDescription

Methods

rnf :: DatasetDescription -> () #

Eq DatasetDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetDescription

Hashable DatasetDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetDescription

type Rep DatasetDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetDescription

type Rep DatasetDescription = D1 ('MetaData "DatasetDescription" "Amazonka.LookoutVision.Types.DatasetDescription" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "DatasetDescription'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "creationTimestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 ('MetaSel ('Just "datasetType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "imageStats") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DatasetImageStats)))) :*: ((S1 ('MetaSel ('Just "lastUpdatedTimestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DatasetStatus)) :*: S1 ('MetaSel ('Just "statusMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newDatasetDescription :: DatasetDescription Source #

Create a value of DatasetDescription 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:creationTimestamp:DatasetDescription', datasetDescription_creationTimestamp - The Unix timestamp for the time and date that the dataset was created.

$sel:datasetType:DatasetDescription', datasetDescription_datasetType - The type of the dataset. The value train represents a training dataset or single dataset project. The value test represents a test dataset.

$sel:imageStats:DatasetDescription', datasetDescription_imageStats - Statistics about the images in a dataset.

$sel:lastUpdatedTimestamp:DatasetDescription', datasetDescription_lastUpdatedTimestamp - The Unix timestamp for the date and time that the dataset was last updated.

$sel:projectName:DatasetDescription', datasetDescription_projectName - The name of the project that contains the dataset.

$sel:status:DatasetDescription', datasetDescription_status - The status of the dataset.

$sel:statusMessage:DatasetDescription', datasetDescription_statusMessage - The status message for the dataset.

DatasetGroundTruthManifest

data DatasetGroundTruthManifest Source #

Location information about a manifest file. You can use a manifest file to create a dataset.

See: newDatasetGroundTruthManifest smart constructor.

Instances

Instances details
ToJSON DatasetGroundTruthManifest Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetGroundTruthManifest

Generic DatasetGroundTruthManifest Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetGroundTruthManifest

Associated Types

type Rep DatasetGroundTruthManifest :: Type -> Type #

Read DatasetGroundTruthManifest Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetGroundTruthManifest

Show DatasetGroundTruthManifest Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetGroundTruthManifest

NFData DatasetGroundTruthManifest Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetGroundTruthManifest

Eq DatasetGroundTruthManifest Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetGroundTruthManifest

Hashable DatasetGroundTruthManifest Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetGroundTruthManifest

type Rep DatasetGroundTruthManifest Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetGroundTruthManifest

type Rep DatasetGroundTruthManifest = D1 ('MetaData "DatasetGroundTruthManifest" "Amazonka.LookoutVision.Types.DatasetGroundTruthManifest" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "DatasetGroundTruthManifest'" 'PrefixI 'True) (S1 ('MetaSel ('Just "s3Object") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe InputS3Object))))

newDatasetGroundTruthManifest :: DatasetGroundTruthManifest Source #

Create a value of DatasetGroundTruthManifest 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:s3Object:DatasetGroundTruthManifest', datasetGroundTruthManifest_s3Object - The S3 bucket location for the manifest file.

DatasetImageStats

data DatasetImageStats Source #

Statistics about the images in a dataset.

See: newDatasetImageStats smart constructor.

Instances

Instances details
FromJSON DatasetImageStats Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetImageStats

Generic DatasetImageStats Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetImageStats

Associated Types

type Rep DatasetImageStats :: Type -> Type #

Read DatasetImageStats Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetImageStats

Show DatasetImageStats Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetImageStats

NFData DatasetImageStats Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetImageStats

Methods

rnf :: DatasetImageStats -> () #

Eq DatasetImageStats Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetImageStats

Hashable DatasetImageStats Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetImageStats

type Rep DatasetImageStats Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetImageStats

type Rep DatasetImageStats = D1 ('MetaData "DatasetImageStats" "Amazonka.LookoutVision.Types.DatasetImageStats" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "DatasetImageStats'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "anomaly") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "labeled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int))) :*: (S1 ('MetaSel ('Just "normal") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "total") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)))))

newDatasetImageStats :: DatasetImageStats Source #

Create a value of DatasetImageStats 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:anomaly:DatasetImageStats', datasetImageStats_anomaly - the total number of images labeled as an anomaly.

$sel:labeled:DatasetImageStats', datasetImageStats_labeled - The total number of labeled images.

$sel:normal:DatasetImageStats', datasetImageStats_normal - The total number of images labeled as normal.

$sel:total:DatasetImageStats', datasetImageStats_total - The total number of images in the dataset.

DatasetMetadata

data DatasetMetadata Source #

Summary information for an Amazon Lookout for Vision dataset. For more information, see DescribeDataset and ProjectDescription.

See: newDatasetMetadata smart constructor.

Instances

Instances details
FromJSON DatasetMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetMetadata

Generic DatasetMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetMetadata

Associated Types

type Rep DatasetMetadata :: Type -> Type #

Read DatasetMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetMetadata

Show DatasetMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetMetadata

NFData DatasetMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetMetadata

Methods

rnf :: DatasetMetadata -> () #

Eq DatasetMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetMetadata

Hashable DatasetMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetMetadata

type Rep DatasetMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetMetadata

type Rep DatasetMetadata = D1 ('MetaData "DatasetMetadata" "Amazonka.LookoutVision.Types.DatasetMetadata" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "DatasetMetadata'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "creationTimestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "datasetType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DatasetStatus)) :*: S1 ('MetaSel ('Just "statusMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newDatasetMetadata :: DatasetMetadata Source #

Create a value of DatasetMetadata 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:creationTimestamp:DatasetMetadata', datasetMetadata_creationTimestamp - The Unix timestamp for the date and time that the dataset was created.

$sel:datasetType:DatasetMetadata', datasetMetadata_datasetType - The type of the dataset.

$sel:status:DatasetMetadata', datasetMetadata_status - The status for the dataset.

$sel:statusMessage:DatasetMetadata', datasetMetadata_statusMessage - The status message for the dataset.

DatasetSource

data DatasetSource Source #

Information about the location of a manifest file that Amazon Lookout for Vision uses to to create a dataset.

See: newDatasetSource smart constructor.

Instances

Instances details
ToJSON DatasetSource Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetSource

Generic DatasetSource Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetSource

Associated Types

type Rep DatasetSource :: Type -> Type #

Read DatasetSource Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetSource

Show DatasetSource Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetSource

NFData DatasetSource Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetSource

Methods

rnf :: DatasetSource -> () #

Eq DatasetSource Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetSource

Hashable DatasetSource Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetSource

type Rep DatasetSource Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DatasetSource

type Rep DatasetSource = D1 ('MetaData "DatasetSource" "Amazonka.LookoutVision.Types.DatasetSource" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "DatasetSource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "groundTruthManifest") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DatasetGroundTruthManifest))))

newDatasetSource :: DatasetSource Source #

Create a value of DatasetSource 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:groundTruthManifest:DatasetSource', datasetSource_groundTruthManifest - Location information for the manifest file.

DetectAnomalyResult

data DetectAnomalyResult Source #

The prediction results from a call to DetectAnomalies. DetectAnomalyResult includes classification information for the prediction (IsAnomalous and Confidence). If the model you use is an image segementation model, DetectAnomalyResult also includes segmentation information (Anomalies and AnomalyMask). Classification information is calculated separately from segmentation information and you shouldn't assume a relationship between them.

See: newDetectAnomalyResult smart constructor.

Instances

Instances details
FromJSON DetectAnomalyResult Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DetectAnomalyResult

Generic DetectAnomalyResult Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DetectAnomalyResult

Associated Types

type Rep DetectAnomalyResult :: Type -> Type #

Read DetectAnomalyResult Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DetectAnomalyResult

Show DetectAnomalyResult Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DetectAnomalyResult

NFData DetectAnomalyResult Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DetectAnomalyResult

Methods

rnf :: DetectAnomalyResult -> () #

Eq DetectAnomalyResult Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DetectAnomalyResult

Hashable DetectAnomalyResult Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DetectAnomalyResult

type Rep DetectAnomalyResult Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.DetectAnomalyResult

type Rep DetectAnomalyResult = D1 ('MetaData "DetectAnomalyResult" "Amazonka.LookoutVision.Types.DetectAnomalyResult" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "DetectAnomalyResult'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "anomalies") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Anomaly])) :*: S1 ('MetaSel ('Just "anomalyMask") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Base64))) :*: (S1 ('MetaSel ('Just "confidence") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)) :*: (S1 ('MetaSel ('Just "isAnomalous") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "source") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ImageSource))))))

newDetectAnomalyResult :: DetectAnomalyResult Source #

Create a value of DetectAnomalyResult 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:anomalies:DetectAnomalyResult', detectAnomalyResult_anomalies - If the model is an image segmentation model, Anomalies contains a list of anomaly types found in the image. There is one entry for each type of anomaly found (even if multiple instances of an anomaly type exist on the image). The first element in the list is always an anomaly type representing the image background ('background') and shouldn't be considered an anomaly. Amazon Lookout for Vision automatically add the background anomaly type to the response, and you don't need to declare a background anomaly type in your dataset.

If the list has one entry ('background'), no anomalies were found on the image.

An image classification model doesn't return an Anomalies list.

$sel:anomalyMask:DetectAnomalyResult', detectAnomalyResult_anomalyMask - If the model is an image segmentation model, AnomalyMask contains pixel masks that covers all anomaly types found on the image. Each anomaly type has a different mask color. To map a color to an anomaly type, see the color field of the PixelAnomaly object.

An image classification model doesn't return an Anomalies list.-- -- Note: This Lens automatically encodes and decodes Base64 data. -- The underlying isomorphism will encode to Base64 representation during -- serialisation, and decode from Base64 representation during deserialisation. -- This Lens accepts and returns only raw unencoded data.

$sel:confidence:DetectAnomalyResult', detectAnomalyResult_confidence - The confidence that Lookout for Vision has in the accuracy of the classification in IsAnomalous.

$sel:isAnomalous:DetectAnomalyResult', detectAnomalyResult_isAnomalous - True if Amazon Lookout for Vision classifies the image as containing an anomaly, otherwise false.

$sel:source:DetectAnomalyResult', detectAnomalyResult_source - The source of the image that was analyzed. direct means that the images was supplied from the local computer. No other values are supported.

GreengrassConfiguration

data GreengrassConfiguration Source #

Configuration information for the AWS IoT Greengrass component created in a model packaging job. For more information, see StartModelPackagingJob.

You can't specify a component with the same ComponentName and Componentversion as an existing component with the same component name and component version.

See: newGreengrassConfiguration smart constructor.

Instances

Instances details
FromJSON GreengrassConfiguration Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.GreengrassConfiguration

ToJSON GreengrassConfiguration Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.GreengrassConfiguration

Generic GreengrassConfiguration Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.GreengrassConfiguration

Associated Types

type Rep GreengrassConfiguration :: Type -> Type #

Read GreengrassConfiguration Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.GreengrassConfiguration

Show GreengrassConfiguration Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.GreengrassConfiguration

NFData GreengrassConfiguration Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.GreengrassConfiguration

Methods

rnf :: GreengrassConfiguration -> () #

Eq GreengrassConfiguration Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.GreengrassConfiguration

Hashable GreengrassConfiguration Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.GreengrassConfiguration

type Rep GreengrassConfiguration Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.GreengrassConfiguration

type Rep GreengrassConfiguration = D1 ('MetaData "GreengrassConfiguration" "Amazonka.LookoutVision.Types.GreengrassConfiguration" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "GreengrassConfiguration'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "compilerOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "componentDescription") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "componentVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag])))) :*: ((S1 ('MetaSel ('Just "targetDevice") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TargetDevice)) :*: S1 ('MetaSel ('Just "targetPlatform") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TargetPlatform))) :*: (S1 ('MetaSel ('Just "s3OutputLocation") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 S3Location) :*: S1 ('MetaSel ('Just "componentName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

newGreengrassConfiguration Source #

Create a value of GreengrassConfiguration 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:compilerOptions:GreengrassConfiguration', greengrassConfiguration_compilerOptions - Additional compiler options for the Greengrass component. Currently, only NVIDIA Graphics Processing Units (GPU) and CPU accelerators are supported. If you specify TargetDevice, don't specify CompilerOptions.

For more information, see Compiler options in the Amazon Lookout for Vision Developer Guide.

$sel:componentDescription:GreengrassConfiguration', greengrassConfiguration_componentDescription - A description for the AWS IoT Greengrass component.

$sel:componentVersion:GreengrassConfiguration', greengrassConfiguration_componentVersion - A Version for the AWS IoT Greengrass component. If you don't provide a value, a default value of Model Version.0.0 is used.

$sel:tags:GreengrassConfiguration', greengrassConfiguration_tags - A set of tags (key-value pairs) that you want to attach to the AWS IoT Greengrass component.

$sel:targetDevice:GreengrassConfiguration', greengrassConfiguration_targetDevice - The target device for the model. Currently the only supported value is jetson_xavier. If you specify TargetDevice, you can't specify TargetPlatform.

$sel:targetPlatform:GreengrassConfiguration', greengrassConfiguration_targetPlatform - The target platform for the model. If you specify TargetPlatform, you can't specify TargetDevice.

$sel:s3OutputLocation:GreengrassConfiguration', greengrassConfiguration_s3OutputLocation - An S3 location in which Lookout for Vision stores the component artifacts.

$sel:componentName:GreengrassConfiguration', greengrassConfiguration_componentName - A name for the AWS IoT Greengrass component.

GreengrassOutputDetails

data GreengrassOutputDetails Source #

Information about the AWS IoT Greengrass component created by a model packaging job.

See: newGreengrassOutputDetails smart constructor.

Instances

Instances details
FromJSON GreengrassOutputDetails Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.GreengrassOutputDetails

Generic GreengrassOutputDetails Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.GreengrassOutputDetails

Associated Types

type Rep GreengrassOutputDetails :: Type -> Type #

Read GreengrassOutputDetails Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.GreengrassOutputDetails

Show GreengrassOutputDetails Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.GreengrassOutputDetails

NFData GreengrassOutputDetails Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.GreengrassOutputDetails

Methods

rnf :: GreengrassOutputDetails -> () #

Eq GreengrassOutputDetails Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.GreengrassOutputDetails

Hashable GreengrassOutputDetails Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.GreengrassOutputDetails

type Rep GreengrassOutputDetails Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.GreengrassOutputDetails

type Rep GreengrassOutputDetails = D1 ('MetaData "GreengrassOutputDetails" "Amazonka.LookoutVision.Types.GreengrassOutputDetails" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "GreengrassOutputDetails'" 'PrefixI 'True) (S1 ('MetaSel ('Just "componentName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "componentVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "componentVersionArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newGreengrassOutputDetails :: GreengrassOutputDetails Source #

Create a value of GreengrassOutputDetails 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:componentName:GreengrassOutputDetails', greengrassOutputDetails_componentName - The name of the component.

$sel:componentVersion:GreengrassOutputDetails', greengrassOutputDetails_componentVersion - The version of the component.

$sel:componentVersionArn:GreengrassOutputDetails', greengrassOutputDetails_componentVersionArn - The Amazon Resource Name (ARN) of the component.

ImageSource

data ImageSource Source #

The source for an image.

See: newImageSource smart constructor.

Constructors

ImageSource' (Maybe Text) 

Instances

Instances details
FromJSON ImageSource Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ImageSource

Generic ImageSource Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ImageSource

Associated Types

type Rep ImageSource :: Type -> Type #

Read ImageSource Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ImageSource

Show ImageSource Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ImageSource

NFData ImageSource Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ImageSource

Methods

rnf :: ImageSource -> () #

Eq ImageSource Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ImageSource

Hashable ImageSource Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ImageSource

type Rep ImageSource Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ImageSource

type Rep ImageSource = D1 ('MetaData "ImageSource" "Amazonka.LookoutVision.Types.ImageSource" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "ImageSource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "type'") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newImageSource :: ImageSource Source #

Create a value of ImageSource 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:type':ImageSource', imageSource_type - The type of the image.

InputS3Object

data InputS3Object Source #

Amazon S3 Location information for an input manifest file.

See: newInputS3Object smart constructor.

Instances

Instances details
ToJSON InputS3Object Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.InputS3Object

Generic InputS3Object Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.InputS3Object

Associated Types

type Rep InputS3Object :: Type -> Type #

Read InputS3Object Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.InputS3Object

Show InputS3Object Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.InputS3Object

NFData InputS3Object Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.InputS3Object

Methods

rnf :: InputS3Object -> () #

Eq InputS3Object Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.InputS3Object

Hashable InputS3Object Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.InputS3Object

type Rep InputS3Object Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.InputS3Object

type Rep InputS3Object = D1 ('MetaData "InputS3Object" "Amazonka.LookoutVision.Types.InputS3Object" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "InputS3Object'" 'PrefixI 'True) (S1 ('MetaSel ('Just "versionId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "bucket") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "key") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newInputS3Object Source #

Create a value of InputS3Object 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:versionId:InputS3Object', inputS3Object_versionId - The version ID of the bucket.

$sel:bucket:InputS3Object', inputS3Object_bucket - The Amazon S3 bucket that contains the manifest.

$sel:key:InputS3Object', inputS3Object_key - The name and location of the manifest file withiin the bucket.

ModelDescription

data ModelDescription Source #

Describes an Amazon Lookout for Vision model.

See: newModelDescription smart constructor.

Instances

Instances details
FromJSON ModelDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelDescription

Generic ModelDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelDescription

Associated Types

type Rep ModelDescription :: Type -> Type #

Read ModelDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelDescription

Show ModelDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelDescription

NFData ModelDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelDescription

Methods

rnf :: ModelDescription -> () #

Eq ModelDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelDescription

Hashable ModelDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelDescription

type Rep ModelDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelDescription

type Rep ModelDescription = D1 ('MetaData "ModelDescription" "Amazonka.LookoutVision.Types.ModelDescription" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "ModelDescription'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "creationTimestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "evaluationEndTimestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)))) :*: ((S1 ('MetaSel ('Just "evaluationManifest") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe OutputS3Object)) :*: S1 ('MetaSel ('Just "evaluationResult") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe OutputS3Object))) :*: (S1 ('MetaSel ('Just "kmsKeyId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxInferenceUnits") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))))) :*: ((S1 ('MetaSel ('Just "minInferenceUnits") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: (S1 ('MetaSel ('Just "modelArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "modelVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "outputConfig") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe OutputConfig)) :*: S1 ('MetaSel ('Just "performance") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelPerformance))) :*: (S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelStatus)) :*: S1 ('MetaSel ('Just "statusMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))))

newModelDescription :: ModelDescription Source #

Create a value of ModelDescription 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:creationTimestamp:ModelDescription', modelDescription_creationTimestamp - The unix timestamp for the date and time that the model was created.

$sel:description:ModelDescription', modelDescription_description - The description for the model.

$sel:evaluationEndTimestamp:ModelDescription', modelDescription_evaluationEndTimestamp - The unix timestamp for the date and time that the evaluation ended.

$sel:evaluationManifest:ModelDescription', modelDescription_evaluationManifest - The S3 location where Amazon Lookout for Vision saves the manifest file that was used to test the trained model and generate the performance scores.

$sel:evaluationResult:ModelDescription', modelDescription_evaluationResult - The S3 location where Amazon Lookout for Vision saves the performance metrics.

$sel:kmsKeyId:ModelDescription', modelDescription_kmsKeyId - The identifer for the AWS Key Management Service (AWS KMS) key that was used to encrypt the model during training.

$sel:maxInferenceUnits:ModelDescription', modelDescription_maxInferenceUnits - The maximum number of inference units Amazon Lookout for Vision uses to auto-scale the model. For more information, see StartModel.

$sel:minInferenceUnits:ModelDescription', modelDescription_minInferenceUnits - The minimum number of inference units used by the model. For more information, see StartModel

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

$sel:modelVersion:ModelDescription', modelDescription_modelVersion - The version of the model

$sel:outputConfig:ModelDescription', modelDescription_outputConfig - The S3 location where Amazon Lookout for Vision saves model training files.

$sel:performance:ModelDescription', modelDescription_performance - Performance metrics for the model. Created during training.

$sel:status:ModelDescription', modelDescription_status - The status of the model.

$sel:statusMessage:ModelDescription', modelDescription_statusMessage - The status message for the model.

ModelMetadata

data ModelMetadata Source #

Describes an Amazon Lookout for Vision model.

See: newModelMetadata smart constructor.

Instances

Instances details
FromJSON ModelMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelMetadata

Generic ModelMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelMetadata

Associated Types

type Rep ModelMetadata :: Type -> Type #

Read ModelMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelMetadata

Show ModelMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelMetadata

NFData ModelMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelMetadata

Methods

rnf :: ModelMetadata -> () #

Eq ModelMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelMetadata

Hashable ModelMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelMetadata

type Rep ModelMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelMetadata

type Rep ModelMetadata = D1 ('MetaData "ModelMetadata" "Amazonka.LookoutVision.Types.ModelMetadata" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "ModelMetadata'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "creationTimestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "modelArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "modelVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "performance") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelPerformance))) :*: (S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelStatus)) :*: S1 ('MetaSel ('Just "statusMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newModelMetadata :: ModelMetadata Source #

Create a value of ModelMetadata 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:creationTimestamp:ModelMetadata', modelMetadata_creationTimestamp - The unix timestamp for the date and time that the model was created.

$sel:description:ModelMetadata', modelMetadata_description - The description for the model.

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

$sel:modelVersion:ModelMetadata', modelMetadata_modelVersion - The version of the model.

$sel:performance:ModelMetadata', modelMetadata_performance - Performance metrics for the model. Not available until training has successfully completed.

$sel:status:ModelMetadata', modelMetadata_status - The status of the model.

$sel:statusMessage:ModelMetadata', modelMetadata_statusMessage - The status message for the model.

ModelPackagingConfiguration

data ModelPackagingConfiguration Source #

Configuration information for a Amazon Lookout for Vision model packaging job. For more information, see StartModelPackagingJob.

See: newModelPackagingConfiguration smart constructor.

Instances

Instances details
FromJSON ModelPackagingConfiguration Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingConfiguration

ToJSON ModelPackagingConfiguration Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingConfiguration

Generic ModelPackagingConfiguration Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingConfiguration

Associated Types

type Rep ModelPackagingConfiguration :: Type -> Type #

Read ModelPackagingConfiguration Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingConfiguration

Show ModelPackagingConfiguration Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingConfiguration

NFData ModelPackagingConfiguration Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingConfiguration

Eq ModelPackagingConfiguration Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingConfiguration

Hashable ModelPackagingConfiguration Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingConfiguration

type Rep ModelPackagingConfiguration Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingConfiguration

type Rep ModelPackagingConfiguration = D1 ('MetaData "ModelPackagingConfiguration" "Amazonka.LookoutVision.Types.ModelPackagingConfiguration" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "ModelPackagingConfiguration'" 'PrefixI 'True) (S1 ('MetaSel ('Just "greengrass") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 GreengrassConfiguration)))

newModelPackagingConfiguration Source #

Create a value of ModelPackagingConfiguration 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:greengrass:ModelPackagingConfiguration', modelPackagingConfiguration_greengrass - Configuration information for the AWS IoT Greengrass component in a model packaging job.

ModelPackagingDescription

data ModelPackagingDescription Source #

Information about a model packaging job. For more information, see DescribeModelPackagingJob.

See: newModelPackagingDescription smart constructor.

Instances

Instances details
FromJSON ModelPackagingDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingDescription

Generic ModelPackagingDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingDescription

Associated Types

type Rep ModelPackagingDescription :: Type -> Type #

Read ModelPackagingDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingDescription

Show ModelPackagingDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingDescription

NFData ModelPackagingDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingDescription

Eq ModelPackagingDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingDescription

Hashable ModelPackagingDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingDescription

type Rep ModelPackagingDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingDescription

type Rep ModelPackagingDescription = D1 ('MetaData "ModelPackagingDescription" "Amazonka.LookoutVision.Types.ModelPackagingDescription" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "ModelPackagingDescription'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "creationTimestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "jobName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "lastUpdatedTimestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 ('MetaSel ('Just "modelPackagingConfiguration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelPackagingConfiguration)) :*: S1 ('MetaSel ('Just "modelPackagingJobDescription") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))) :*: ((S1 ('MetaSel ('Just "modelPackagingMethod") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "modelPackagingOutputDetails") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelPackagingOutputDetails)) :*: S1 ('MetaSel ('Just "modelVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelPackagingJobStatus)) :*: S1 ('MetaSel ('Just "statusMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))))

newModelPackagingDescription :: ModelPackagingDescription Source #

Create a value of ModelPackagingDescription 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:creationTimestamp:ModelPackagingDescription', modelPackagingDescription_creationTimestamp - The Unix timestamp for the time and date that the model packaging job was created.

$sel:jobName:ModelPackagingDescription', modelPackagingDescription_jobName - The name of the model packaging job.

$sel:lastUpdatedTimestamp:ModelPackagingDescription', modelPackagingDescription_lastUpdatedTimestamp - The Unix timestamp for the time and date that the model packaging job was last updated.

$sel:modelPackagingConfiguration:ModelPackagingDescription', modelPackagingDescription_modelPackagingConfiguration - The configuration information used in the model packaging job.

$sel:modelPackagingJobDescription:ModelPackagingDescription', modelPackagingDescription_modelPackagingJobDescription - The description for the model packaging job.

$sel:modelPackagingMethod:ModelPackagingDescription', modelPackagingDescription_modelPackagingMethod - The AWS service used to package the job. Currently Lookout for Vision can package jobs with AWS IoT Greengrass.

$sel:modelPackagingOutputDetails:ModelPackagingDescription', modelPackagingDescription_modelPackagingOutputDetails - Information about the output of the model packaging job. For more information, see DescribeModelPackagingJob.

$sel:modelVersion:ModelPackagingDescription', modelPackagingDescription_modelVersion - The version of the model used in the model packaging job.

$sel:projectName:ModelPackagingDescription', modelPackagingDescription_projectName - The name of the project that's associated with a model that's in the model package.

$sel:status:ModelPackagingDescription', modelPackagingDescription_status - The status of the model packaging job.

$sel:statusMessage:ModelPackagingDescription', modelPackagingDescription_statusMessage - The status message for the model packaging job.

ModelPackagingJobMetadata

data ModelPackagingJobMetadata Source #

Metadata for a model packaging job. For more information, see ListModelPackagingJobs.

See: newModelPackagingJobMetadata smart constructor.

Instances

Instances details
FromJSON ModelPackagingJobMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobMetadata

Generic ModelPackagingJobMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobMetadata

Associated Types

type Rep ModelPackagingJobMetadata :: Type -> Type #

Read ModelPackagingJobMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobMetadata

Show ModelPackagingJobMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobMetadata

NFData ModelPackagingJobMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobMetadata

Eq ModelPackagingJobMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobMetadata

Hashable ModelPackagingJobMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobMetadata

type Rep ModelPackagingJobMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingJobMetadata

type Rep ModelPackagingJobMetadata = D1 ('MetaData "ModelPackagingJobMetadata" "Amazonka.LookoutVision.Types.ModelPackagingJobMetadata" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "ModelPackagingJobMetadata'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "creationTimestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "jobName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "lastUpdatedTimestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "modelPackagingJobDescription") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "modelPackagingMethod") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "modelVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelPackagingJobStatus)) :*: S1 ('MetaSel ('Just "statusMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))))

newModelPackagingJobMetadata :: ModelPackagingJobMetadata Source #

Create a value of ModelPackagingJobMetadata 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:creationTimestamp:ModelPackagingJobMetadata', modelPackagingJobMetadata_creationTimestamp - The Unix timestamp for the time and date that the model packaging job was created.

$sel:jobName:ModelPackagingJobMetadata', modelPackagingJobMetadata_jobName - The name of the model packaging job.

$sel:lastUpdatedTimestamp:ModelPackagingJobMetadata', modelPackagingJobMetadata_lastUpdatedTimestamp - The Unix timestamp for the time and date that the model packaging job was last updated.

$sel:modelPackagingJobDescription:ModelPackagingJobMetadata', modelPackagingJobMetadata_modelPackagingJobDescription - The description for the model packaging job.

$sel:modelPackagingMethod:ModelPackagingJobMetadata', modelPackagingJobMetadata_modelPackagingMethod - The AWS service used to package the job. Currently Lookout for Vision can package jobs with AWS IoT Greengrass.

$sel:modelVersion:ModelPackagingJobMetadata', modelPackagingJobMetadata_modelVersion - The version of the model that is in the model package.

$sel:projectName:ModelPackagingJobMetadata', modelPackagingJobMetadata_projectName - The project that contains the model that is in the model package.

$sel:status:ModelPackagingJobMetadata', modelPackagingJobMetadata_status - The status of the model packaging job.

$sel:statusMessage:ModelPackagingJobMetadata', modelPackagingJobMetadata_statusMessage - The status message for the model packaging job.

ModelPackagingOutputDetails

data ModelPackagingOutputDetails Source #

Information about the output from a model packaging job.

See: newModelPackagingOutputDetails smart constructor.

Instances

Instances details
FromJSON ModelPackagingOutputDetails Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingOutputDetails

Generic ModelPackagingOutputDetails Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingOutputDetails

Associated Types

type Rep ModelPackagingOutputDetails :: Type -> Type #

Read ModelPackagingOutputDetails Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingOutputDetails

Show ModelPackagingOutputDetails Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingOutputDetails

NFData ModelPackagingOutputDetails Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingOutputDetails

Eq ModelPackagingOutputDetails Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingOutputDetails

Hashable ModelPackagingOutputDetails Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingOutputDetails

type Rep ModelPackagingOutputDetails Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPackagingOutputDetails

type Rep ModelPackagingOutputDetails = D1 ('MetaData "ModelPackagingOutputDetails" "Amazonka.LookoutVision.Types.ModelPackagingOutputDetails" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "ModelPackagingOutputDetails'" 'PrefixI 'True) (S1 ('MetaSel ('Just "greengrass") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe GreengrassOutputDetails))))

newModelPackagingOutputDetails :: ModelPackagingOutputDetails Source #

Create a value of ModelPackagingOutputDetails 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:greengrass:ModelPackagingOutputDetails', modelPackagingOutputDetails_greengrass - Information about the AWS IoT Greengrass component in a model packaging job.

ModelPerformance

data ModelPerformance Source #

Information about the evaluation performance of a trained model.

See: newModelPerformance smart constructor.

Instances

Instances details
FromJSON ModelPerformance Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPerformance

Generic ModelPerformance Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPerformance

Associated Types

type Rep ModelPerformance :: Type -> Type #

Read ModelPerformance Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPerformance

Show ModelPerformance Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPerformance

NFData ModelPerformance Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPerformance

Methods

rnf :: ModelPerformance -> () #

Eq ModelPerformance Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPerformance

Hashable ModelPerformance Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPerformance

type Rep ModelPerformance Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ModelPerformance

type Rep ModelPerformance = D1 ('MetaData "ModelPerformance" "Amazonka.LookoutVision.Types.ModelPerformance" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "ModelPerformance'" 'PrefixI 'True) (S1 ('MetaSel ('Just "f1Score") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)) :*: (S1 ('MetaSel ('Just "precision") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)) :*: S1 ('MetaSel ('Just "recall") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)))))

newModelPerformance :: ModelPerformance Source #

Create a value of ModelPerformance 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:f1Score:ModelPerformance', modelPerformance_f1Score - The overall F1 score metric for the trained model.

$sel:precision:ModelPerformance', modelPerformance_precision - The overall precision metric value for the trained model.

$sel:recall:ModelPerformance', modelPerformance_recall - The overall recall metric value for the trained model.

OutputConfig

data OutputConfig Source #

The S3 location where Amazon Lookout for Vision saves model training files.

See: newOutputConfig smart constructor.

Instances

Instances details
FromJSON OutputConfig Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.OutputConfig

ToJSON OutputConfig Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.OutputConfig

Generic OutputConfig Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.OutputConfig

Associated Types

type Rep OutputConfig :: Type -> Type #

Read OutputConfig Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.OutputConfig

Show OutputConfig Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.OutputConfig

NFData OutputConfig Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.OutputConfig

Methods

rnf :: OutputConfig -> () #

Eq OutputConfig Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.OutputConfig

Hashable OutputConfig Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.OutputConfig

type Rep OutputConfig Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.OutputConfig

type Rep OutputConfig = D1 ('MetaData "OutputConfig" "Amazonka.LookoutVision.Types.OutputConfig" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "OutputConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "s3Location") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 S3Location)))

newOutputConfig Source #

Create a value of OutputConfig 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:s3Location:OutputConfig', outputConfig_s3Location - The S3 location for the output.

OutputS3Object

data OutputS3Object Source #

The S3 location where Amazon Lookout for Vision saves training output.

See: newOutputS3Object smart constructor.

Constructors

OutputS3Object' Text Text 

Instances

Instances details
FromJSON OutputS3Object Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.OutputS3Object

Generic OutputS3Object Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.OutputS3Object

Associated Types

type Rep OutputS3Object :: Type -> Type #

Read OutputS3Object Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.OutputS3Object

Show OutputS3Object Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.OutputS3Object

NFData OutputS3Object Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.OutputS3Object

Methods

rnf :: OutputS3Object -> () #

Eq OutputS3Object Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.OutputS3Object

Hashable OutputS3Object Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.OutputS3Object

type Rep OutputS3Object Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.OutputS3Object

type Rep OutputS3Object = D1 ('MetaData "OutputS3Object" "Amazonka.LookoutVision.Types.OutputS3Object" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "OutputS3Object'" 'PrefixI 'True) (S1 ('MetaSel ('Just "bucket") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "key") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newOutputS3Object Source #

Create a value of OutputS3Object 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:bucket:OutputS3Object', outputS3Object_bucket - The bucket that contains the training output.

$sel:key:OutputS3Object', outputS3Object_key - The location of the training output in the bucket.

PixelAnomaly

data PixelAnomaly Source #

Information about the pixels in an anomaly mask. For more information, see Anomaly. PixelAnomaly is only returned by image segmentation models.

See: newPixelAnomaly smart constructor.

Constructors

PixelAnomaly' (Maybe Text) (Maybe Double) 

Instances

Instances details
FromJSON PixelAnomaly Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.PixelAnomaly

Generic PixelAnomaly Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.PixelAnomaly

Associated Types

type Rep PixelAnomaly :: Type -> Type #

Read PixelAnomaly Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.PixelAnomaly

Show PixelAnomaly Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.PixelAnomaly

NFData PixelAnomaly Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.PixelAnomaly

Methods

rnf :: PixelAnomaly -> () #

Eq PixelAnomaly Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.PixelAnomaly

Hashable PixelAnomaly Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.PixelAnomaly

type Rep PixelAnomaly Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.PixelAnomaly

type Rep PixelAnomaly = D1 ('MetaData "PixelAnomaly" "Amazonka.LookoutVision.Types.PixelAnomaly" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "PixelAnomaly'" 'PrefixI 'True) (S1 ('MetaSel ('Just "color") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "totalPercentageArea") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double))))

newPixelAnomaly :: PixelAnomaly Source #

Create a value of PixelAnomaly 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:color:PixelAnomaly', pixelAnomaly_color - A hex color value for the mask that covers an anomaly type. Each anomaly type has a different mask color. The color maps to the color of the anomaly type used in the training dataset.

$sel:totalPercentageArea:PixelAnomaly', pixelAnomaly_totalPercentageArea - The percentage area of the image that the anomaly type covers.

ProjectDescription

data ProjectDescription Source #

Describe an Amazon Lookout for Vision project. For more information, see DescribeProject.

See: newProjectDescription smart constructor.

Instances

Instances details
FromJSON ProjectDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ProjectDescription

Generic ProjectDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ProjectDescription

Associated Types

type Rep ProjectDescription :: Type -> Type #

Read ProjectDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ProjectDescription

Show ProjectDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ProjectDescription

NFData ProjectDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ProjectDescription

Methods

rnf :: ProjectDescription -> () #

Eq ProjectDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ProjectDescription

Hashable ProjectDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ProjectDescription

type Rep ProjectDescription Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ProjectDescription

type Rep ProjectDescription = D1 ('MetaData "ProjectDescription" "Amazonka.LookoutVision.Types.ProjectDescription" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "ProjectDescription'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "creationTimestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "datasets") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [DatasetMetadata]))) :*: (S1 ('MetaSel ('Just "projectArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newProjectDescription :: ProjectDescription Source #

Create a value of ProjectDescription 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:

ProjectDescription, projectDescription_creationTimestamp - The unix timestamp for the date and time that the project was created.

$sel:datasets:ProjectDescription', projectDescription_datasets - A list of datasets in the project.

$sel:projectArn:ProjectDescription', projectDescription_projectArn - The Amazon Resource Name (ARN) of the project.

$sel:projectName:ProjectDescription', projectDescription_projectName - The name of the project.

ProjectMetadata

data ProjectMetadata Source #

Metadata about an Amazon Lookout for Vision project.

See: newProjectMetadata smart constructor.

Instances

Instances details
FromJSON ProjectMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ProjectMetadata

Generic ProjectMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ProjectMetadata

Associated Types

type Rep ProjectMetadata :: Type -> Type #

Read ProjectMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ProjectMetadata

Show ProjectMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ProjectMetadata

NFData ProjectMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ProjectMetadata

Methods

rnf :: ProjectMetadata -> () #

Eq ProjectMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ProjectMetadata

Hashable ProjectMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ProjectMetadata

type Rep ProjectMetadata Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.ProjectMetadata

type Rep ProjectMetadata = D1 ('MetaData "ProjectMetadata" "Amazonka.LookoutVision.Types.ProjectMetadata" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "ProjectMetadata'" 'PrefixI 'True) (S1 ('MetaSel ('Just "creationTimestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 ('MetaSel ('Just "projectArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "projectName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newProjectMetadata :: ProjectMetadata Source #

Create a value of ProjectMetadata 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:creationTimestamp:ProjectMetadata', projectMetadata_creationTimestamp - The unix timestamp for the date and time that the project was created.

$sel:projectArn:ProjectMetadata', projectMetadata_projectArn - The Amazon Resource Name (ARN) of the project.

$sel:projectName:ProjectMetadata', projectMetadata_projectName - The name of the project.

S3Location

data S3Location Source #

Information about the location of training output or the output of a model packaging job.

See: newS3Location smart constructor.

Constructors

S3Location' (Maybe Text) Text 

Instances

Instances details
FromJSON S3Location Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.S3Location

ToJSON S3Location Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.S3Location

Generic S3Location Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.S3Location

Associated Types

type Rep S3Location :: Type -> Type #

Read S3Location Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.S3Location

Show S3Location Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.S3Location

NFData S3Location Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.S3Location

Methods

rnf :: S3Location -> () #

Eq S3Location Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.S3Location

Hashable S3Location Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.S3Location

type Rep S3Location Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.S3Location

type Rep S3Location = D1 ('MetaData "S3Location" "Amazonka.LookoutVision.Types.S3Location" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "S3Location'" 'PrefixI 'True) (S1 ('MetaSel ('Just "prefix") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "bucket") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newS3Location Source #

Create a value of S3Location 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:prefix:S3Location', s3Location_prefix - The path of the folder, within the S3 bucket, that contains the output.

$sel:bucket:S3Location', s3Location_bucket - The S3 bucket that contains the training or model packaging job output. If you are training a model, the bucket must in your AWS account. If you use an S3 bucket for a model packaging job, the S3 bucket must be in the same AWS Region and AWS account in which you use AWS IoT Greengrass.

Tag

data Tag Source #

A key and value pair that is attached to the specified Amazon Lookout for Vision model.

See: newTag smart constructor.

Constructors

Tag' Text Text 

Instances

Instances details
FromJSON Tag Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.Tag

ToJSON Tag Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.Tag

Generic Tag Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.Tag

Associated Types

type Rep Tag :: Type -> Type #

Methods

from :: Tag -> Rep Tag x #

to :: Rep Tag x -> Tag #

Read Tag Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.Tag

Show Tag Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.Tag

Methods

showsPrec :: Int -> Tag -> ShowS #

show :: Tag -> String #

showList :: [Tag] -> ShowS #

NFData Tag Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.Tag

Methods

rnf :: Tag -> () #

Eq Tag Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.Tag

Methods

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

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

Hashable Tag Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.Tag

Methods

hashWithSalt :: Int -> Tag -> Int #

hash :: Tag -> Int #

type Rep Tag Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.Tag

type Rep Tag = D1 ('MetaData "Tag" "Amazonka.LookoutVision.Types.Tag" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "Tag'" 'PrefixI 'True) (S1 ('MetaSel ('Just "key") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "value") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newTag Source #

Create a value of Tag 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:key:Tag', tag_key - The key of the tag that is attached to the specified model.

$sel:value:Tag', tag_value - The value of the tag that is attached to the specified model.

TargetPlatform

data TargetPlatform Source #

The platform on which a model runs on an AWS IoT Greengrass core device.

See: newTargetPlatform smart constructor.

Instances

Instances details
FromJSON TargetPlatform Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatform

ToJSON TargetPlatform Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatform

Generic TargetPlatform Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatform

Associated Types

type Rep TargetPlatform :: Type -> Type #

Read TargetPlatform Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatform

Show TargetPlatform Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatform

NFData TargetPlatform Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatform

Methods

rnf :: TargetPlatform -> () #

Eq TargetPlatform Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatform

Hashable TargetPlatform Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatform

type Rep TargetPlatform Source # 
Instance details

Defined in Amazonka.LookoutVision.Types.TargetPlatform

type Rep TargetPlatform = D1 ('MetaData "TargetPlatform" "Amazonka.LookoutVision.Types.TargetPlatform" "amazonka-lookoutvision-2.0-3cIJAF9xWxx8xGDY24BOkS" 'False) (C1 ('MetaCons "TargetPlatform'" 'PrefixI 'True) (S1 ('MetaSel ('Just "accelerator") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TargetPlatformAccelerator)) :*: (S1 ('MetaSel ('Just "os") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 TargetPlatformOs) :*: S1 ('MetaSel ('Just "arch") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 TargetPlatformArch))))

newTargetPlatform Source #

Create a value of TargetPlatform 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:accelerator:TargetPlatform', targetPlatform_accelerator - The target accelerator for the model. Currently, Amazon Lookout for Vision only supports NVIDIA (Nvidia graphics processing unit) and CPU accelerators. If you specify NVIDIA as an accelerator, you must also specify the gpu-code, trt-ver, and cuda-ver compiler options. If you don't specify an accelerator, Lookout for Vision uses the CPU for compilation and we highly recommend that you use the GreengrassConfiguration$CompilerOptions field. For example, you can use the following compiler options for CPU:

  • mcpu: CPU micro-architecture. For example, {'mcpu': 'skylake-avx512'}
  • mattr: CPU flags. For example, {'mattr': ['+neon', '+vfpv4']}

$sel:os:TargetPlatform', targetPlatform_os - The target operating system for the model. Linux is the only operating system that is currently supported.

$sel:arch:TargetPlatform', targetPlatform_arch - The target architecture for the model. The currently supported architectures are X86_64 (64-bit version of the x86 instruction set) and ARM_64 (ARMv8 64-bit CPU).