amazonka-iam-1.4.1: Amazon Identity and Access Management SDK.

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

Network.AWS.IAM.ListInstanceProfiles

Contents

Description

Lists the instance profiles that have the specified path prefix. If there are none, the action returns an empty list. For more information about instance profiles, go to About Instance Profiles.

You can paginate the results using the MaxItems and Marker parameters.

This operation returns paginated results.

Synopsis

Creating a Request

listInstanceProfiles :: ListInstanceProfiles Source #

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

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

data ListInstanceProfiles Source #

See: listInstanceProfiles smart constructor.

Instances

Eq ListInstanceProfiles Source # 
Data ListInstanceProfiles Source # 

Methods

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

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

toConstr :: ListInstanceProfiles -> Constr #

dataTypeOf :: ListInstanceProfiles -> DataType #

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

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

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

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

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

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

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

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

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

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

Read ListInstanceProfiles Source # 
Show ListInstanceProfiles Source # 
Generic ListInstanceProfiles Source # 
Hashable ListInstanceProfiles Source # 
NFData ListInstanceProfiles Source # 

Methods

rnf :: ListInstanceProfiles -> () #

AWSPager ListInstanceProfiles Source # 
AWSRequest ListInstanceProfiles Source # 
ToQuery ListInstanceProfiles Source # 
ToPath ListInstanceProfiles Source # 
ToHeaders ListInstanceProfiles Source # 
type Rep ListInstanceProfiles Source # 
type Rep ListInstanceProfiles = D1 (MetaData "ListInstanceProfiles" "Network.AWS.IAM.ListInstanceProfiles" "amazonka-iam-1.4.1-7UxTCVdPNcf8CA4oHmoXZ6" False) (C1 (MetaCons "ListInstanceProfiles'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_lipPathPrefix") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_lipMarker") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_lipMaxItems") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Nat))))))
type Rs ListInstanceProfiles Source # 

Request Lenses

lipPathPrefix :: Lens' ListInstanceProfiles (Maybe Text) Source #

The path prefix for filtering the results. For example, the prefix '\/application_abc\/component_xyz\/' gets all instance profiles whose path starts with '\/application_abc\/component_xyz\/'.

This parameter is optional. If it is not included, it defaults to a slash (/), listing all instance profiles.

lipMarker :: Lens' ListInstanceProfiles (Maybe Text) Source #

Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start.

lipMaxItems :: Lens' ListInstanceProfiles (Maybe Natural) Source #

Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true.

This parameter is optional. If you do not include it, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from.

Destructuring the Response

listInstanceProfilesResponse Source #

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

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

data ListInstanceProfilesResponse Source #

Contains the response to a successful ListInstanceProfiles request.

See: listInstanceProfilesResponse smart constructor.

Instances

Eq ListInstanceProfilesResponse Source # 
Data ListInstanceProfilesResponse Source # 

Methods

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

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

toConstr :: ListInstanceProfilesResponse -> Constr #

dataTypeOf :: ListInstanceProfilesResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Read ListInstanceProfilesResponse Source # 
Show ListInstanceProfilesResponse Source # 
Generic ListInstanceProfilesResponse Source # 
NFData ListInstanceProfilesResponse Source # 
type Rep ListInstanceProfilesResponse Source # 
type Rep ListInstanceProfilesResponse = D1 (MetaData "ListInstanceProfilesResponse" "Network.AWS.IAM.ListInstanceProfiles" "amazonka-iam-1.4.1-7UxTCVdPNcf8CA4oHmoXZ6" False) (C1 (MetaCons "ListInstanceProfilesResponse'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_liprsMarker") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_liprsIsTruncated") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool)))) ((:*:) (S1 (MetaSel (Just Symbol "_liprsResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Int)) (S1 (MetaSel (Just Symbol "_liprsInstanceProfiles") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 [InstanceProfile])))))

Response Lenses

liprsMarker :: Lens' ListInstanceProfilesResponse (Maybe Text) Source #

When IsTruncated is true, this element is present and contains the value to use for the Marker parameter in a subsequent pagination request.

liprsIsTruncated :: Lens' ListInstanceProfilesResponse (Maybe Bool) Source #

A flag that indicates whether there are more items to return. If your results were truncated, you can make a subsequent pagination request using the Marker request parameter to retrieve more items. Note that IAM might return fewer than the MaxItems number of results even when there are more results available. We recommend that you check IsTruncated after every call to ensure that you receive all of your results.