libZSservicesZSamazonka-securityhubZSamazonka-securityhub
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.SecurityHub.Types.AwsApiGatewayRestApiDetails

Description

 
Synopsis

Documentation

data AwsApiGatewayRestApiDetails Source #

Contains information about a REST API in version 1 of Amazon API Gateway.

See: newAwsApiGatewayRestApiDetails smart constructor.

Constructors

AwsApiGatewayRestApiDetails' 

Fields

Instances

Instances details
Eq AwsApiGatewayRestApiDetails Source # 
Instance details

Defined in Amazonka.SecurityHub.Types.AwsApiGatewayRestApiDetails

Read AwsApiGatewayRestApiDetails Source # 
Instance details

Defined in Amazonka.SecurityHub.Types.AwsApiGatewayRestApiDetails

Show AwsApiGatewayRestApiDetails Source # 
Instance details

Defined in Amazonka.SecurityHub.Types.AwsApiGatewayRestApiDetails

Generic AwsApiGatewayRestApiDetails Source # 
Instance details

Defined in Amazonka.SecurityHub.Types.AwsApiGatewayRestApiDetails

Associated Types

type Rep AwsApiGatewayRestApiDetails :: Type -> Type #

NFData AwsApiGatewayRestApiDetails Source # 
Instance details

Defined in Amazonka.SecurityHub.Types.AwsApiGatewayRestApiDetails

Hashable AwsApiGatewayRestApiDetails Source # 
Instance details

Defined in Amazonka.SecurityHub.Types.AwsApiGatewayRestApiDetails

ToJSON AwsApiGatewayRestApiDetails Source # 
Instance details

Defined in Amazonka.SecurityHub.Types.AwsApiGatewayRestApiDetails

FromJSON AwsApiGatewayRestApiDetails Source # 
Instance details

Defined in Amazonka.SecurityHub.Types.AwsApiGatewayRestApiDetails

type Rep AwsApiGatewayRestApiDetails Source # 
Instance details

Defined in Amazonka.SecurityHub.Types.AwsApiGatewayRestApiDetails

type Rep AwsApiGatewayRestApiDetails = D1 ('MetaData "AwsApiGatewayRestApiDetails" "Amazonka.SecurityHub.Types.AwsApiGatewayRestApiDetails" "libZSservicesZSamazonka-securityhubZSamazonka-securityhub" 'False) (C1 ('MetaCons "AwsApiGatewayRestApiDetails'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "minimumCompressionSize") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "binaryMediaTypes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text]))) :*: (S1 ('MetaSel ('Just "createdDate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "apiKeySource") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "version") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "id") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "endpointConfiguration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe AwsApiGatewayEndpointConfiguration)) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))))

newAwsApiGatewayRestApiDetails :: AwsApiGatewayRestApiDetails Source #

Create a value of AwsApiGatewayRestApiDetails 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:minimumCompressionSize:AwsApiGatewayRestApiDetails', awsApiGatewayRestApiDetails_minimumCompressionSize - The minimum size in bytes of a payload before compression is enabled.

If null, then compression is disabled.

If 0, then all payloads are compressed.

$sel:binaryMediaTypes:AwsApiGatewayRestApiDetails', awsApiGatewayRestApiDetails_binaryMediaTypes - The list of binary media types supported by the REST API.

$sel:createdDate:AwsApiGatewayRestApiDetails', awsApiGatewayRestApiDetails_createdDate - Indicates when the API was created.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

$sel:name:AwsApiGatewayRestApiDetails', awsApiGatewayRestApiDetails_name - The name of the REST API.

$sel:apiKeySource:AwsApiGatewayRestApiDetails', awsApiGatewayRestApiDetails_apiKeySource - The source of the API key for metering requests according to a usage plan.

HEADER indicates whether to read the API key from the X-API-Key header of a request.

AUTHORIZER indicates whether to read the API key from the UsageIdentifierKey from a custom authorizer.

$sel:version:AwsApiGatewayRestApiDetails', awsApiGatewayRestApiDetails_version - The version identifier for the REST API.

$sel:id:AwsApiGatewayRestApiDetails', awsApiGatewayRestApiDetails_id - The identifier of the REST API.

$sel:endpointConfiguration:AwsApiGatewayRestApiDetails', awsApiGatewayRestApiDetails_endpointConfiguration - The endpoint configuration of the REST API.

$sel:description:AwsApiGatewayRestApiDetails', awsApiGatewayRestApiDetails_description - A description of the REST API.

awsApiGatewayRestApiDetails_minimumCompressionSize :: Lens' AwsApiGatewayRestApiDetails (Maybe Int) Source #

The minimum size in bytes of a payload before compression is enabled.

If null, then compression is disabled.

If 0, then all payloads are compressed.

awsApiGatewayRestApiDetails_binaryMediaTypes :: Lens' AwsApiGatewayRestApiDetails (Maybe [Text]) Source #

The list of binary media types supported by the REST API.

awsApiGatewayRestApiDetails_createdDate :: Lens' AwsApiGatewayRestApiDetails (Maybe Text) Source #

Indicates when the API was created.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

awsApiGatewayRestApiDetails_apiKeySource :: Lens' AwsApiGatewayRestApiDetails (Maybe Text) Source #

The source of the API key for metering requests according to a usage plan.

HEADER indicates whether to read the API key from the X-API-Key header of a request.

AUTHORIZER indicates whether to read the API key from the UsageIdentifierKey from a custom authorizer.