| Copyright | (c) 2013-2018 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | None |
| Language | Haskell2010 |
Network.AWS.APIGateway.GetRestAPI
Description
Lists the RestApi resource in the collection.
- getRestAPI :: Text -> GetRestAPI
- data GetRestAPI
- graRestAPIId :: Lens' GetRestAPI Text
- restAPI :: RestAPI
- data RestAPI
- raMinimumCompressionSize :: Lens' RestAPI (Maybe Int)
- raBinaryMediaTypes :: Lens' RestAPI [Text]
- raWarnings :: Lens' RestAPI [Text]
- raCreatedDate :: Lens' RestAPI (Maybe UTCTime)
- raName :: Lens' RestAPI (Maybe Text)
- raVersion :: Lens' RestAPI (Maybe Text)
- raApiKeySource :: Lens' RestAPI (Maybe APIKeySourceType)
- raId :: Lens' RestAPI (Maybe Text)
- raPolicy :: Lens' RestAPI (Maybe Text)
- raEndpointConfiguration :: Lens' RestAPI (Maybe EndpointConfiguration)
- raDescription :: Lens' RestAPI (Maybe Text)
Creating a Request
Arguments
| :: Text | |
| -> GetRestAPI |
Creates a value of GetRestAPI with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
graRestAPIId- [Required] The string identifier of the associatedRestApi.
data GetRestAPI Source #
The GET request to list an existing RestApi defined for your collection.
See: getRestAPI smart constructor.
Instances
Request Lenses
graRestAPIId :: Lens' GetRestAPI Text Source #
- Required
- The string identifier of the associated
RestApi.
Destructuring the Response
Creates a value of RestAPI with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
raMinimumCompressionSize- A nullable integer that is used to enable compression (with non-negative between 0 and 10485760 (10M) bytes, inclusive) or disable compression (with a null value) on an API. When compression is enabled, compression or decompression is not applied on the payload if the payload size is smaller than this value. Setting it to zero allows compression for any payload size.raBinaryMediaTypes- The list of binary media types supported by theRestApi. By default, theRestApisupports only UTF-8-encoded text payloads.raWarnings- The warning messages reported whenfailonwarningsis turned on during API import.raCreatedDate- The timestamp when the API was created.raName- The API's name.raVersion- A version identifier for the API.raApiKeySource- The source of the API key for metering requests according to a usage plan. Valid values are: *HEADERto read the API key from theX-API-Keyheader of a request. *AUTHORIZERto read the API key from theUsageIdentifierKeyfrom a custom authorizer.raId- The API's identifier. This identifier is unique across all of your APIs in API Gateway.raPolicy-MethodraEndpointConfiguration- The endpoint configuration of thisRestApishowing the endpoint types of the API.raDescription- The API's description.
Response Lenses
raMinimumCompressionSize :: Lens' RestAPI (Maybe Int) Source #
A nullable integer that is used to enable compression (with non-negative between 0 and 10485760 (10M) bytes, inclusive) or disable compression (with a null value) on an API. When compression is enabled, compression or decompression is not applied on the payload if the payload size is smaller than this value. Setting it to zero allows compression for any payload size.
raBinaryMediaTypes :: Lens' RestAPI [Text] Source #
The list of binary media types supported by the RestApi . By default, the RestApi supports only UTF-8-encoded text payloads.
raWarnings :: Lens' RestAPI [Text] Source #
The warning messages reported when failonwarnings is turned on during API import.
raApiKeySource :: Lens' RestAPI (Maybe APIKeySourceType) Source #
The source of the API key for metering requests according to a usage plan. Valid values are: * HEADER to read the API key from the X-API-Key header of a request. * AUTHORIZER to read the API key from the UsageIdentifierKey from a custom authorizer.
raId :: Lens' RestAPI (Maybe Text) Source #
The API's identifier. This identifier is unique across all of your APIs in API Gateway.
raEndpointConfiguration :: Lens' RestAPI (Maybe EndpointConfiguration) Source #
The endpoint configuration of this RestApi showing the endpoint types of the API.