libZSservicesZSamazonka-apigatewayZSamazonka-apigateway
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.APIGateway.GetUsagePlan

Description

Gets a usage plan of a given plan identifier.

Synopsis

Creating a Request

data GetUsagePlan Source #

The GET request to get a usage plan of a given plan identifier.

See: newGetUsagePlan smart constructor.

Constructors

GetUsagePlan' 

Fields

  • usagePlanId :: Text
    Required
    The identifier of the UsagePlan resource to be retrieved.

Instances

Instances details
Eq GetUsagePlan Source # 
Instance details

Defined in Amazonka.APIGateway.GetUsagePlan

Read GetUsagePlan Source # 
Instance details

Defined in Amazonka.APIGateway.GetUsagePlan

Show GetUsagePlan Source # 
Instance details

Defined in Amazonka.APIGateway.GetUsagePlan

Generic GetUsagePlan Source # 
Instance details

Defined in Amazonka.APIGateway.GetUsagePlan

Associated Types

type Rep GetUsagePlan :: Type -> Type #

NFData GetUsagePlan Source # 
Instance details

Defined in Amazonka.APIGateway.GetUsagePlan

Methods

rnf :: GetUsagePlan -> () #

Hashable GetUsagePlan Source # 
Instance details

Defined in Amazonka.APIGateway.GetUsagePlan

AWSRequest GetUsagePlan Source # 
Instance details

Defined in Amazonka.APIGateway.GetUsagePlan

Associated Types

type AWSResponse GetUsagePlan #

ToHeaders GetUsagePlan Source # 
Instance details

Defined in Amazonka.APIGateway.GetUsagePlan

ToPath GetUsagePlan Source # 
Instance details

Defined in Amazonka.APIGateway.GetUsagePlan

ToQuery GetUsagePlan Source # 
Instance details

Defined in Amazonka.APIGateway.GetUsagePlan

type Rep GetUsagePlan Source # 
Instance details

Defined in Amazonka.APIGateway.GetUsagePlan

type Rep GetUsagePlan = D1 ('MetaData "GetUsagePlan" "Amazonka.APIGateway.GetUsagePlan" "libZSservicesZSamazonka-apigatewayZSamazonka-apigateway" 'False) (C1 ('MetaCons "GetUsagePlan'" 'PrefixI 'True) (S1 ('MetaSel ('Just "usagePlanId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse GetUsagePlan Source # 
Instance details

Defined in Amazonka.APIGateway.GetUsagePlan

newGetUsagePlan Source #

Create a value of GetUsagePlan 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:usagePlanId:GetUsagePlan', getUsagePlan_usagePlanId - [Required] The identifier of the UsagePlan resource to be retrieved.

Request Lenses

getUsagePlan_usagePlanId :: Lens' GetUsagePlan Text Source #

Required
The identifier of the UsagePlan resource to be retrieved.

Destructuring the Response

data UsagePlan Source #

Represents a usage plan than can specify who can assess associated API stages with specified request limits and quotas.

In a usage plan, you associate an API by specifying the API's Id and a stage name of the specified API. You add plan customers by adding API keys to the plan.

Create and Use Usage Plans

See: newUsagePlan smart constructor.

Constructors

UsagePlan' 

Fields

Instances

Instances details
Eq UsagePlan Source # 
Instance details

Defined in Amazonka.APIGateway.Types.UsagePlan

Read UsagePlan Source # 
Instance details

Defined in Amazonka.APIGateway.Types.UsagePlan

Show UsagePlan Source # 
Instance details

Defined in Amazonka.APIGateway.Types.UsagePlan

Generic UsagePlan Source # 
Instance details

Defined in Amazonka.APIGateway.Types.UsagePlan

Associated Types

type Rep UsagePlan :: Type -> Type #

NFData UsagePlan Source # 
Instance details

Defined in Amazonka.APIGateway.Types.UsagePlan

Methods

rnf :: UsagePlan -> () #

Hashable UsagePlan Source # 
Instance details

Defined in Amazonka.APIGateway.Types.UsagePlan

FromJSON UsagePlan Source # 
Instance details

Defined in Amazonka.APIGateway.Types.UsagePlan

type Rep UsagePlan Source # 
Instance details

Defined in Amazonka.APIGateway.Types.UsagePlan

newUsagePlan :: UsagePlan Source #

Create a value of UsagePlan 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:apiStages:UsagePlan', usagePlan_apiStages - The associated API stages of a usage plan.

$sel:name:UsagePlan', usagePlan_name - The name of a usage plan.

$sel:id:UsagePlan', usagePlan_id - The identifier of a UsagePlan resource.

$sel:throttle:UsagePlan', usagePlan_throttle - The request throttle limits of a usage plan.

$sel:quota:UsagePlan', usagePlan_quota - The maximum number of permitted requests per a given unit time interval.

$sel:description:UsagePlan', usagePlan_description - The description of a usage plan.

$sel:productCode:UsagePlan', usagePlan_productCode - The AWS Markeplace product identifier to associate with the usage plan as a SaaS product on AWS Marketplace.

$sel:tags:UsagePlan', usagePlan_tags - The collection of tags. Each tag element is associated with a given resource.

Response Lenses

usagePlan_apiStages :: Lens' UsagePlan (Maybe [ApiStage]) Source #

The associated API stages of a usage plan.

usagePlan_name :: Lens' UsagePlan (Maybe Text) Source #

The name of a usage plan.

usagePlan_id :: Lens' UsagePlan (Maybe Text) Source #

The identifier of a UsagePlan resource.

usagePlan_throttle :: Lens' UsagePlan (Maybe ThrottleSettings) Source #

The request throttle limits of a usage plan.

usagePlan_quota :: Lens' UsagePlan (Maybe QuotaSettings) Source #

The maximum number of permitted requests per a given unit time interval.

usagePlan_description :: Lens' UsagePlan (Maybe Text) Source #

The description of a usage plan.

usagePlan_productCode :: Lens' UsagePlan (Maybe Text) Source #

The AWS Markeplace product identifier to associate with the usage plan as a SaaS product on AWS Marketplace.

usagePlan_tags :: Lens' UsagePlan (Maybe (HashMap Text Text)) Source #

The collection of tags. Each tag element is associated with a given resource.