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

Amazonka.SageMaker.ListModelCardExportJobs

Description

List the export jobs for the Amazon SageMaker Model Card.

This operation returns paginated results.

Synopsis

Creating a Request

data ListModelCardExportJobs Source #

See: newListModelCardExportJobs smart constructor.

Constructors

ListModelCardExportJobs' 

Fields

Instances

Instances details
ToJSON ListModelCardExportJobs Source # 
Instance details

Defined in Amazonka.SageMaker.ListModelCardExportJobs

ToHeaders ListModelCardExportJobs Source # 
Instance details

Defined in Amazonka.SageMaker.ListModelCardExportJobs

ToPath ListModelCardExportJobs Source # 
Instance details

Defined in Amazonka.SageMaker.ListModelCardExportJobs

ToQuery ListModelCardExportJobs Source # 
Instance details

Defined in Amazonka.SageMaker.ListModelCardExportJobs

AWSPager ListModelCardExportJobs Source # 
Instance details

Defined in Amazonka.SageMaker.ListModelCardExportJobs

AWSRequest ListModelCardExportJobs Source # 
Instance details

Defined in Amazonka.SageMaker.ListModelCardExportJobs

Generic ListModelCardExportJobs Source # 
Instance details

Defined in Amazonka.SageMaker.ListModelCardExportJobs

Associated Types

type Rep ListModelCardExportJobs :: Type -> Type #

Read ListModelCardExportJobs Source # 
Instance details

Defined in Amazonka.SageMaker.ListModelCardExportJobs

Show ListModelCardExportJobs Source # 
Instance details

Defined in Amazonka.SageMaker.ListModelCardExportJobs

NFData ListModelCardExportJobs Source # 
Instance details

Defined in Amazonka.SageMaker.ListModelCardExportJobs

Methods

rnf :: ListModelCardExportJobs -> () #

Eq ListModelCardExportJobs Source # 
Instance details

Defined in Amazonka.SageMaker.ListModelCardExportJobs

Hashable ListModelCardExportJobs Source # 
Instance details

Defined in Amazonka.SageMaker.ListModelCardExportJobs

type AWSResponse ListModelCardExportJobs Source # 
Instance details

Defined in Amazonka.SageMaker.ListModelCardExportJobs

type Rep ListModelCardExportJobs Source # 
Instance details

Defined in Amazonka.SageMaker.ListModelCardExportJobs

type Rep ListModelCardExportJobs = D1 ('MetaData "ListModelCardExportJobs" "Amazonka.SageMaker.ListModelCardExportJobs" "amazonka-sagemaker-2.0-9SyrKZ4KqhsL1qX9u3ILA3" 'False) (C1 ('MetaCons "ListModelCardExportJobs'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "creationTimeAfter") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "creationTimeBefore") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))) :*: (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: (S1 ('MetaSel ('Just "modelCardExportJobNameContains") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "modelCardVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int))))) :*: ((S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "sortBy") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelCardExportJobSortBy))) :*: (S1 ('MetaSel ('Just "sortOrder") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelCardExportJobSortOrder)) :*: (S1 ('MetaSel ('Just "statusEquals") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelCardExportJobStatus)) :*: S1 ('MetaSel ('Just "modelCardName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))))

newListModelCardExportJobs Source #

Create a value of ListModelCardExportJobs 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:creationTimeAfter:ListModelCardExportJobs', listModelCardExportJobs_creationTimeAfter - Only list model card export jobs that were created after the time specified.

$sel:creationTimeBefore:ListModelCardExportJobs', listModelCardExportJobs_creationTimeBefore - Only list model card export jobs that were created before the time specified.

$sel:maxResults:ListModelCardExportJobs', listModelCardExportJobs_maxResults - The maximum number of model card export jobs to list.

$sel:modelCardExportJobNameContains:ListModelCardExportJobs', listModelCardExportJobs_modelCardExportJobNameContains - Only list model card export jobs with names that contain the specified string.

ListModelCardExportJobs, listModelCardExportJobs_modelCardVersion - List export jobs for the model card with the specified version.

ListModelCardExportJobs, listModelCardExportJobs_nextToken - If the response to a previous ListModelCardExportJobs request was truncated, the response includes a NextToken. To retrieve the next set of model card export jobs, use the token in the next request.

$sel:sortBy:ListModelCardExportJobs', listModelCardExportJobs_sortBy - Sort model card export jobs by either name or creation time. Sorts by creation time by default.

$sel:sortOrder:ListModelCardExportJobs', listModelCardExportJobs_sortOrder - Sort model card export jobs by ascending or descending order.

