amazonka-servicecatalog-appregistry-2.0: Amazon Service Catalog App Registry 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.ServiceCatalogAppRegistry.ListAttributeGroupsForApplication

Description

Lists the details of all attribute groups associated with a specific application. The results display in pages.

This operation returns paginated results.

Synopsis

Creating a Request

data ListAttributeGroupsForApplication Source #

See: newListAttributeGroupsForApplication smart constructor.

Constructors

ListAttributeGroupsForApplication' 

Fields

  • maxResults :: Maybe Natural

    The upper bound of the number of results to return. The value cannot exceed 25. If you omit this parameter, it defaults to 25. This value is optional.

  • nextToken :: Maybe Text

    This token retrieves the next page of results after a previous API call.

  • application :: Text

    The name or ID of the application.

Instances

Instances details
ToHeaders ListAttributeGroupsForApplication Source # 
Instance details

Defined in Amazonka.ServiceCatalogAppRegistry.ListAttributeGroupsForApplication

ToPath ListAttributeGroupsForApplication Source # 
Instance details

Defined in Amazonka.ServiceCatalogAppRegistry.ListAttributeGroupsForApplication

ToQuery ListAttributeGroupsForApplication Source # 
Instance details

Defined in Amazonka.ServiceCatalogAppRegistry.ListAttributeGroupsForApplication

AWSPager ListAttributeGroupsForApplication Source # 
Instance details

Defined in Amazonka.ServiceCatalogAppRegistry.ListAttributeGroupsForApplication

AWSRequest ListAttributeGroupsForApplication Source # 
Instance details

Defined in Amazonka.ServiceCatalogAppRegistry.ListAttributeGroupsForApplication

Generic ListAttributeGroupsForApplication Source # 
Instance details

Defined in Amazonka.ServiceCatalogAppRegistry.ListAttributeGroupsForApplication

Associated Types

type Rep ListAttributeGroupsForApplication :: Type -> Type #

Read ListAttributeGroupsForApplication Source # 
Instance details

Defined in Amazonka.ServiceCatalogAppRegistry.ListAttributeGroupsForApplication

Show ListAttributeGroupsForApplication Source # 
Instance details

Defined in Amazonka.ServiceCatalogAppRegistry.ListAttributeGroupsForApplication

NFData ListAttributeGroupsForApplication Source # 
Instance details

Defined in Amazonka.ServiceCatalogAppRegistry.ListAttributeGroupsForApplication

Eq ListAttributeGroupsForApplication Source # 
Instance details

Defined in Amazonka.ServiceCatalogAppRegistry.ListAttributeGroupsForApplication

Hashable ListAttributeGroupsForApplication Source # 
Instance details

Defined in Amazonka.ServiceCatalogAppRegistry.ListAttributeGroupsForApplication

type AWSResponse ListAttributeGroupsForApplication Source # 
Instance details

Defined in Amazonka.ServiceCatalogAppRegistry.ListAttributeGroupsForApplication

type Rep ListAttributeGroupsForApplication Source # 
Instance details

Defined in Amazonka.ServiceCatalogAppRegistry.ListAttributeGroupsForApplication

type Rep ListAttributeGroupsForApplication = D1 ('MetaData "ListAttributeGroupsForApplication" "Amazonka.ServiceCatalogAppRegistry.ListAttributeGroupsForApplication" "amazonka-servicecatalog-appregistry-2.0-KYx3j6twc2kJRq31A1B5os" 'False) (C1 ('MetaCons "ListAttributeGroupsForApplication'" '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 "application") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newListAttributeGroupsForApplication Source #

Create a value of ListAttributeGroupsForApplication 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:ListAttributeGroupsForApplication', listAttributeGroupsForApplication_maxResults - The upper bound of the number of results to return. The value cannot exceed 25. If you omit this parameter, it defaults to 25. This value is optional.

ListAttributeGroupsForApplication, listAttributeGroupsForApplication_nextToken - This token retrieves the next page of results after a previous API call.

$sel:application:ListAttributeGroupsForApplication', listAttributeGroupsForApplication_application - The name or ID of the application.

Request Lenses

listAttributeGroupsForApplication_maxResults :: Lens' ListAttributeGroupsForApplication (Maybe Natural) Source #

The upper bound of the number of results to return. The value cannot exceed 25. If you omit this parameter, it defaults to 25. This value is optional.

listAttributeGroupsForApplication_nextToken :: Lens' ListAttributeGroupsForApplication (Maybe Text) Source #

This token retrieves the next page of results after a previous API call.

Destructuring the Response

data ListAttributeGroupsForApplicationResponse Source #

Constructors

ListAttributeGroupsForApplicationResponse' 

Fields

Instances

Instances details
Generic ListAttributeGroupsForApplicationResponse Source # 
Instance details

Defined in Amazonka.ServiceCatalogAppRegistry.ListAttributeGroupsForApplication

Read ListAttributeGroupsForApplicationResponse Source # 
Instance details

Defined in Amazonka.ServiceCatalogAppRegistry.ListAttributeGroupsForApplication

Show ListAttributeGroupsForApplicationResponse Source # 
Instance details

Defined in Amazonka.ServiceCatalogAppRegistry.ListAttributeGroupsForApplication

NFData ListAttributeGroupsForApplicationResponse Source # 
Instance details

Defined in Amazonka.ServiceCatalogAppRegistry.ListAttributeGroupsForApplication

Eq ListAttributeGroupsForApplicationResponse Source # 
Instance details

Defined in Amazonka.ServiceCatalogAppRegistry.ListAttributeGroupsForApplication

type Rep ListAttributeGroupsForApplicationResponse Source # 
Instance details

Defined in Amazonka.ServiceCatalogAppRegistry.ListAttributeGroupsForApplication

type Rep ListAttributeGroupsForApplicationResponse = D1 ('MetaData "ListAttributeGroupsForApplicationResponse" "Amazonka.ServiceCatalogAppRegistry.ListAttributeGroupsForApplication" "amazonka-servicecatalog-appregistry-2.0-KYx3j6twc2kJRq31A1B5os" 'False) (C1 ('MetaCons "ListAttributeGroupsForApplicationResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "attributeGroupsDetails") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [AttributeGroupDetails])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListAttributeGroupsForApplicationResponse Source #

Create a value of ListAttributeGroupsForApplicationResponse 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:attributeGroupsDetails:ListAttributeGroupsForApplicationResponse', listAttributeGroupsForApplicationResponse_attributeGroupsDetails - The details related to a specific attribute group.

ListAttributeGroupsForApplication, listAttributeGroupsForApplicationResponse_nextToken - The token to use to get the next page of results after a previous API call.

$sel:httpStatus:ListAttributeGroupsForApplicationResponse', listAttributeGroupsForApplicationResponse_httpStatus - The response's http status code.

Response Lenses

listAttributeGroupsForApplicationResponse_nextToken :: Lens' ListAttributeGroupsForApplicationResponse (Maybe Text) Source #

The token to use to get the next page of results after a previous API call.