amazonka-sagemaker-1.6.0: Amazon SageMaker Service SDK.

Copyright(c) 2013-2018 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.SageMaker.ListEndpointConfigs

Contents

Description

Lists endpoint configurations.

This operation returns paginated results.

Synopsis

Creating a Request

listEndpointConfigs :: ListEndpointConfigs Source #

Creates a value of ListEndpointConfigs with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • lecNameContains - A string in the endpoint configuration name. This filter returns only endpoint configurations whose name contains the specified string.
  • lecCreationTimeAfter - A filter that returns only endpoint configurations created after the specified time (timestamp).
  • lecNextToken - If the result of the previous ListEndpointConfig request was truncated, the response includes a NextToken . To retrieve the next set of endpoint configurations, use the token in the next request.
  • lecSortOrder - The sort order for results. The default is Ascending .
  • lecCreationTimeBefore - A filter that returns only endpoint configurations created before the specified time (timestamp).
  • lecMaxResults - The maximum number of training jobs to return in the response.
  • lecSortBy - The field to sort results by. The default is CreationTime .

data ListEndpointConfigs Source #

See: listEndpointConfigs smart constructor.

Instances

Eq ListEndpointConfigs Source # 
Data ListEndpointConfigs Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ListEndpointConfigs -> c ListEndpointConfigs #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ListEndpointConfigs #

toConstr :: ListEndpointConfigs -> Constr #

dataTypeOf :: ListEndpointConfigs -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ListEndpointConfigs) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ListEndpointConfigs) #

gmapT :: (forall b. Data b => b -> b) -> ListEndpointConfigs -> ListEndpointConfigs #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ListEndpointConfigs -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ListEndpointConfigs -> r #

gmapQ :: (forall d. Data d => d -> u) -> ListEndpointConfigs -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ListEndpointConfigs -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ListEndpointConfigs -> m ListEndpointConfigs #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ListEndpointConfigs -> m ListEndpointConfigs #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ListEndpointConfigs -> m ListEndpointConfigs #

Read ListEndpointConfigs Source # 
Show ListEndpointConfigs Source # 
Generic ListEndpointConfigs Source # 
Hashable ListEndpointConfigs Source # 
ToJSON ListEndpointConfigs Source # 
NFData ListEndpointConfigs Source # 

Methods

rnf :: ListEndpointConfigs -> () #

AWSPager ListEndpointConfigs Source # 
AWSRequest ListEndpointConfigs Source # 
ToHeaders ListEndpointConfigs Source # 
ToPath ListEndpointConfigs Source # 
ToQuery ListEndpointConfigs Source # 
type Rep ListEndpointConfigs Source # 
type Rep ListEndpointConfigs = D1 * (MetaData "ListEndpointConfigs" "Network.AWS.SageMaker.ListEndpointConfigs" "amazonka-sagemaker-1.6.0-9oNc2IB3ZCo9VZHXZi5zcA" False) (C1 * (MetaCons "ListEndpointConfigs'" PrefixI True) ((:*:) * ((:*:) * (S1 * (MetaSel (Just Symbol "_lecNameContains") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) ((:*:) * (S1 * (MetaSel (Just Symbol "_lecCreationTimeAfter") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe POSIX))) (S1 * (MetaSel (Just Symbol "_lecNextToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))))) ((:*:) * ((:*:) * (S1 * (MetaSel (Just Symbol "_lecSortOrder") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe OrderKey))) (S1 * (MetaSel (Just Symbol "_lecCreationTimeBefore") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe POSIX)))) ((:*:) * (S1 * (MetaSel (Just Symbol "_lecMaxResults") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Nat))) (S1 * (MetaSel (Just Symbol "_lecSortBy") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe EndpointConfigSortKey)))))))
type Rs ListEndpointConfigs Source # 

Request Lenses

lecNameContains :: Lens' ListEndpointConfigs (Maybe Text) Source #

A string in the endpoint configuration name. This filter returns only endpoint configurations whose name contains the specified string.

lecCreationTimeAfter :: Lens' ListEndpointConfigs (Maybe UTCTime) Source #

A filter that returns only endpoint configurations created after the specified time (timestamp).

lecNextToken :: Lens' ListEndpointConfigs (Maybe Text) Source #

If the result of the previous ListEndpointConfig request was truncated, the response includes a NextToken . To retrieve the next set of endpoint configurations, use the token in the next request.

lecSortOrder :: Lens' ListEndpointConfigs (Maybe OrderKey) Source #

The sort order for results. The default is Ascending .

lecCreationTimeBefore :: Lens' ListEndpointConfigs (Maybe UTCTime) Source #

A filter that returns only endpoint configurations created before the specified time (timestamp).

lecMaxResults :: Lens' ListEndpointConfigs (Maybe Natural) Source #

The maximum number of training jobs to return in the response.

lecSortBy :: Lens' ListEndpointConfigs (Maybe EndpointConfigSortKey) Source #

The field to sort results by. The default is CreationTime .

Destructuring the Response

listEndpointConfigsResponse Source #

Creates a value of ListEndpointConfigsResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • lecrsNextToken - If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of endpoint configurations, use it in the subsequent request
  • lecrsResponseStatus - -- | The response status code.
  • lecrsEndpointConfigs - An array of endpoint configurations.

data ListEndpointConfigsResponse Source #

See: listEndpointConfigsResponse smart constructor.

Instances

Eq ListEndpointConfigsResponse Source # 
Data ListEndpointConfigsResponse Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ListEndpointConfigsResponse -> c ListEndpointConfigsResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ListEndpointConfigsResponse #

toConstr :: ListEndpointConfigsResponse -> Constr #

dataTypeOf :: ListEndpointConfigsResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ListEndpointConfigsResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ListEndpointConfigsResponse) #

gmapT :: (forall b. Data b => b -> b) -> ListEndpointConfigsResponse -> ListEndpointConfigsResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ListEndpointConfigsResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ListEndpointConfigsResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> ListEndpointConfigsResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ListEndpointConfigsResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ListEndpointConfigsResponse -> m ListEndpointConfigsResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ListEndpointConfigsResponse -> m ListEndpointConfigsResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ListEndpointConfigsResponse -> m ListEndpointConfigsResponse #

Read ListEndpointConfigsResponse Source # 
Show ListEndpointConfigsResponse Source # 
Generic ListEndpointConfigsResponse Source # 
NFData ListEndpointConfigsResponse Source # 
type Rep ListEndpointConfigsResponse Source # 
type Rep ListEndpointConfigsResponse = D1 * (MetaData "ListEndpointConfigsResponse" "Network.AWS.SageMaker.ListEndpointConfigs" "amazonka-sagemaker-1.6.0-9oNc2IB3ZCo9VZHXZi5zcA" False) (C1 * (MetaCons "ListEndpointConfigsResponse'" PrefixI True) ((:*:) * (S1 * (MetaSel (Just Symbol "_lecrsNextToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) ((:*:) * (S1 * (MetaSel (Just Symbol "_lecrsResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * Int)) (S1 * (MetaSel (Just Symbol "_lecrsEndpointConfigs") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * [EndpointConfigSummary])))))

Response Lenses

lecrsNextToken :: Lens' ListEndpointConfigsResponse (Maybe Text) Source #

If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of endpoint configurations, use it in the subsequent request