$sel:statusEquals:ListModelCardExportJobs', listModelCardExportJobs_statusEquals - Only list model card export jobs with the specified status.

ListModelCardExportJobs, listModelCardExportJobs_modelCardName - List export jobs for the model card with the specified name.

Request Lenses

listModelCardExportJobs_creationTimeAfter :: Lens' ListModelCardExportJobs (Maybe UTCTime) Source #

Only list model card export jobs that were created after the time specified.

listModelCardExportJobs_creationTimeBefore :: Lens' ListModelCardExportJobs (Maybe UTCTime) Source #

Only list model card export jobs that were created before the time specified.

listModelCardExportJobs_maxResults :: Lens' ListModelCardExportJobs (Maybe Natural) Source #

The maximum number of model card export jobs to list.

listModelCardExportJobs_modelCardExportJobNameContains :: Lens' ListModelCardExportJobs (Maybe Text) Source #

Only list model card export jobs with names that contain the specified string.

listModelCardExportJobs_modelCardVersion :: Lens' ListModelCardExportJobs (Maybe Int) Source #

List export jobs for the model card with the specified version.

listModelCardExportJobs_nextToken :: Lens' ListModelCardExportJobs (Maybe Text) Source #

If the response to a previous ListModelCardExportJobs request was truncated, the response includes a NextToken. To retrieve the next set of model card export jobs, use the token in the next request.

listModelCardExportJobs_sortBy :: Lens' ListModelCardExportJobs (Maybe ModelCardExportJobSortBy) Source #

Sort model card export jobs by either name or creation time. Sorts by creation time by default.

listModelCardExportJobs_sortOrder :: Lens' ListModelCardExportJobs (Maybe ModelCardExportJobSortOrder) Source #

Sort model card export jobs by ascending or descending order.

listModelCardExportJobs_statusEquals :: Lens' ListModelCardExportJobs (Maybe ModelCardExportJobStatus) Source #

Only list model card export jobs with the specified status.

listModelCardExportJobs_modelCardName :: Lens' ListModelCardExportJobs Text Source #

List export jobs for the model card with the specified name.

Destructuring the Response

data ListModelCardExportJobsResponse Source #

See: newListModelCardExportJobsResponse smart constructor.

Constructors

ListModelCardExportJobsResponse' 

Fields

Instances

Instances details
Generic ListModelCardExportJobsResponse Source # 
Instance details

Defined in Amazonka.SageMaker.ListModelCardExportJobs

Associated Types

type Rep ListModelCardExportJobsResponse :: Type -> Type #

Read ListModelCardExportJobsResponse Source # 
Instance details

Defined in Amazonka.SageMaker.ListModelCardExportJobs

Show ListModelCardExportJobsResponse Source # 
Instance details

Defined in Amazonka.SageMaker.ListModelCardExportJobs

NFData ListModelCardExportJobsResponse Source # 
Instance details

Defined in Amazonka.SageMaker.ListModelCardExportJobs

Eq ListModelCardExportJobsResponse Source # 
Instance details

Defined in Amazonka.SageMaker.ListModelCardExportJobs

type Rep ListModelCardExportJobsResponse Source # 
Instance details

Defined in Amazonka.SageMaker.ListModelCardExportJobs

type Rep ListModelCardExportJobsResponse = D1 ('MetaData "ListModelCardExportJobsResponse" "Amazonka.SageMaker.ListModelCardExportJobs" "amazonka-sagemaker-2.0-9SyrKZ4KqhsL1qX9u3ILA3" 'False) (C1 ('MetaCons "ListModelCardExportJobsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "modelCardExportJobSummaries") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [ModelCardExportJobSummary]))))

newListModelCardExportJobsResponse Source #

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

ListModelCardExportJobs, listModelCardExportJobsResponse_nextToken - If the response is truncated, SageMaker returns this token. To retrieve the next set of model card export jobs, use it in the subsequent request.

$sel:httpStatus:ListModelCardExportJobsResponse', listModelCardExportJobsResponse_httpStatus - The response's http status code.

$sel:modelCardExportJobSummaries:ListModelCardExportJobsResponse', listModelCardExportJobsResponse_modelCardExportJobSummaries - The summaries of the listed model card export jobs.

Response Lenses

listModelCardExportJobsResponse_nextToken :: Lens' ListModelCardExportJobsResponse (Maybe Text) Source #

If the response is truncated, SageMaker returns this token. To retrieve the next set of model card export jobs, use it in the subsequent request.