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

Amazonka.ServiceCatalog.GetProvisionedProductOutputs

Description

This API takes either a ProvisonedProductId or a ProvisionedProductName, along with a list of one or more output keys, and responds with the key/value pairs of those outputs.

Synopsis

Creating a Request

data GetProvisionedProductOutputs Source #

See: newGetProvisionedProductOutputs smart constructor.

Constructors

GetProvisionedProductOutputs' 

Fields

Instances

Instances details
Eq GetProvisionedProductOutputs Source # 
Instance details

Defined in Amazonka.ServiceCatalog.GetProvisionedProductOutputs

Read GetProvisionedProductOutputs Source # 
Instance details

Defined in Amazonka.ServiceCatalog.GetProvisionedProductOutputs

Show GetProvisionedProductOutputs Source # 
Instance details

Defined in Amazonka.ServiceCatalog.GetProvisionedProductOutputs

Generic GetProvisionedProductOutputs Source # 
Instance details

Defined in Amazonka.ServiceCatalog.GetProvisionedProductOutputs

Associated Types

type Rep GetProvisionedProductOutputs :: Type -> Type #

NFData GetProvisionedProductOutputs Source # 
Instance details

Defined in Amazonka.ServiceCatalog.GetProvisionedProductOutputs

Hashable GetProvisionedProductOutputs Source # 
Instance details

Defined in Amazonka.ServiceCatalog.GetProvisionedProductOutputs

ToJSON GetProvisionedProductOutputs Source # 
Instance details

Defined in Amazonka.ServiceCatalog.GetProvisionedProductOutputs

AWSRequest GetProvisionedProductOutputs Source # 
Instance details

Defined in Amazonka.ServiceCatalog.GetProvisionedProductOutputs

ToHeaders GetProvisionedProductOutputs Source # 
Instance details

Defined in Amazonka.ServiceCatalog.GetProvisionedProductOutputs

ToPath GetProvisionedProductOutputs Source # 
Instance details

Defined in Amazonka.ServiceCatalog.GetProvisionedProductOutputs

ToQuery GetProvisionedProductOutputs Source # 
Instance details

Defined in Amazonka.ServiceCatalog.GetProvisionedProductOutputs

type Rep GetProvisionedProductOutputs Source # 
Instance details

Defined in Amazonka.ServiceCatalog.GetProvisionedProductOutputs

type Rep GetProvisionedProductOutputs = D1 ('MetaData "GetProvisionedProductOutputs" "Amazonka.ServiceCatalog.GetProvisionedProductOutputs" "libZSservicesZSamazonka-servicecatalogZSamazonka-servicecatalog" 'False) (C1 ('MetaCons "GetProvisionedProductOutputs'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "provisionedProductName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "outputKeys") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "acceptLanguage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "pageToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "pageSize") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "provisionedProductId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))
type AWSResponse GetProvisionedProductOutputs Source # 
Instance details

Defined in Amazonka.ServiceCatalog.GetProvisionedProductOutputs

newGetProvisionedProductOutputs :: GetProvisionedProductOutputs Source #

Create a value of GetProvisionedProductOutputs 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:provisionedProductName:GetProvisionedProductOutputs', getProvisionedProductOutputs_provisionedProductName - The name of the provisioned product that you want the outputs from.

$sel:outputKeys:GetProvisionedProductOutputs', getProvisionedProductOutputs_outputKeys - The list of keys that the API should return with their values. If none are provided, the API will return all outputs of the provisioned product.

$sel:acceptLanguage:GetProvisionedProductOutputs', getProvisionedProductOutputs_acceptLanguage - The language code.

  • en - English (default)
  • jp - Japanese
  • zh - Chinese

$sel:pageToken:GetProvisionedProductOutputs', getProvisionedProductOutputs_pageToken - The page token for the next set of results. To retrieve the first set of results, use null.

$sel:pageSize:GetProvisionedProductOutputs', getProvisionedProductOutputs_pageSize - The maximum number of items to return with this call.

$sel:provisionedProductId:GetProvisionedProductOutputs', getProvisionedProductOutputs_provisionedProductId - The identifier of the provisioned product that you want the outputs from.

