stratosphere-0.2.0: EDSL for AWS CloudFormation

Safe HaskellNone
LanguageHaskell2010

Stratosphere.ResourceProperties.APIGatewayDeploymentStageDescriptionMethodSetting

Description

MethodSetting is a property of the Amazon API Gateway Deployment StageDescription property that configures settings for all methods in an Amazon API Gateway (API Gateway) stage.

Synopsis

Documentation

data APIGatewayDeploymentStageDescriptionMethodSetting Source #

Full data type definition for APIGatewayDeploymentStageDescriptionMethodSetting. See apiGatewayDeploymentStageDescriptionMethodSetting for a more convenient constructor.

Instances

Show APIGatewayDeploymentStageDescriptionMethodSetting Source # 
Generic APIGatewayDeploymentStageDescriptionMethodSetting Source # 
ToJSON APIGatewayDeploymentStageDescriptionMethodSetting Source # 
FromJSON APIGatewayDeploymentStageDescriptionMethodSetting Source # 
type Rep APIGatewayDeploymentStageDescriptionMethodSetting Source # 
type Rep APIGatewayDeploymentStageDescriptionMethodSetting = D1 (MetaData "APIGatewayDeploymentStageDescriptionMethodSetting" "Stratosphere.ResourceProperties.APIGatewayDeploymentStageDescriptionMethodSetting" "stratosphere-0.2.0-B1WeL9cnxuQ3qer3csMa6f" False) (C1 (MetaCons "APIGatewayDeploymentStageDescriptionMethodSetting" PrefixI True) ((:*:) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_aPIGatewayDeploymentStageDescriptionMethodSettingCacheDataEncrypted") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe (Val Bool')))) (S1 (MetaSel (Just Symbol "_aPIGatewayDeploymentStageDescriptionMethodSettingCacheTtlInSeconds") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe (Val Integer'))))) ((:*:) (S1 (MetaSel (Just Symbol "_aPIGatewayDeploymentStageDescriptionMethodSettingCachingEnabled") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe (Val Bool')))) ((:*:) (S1 (MetaSel (Just Symbol "_aPIGatewayDeploymentStageDescriptionMethodSettingDataTraceEnabled") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe (Val Bool')))) (S1 (MetaSel (Just Symbol "_aPIGatewayDeploymentStageDescriptionMethodSettingHttpMethod") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe (Val Text))))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_aPIGatewayDeploymentStageDescriptionMethodSettingLoggingLevel") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe (Val Text)))) (S1 (MetaSel (Just Symbol "_aPIGatewayDeploymentStageDescriptionMethodSettingMetricsEnabled") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe (Val Bool'))))) ((:*:) (S1 (MetaSel (Just Symbol "_aPIGatewayDeploymentStageDescriptionMethodSettingResourcePath") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe (Val Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_aPIGatewayDeploymentStageDescriptionMethodSettingThrottlingBurstLimit") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe (Val Integer')))) (S1 (MetaSel (Just Symbol "_aPIGatewayDeploymentStageDescriptionMethodSettingThrottlingRateLimit") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe Double'))))))))

apigdsdmsCacheTtlInSeconds :: Lens' APIGatewayDeploymentStageDescriptionMethodSetting (Maybe (Val Integer')) Source #

The time-to-live (TTL) period, in seconds, that specifies how long API Gateway caches responses.

apigdsdmsCachingEnabled :: Lens' APIGatewayDeploymentStageDescriptionMethodSetting (Maybe (Val Bool')) Source #

Indicates whether responses are cached and returned for requests. You must enable a cache cluster on the stage to cache responses. For more information, see Enable API Gateway Caching in a Stage to Enhance API Performance in the API Gateway Developer Guide.

apigdsdmsDataTraceEnabled :: Lens' APIGatewayDeploymentStageDescriptionMethodSetting (Maybe (Val Bool')) Source #

Indicates whether data trace logging is enabled for methods in the stage. API Gateway pushes these logs to Amazon CloudWatch Logs.

apigdsdmsLoggingLevel :: Lens' APIGatewayDeploymentStageDescriptionMethodSetting (Maybe (Val Text)) Source #

The logging level for this method. For valid values, see the loggingLevel property of the Stage resource in the Amazon API Gateway API Reference.

apigdsdmsMetricsEnabled :: Lens' APIGatewayDeploymentStageDescriptionMethodSetting (Maybe (Val Bool')) Source #

Indicates whether Amazon CloudWatch metrics are enabled for methods in the stage.

apigdsdmsResourcePath :: Lens' APIGatewayDeploymentStageDescriptionMethodSetting (Maybe (Val Text)) Source #

The resource path for this method. Forward slashes (/) are encoded as ~1 and the initial slash must include a forward slash. For example, the path value resourcesubresource must be encoded as /~1resource~1subresource. To specify the root path, use only a slash (/).

apigdsdmsThrottlingBurstLimit :: Lens' APIGatewayDeploymentStageDescriptionMethodSetting (Maybe (Val Integer')) Source #

The number of burst requests per second that API Gateway permits across all APIs, stages, and methods in your AWS account. For more information, see Manage API Request Throttling in the API Gateway Developer Guide.

apigdsdmsThrottlingRateLimit :: Lens' APIGatewayDeploymentStageDescriptionMethodSetting (Maybe Double') Source #

The number of steady-state requests per second that API Gateway permits across all APIs, stages, and methods in your AWS account. For more information, see Manage API Request Throttling in the API Gateway Developer Guide.