Request Lenses

getProvisionedProductOutputs_provisionedProductName :: Lens' GetProvisionedProductOutputs (Maybe Text) Source #

The name of the provisioned product that you want the outputs from.

getProvisionedProductOutputs_outputKeys :: Lens' GetProvisionedProductOutputs (Maybe [Text]) Source #

The list of keys that the API should return with their values. If none are provided, the API will return all outputs of the provisioned product.

getProvisionedProductOutputs_acceptLanguage :: Lens' GetProvisionedProductOutputs (Maybe Text) Source #

The language code.

  • en - English (default)
  • jp - Japanese
  • zh - Chinese

getProvisionedProductOutputs_pageToken :: Lens' GetProvisionedProductOutputs (Maybe Text) Source #

The page token for the next set of results. To retrieve the first set of results, use null.

getProvisionedProductOutputs_pageSize :: Lens' GetProvisionedProductOutputs (Maybe Natural) Source #

The maximum number of items to return with this call.

getProvisionedProductOutputs_provisionedProductId :: Lens' GetProvisionedProductOutputs (Maybe Text) Source #

The identifier of the provisioned product that you want the outputs from.

Destructuring the Response

data GetProvisionedProductOutputsResponse Source #

Constructors

GetProvisionedProductOutputsResponse' 

Fields

  • nextPageToken :: Maybe Text

    The page token to use to retrieve the next set of results. If there are no additional results, this value is null.

  • outputs :: Maybe [RecordOutput]

    Information about the product created as the result of a request. For example, the output for a CloudFormation-backed product that creates an S3 bucket would include the S3 bucket URL.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Eq GetProvisionedProductOutputsResponse Source # 
Instance details

Defined in Amazonka.ServiceCatalog.GetProvisionedProductOutputs

Read GetProvisionedProductOutputsResponse Source # 
Instance details

Defined in Amazonka.ServiceCatalog.GetProvisionedProductOutputs

Show GetProvisionedProductOutputsResponse Source # 
Instance details

Defined in Amazonka.ServiceCatalog.GetProvisionedProductOutputs

Generic GetProvisionedProductOutputsResponse Source # 
Instance details

Defined in Amazonka.ServiceCatalog.GetProvisionedProductOutputs

NFData GetProvisionedProductOutputsResponse Source # 
Instance details

Defined in Amazonka.ServiceCatalog.GetProvisionedProductOutputs

type Rep GetProvisionedProductOutputsResponse Source # 
Instance details

Defined in Amazonka.ServiceCatalog.GetProvisionedProductOutputs

type Rep GetProvisionedProductOutputsResponse = D1 ('MetaData "GetProvisionedProductOutputsResponse" "Amazonka.ServiceCatalog.GetProvisionedProductOutputs" "libZSservicesZSamazonka-servicecatalogZSamazonka-servicecatalog" 'False) (C1 ('MetaCons "GetProvisionedProductOutputsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextPageToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "outputs") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [RecordOutput])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newGetProvisionedProductOutputsResponse Source #

Create a value of GetProvisionedProductOutputsResponse 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:nextPageToken:GetProvisionedProductOutputsResponse', getProvisionedProductOutputsResponse_nextPageToken - The page token to use to retrieve the next set of results. If there are no additional results, this value is null.

$sel:outputs:GetProvisionedProductOutputsResponse', getProvisionedProductOutputsResponse_outputs - Information about the product created as the result of a request. For example, the output for a CloudFormation-backed product that creates an S3 bucket would include the S3 bucket URL.

$sel:httpStatus:GetProvisionedProductOutputsResponse', getProvisionedProductOutputsResponse_httpStatus - The response's http status code.

Response Lenses

getProvisionedProductOutputsResponse_nextPageToken :: Lens' GetProvisionedProductOutputsResponse (Maybe Text) Source #

The page token to use to retrieve the next set of results. If there are no additional results, this value is null.

getProvisionedProductOutputsResponse_outputs :: Lens' GetProvisionedProductOutputsResponse (Maybe [RecordOutput]) Source #

Information about the product created as the result of a request. For example, the output for a CloudFormation-backed product that creates an S3 bucket would include the S3 bucket URL.