libZSservicesZSamazonka-cloudfrontZSamazonka-cloudfront
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.CloudFront.Types.KeyGroupConfig

Description

 
Synopsis

Documentation

data KeyGroupConfig Source #

A key group configuration.

A key group contains a list of public keys that you can use with CloudFront signed URLs and signed cookies.

See: newKeyGroupConfig smart constructor.

Constructors

KeyGroupConfig' 

Fields

  • comment :: Maybe Text

    A comment to describe the key group. The comment cannot be longer than 128 characters.

  • name :: Text

    A name to identify the key group.

  • items :: [Text]

    A list of the identifiers of the public keys in the key group.

Instances

Instances details
Eq KeyGroupConfig Source # 
Instance details

Defined in Amazonka.CloudFront.Types.KeyGroupConfig

Read KeyGroupConfig Source # 
Instance details

Defined in Amazonka.CloudFront.Types.KeyGroupConfig

Show KeyGroupConfig Source # 
Instance details

Defined in Amazonka.CloudFront.Types.KeyGroupConfig

Generic KeyGroupConfig Source # 
Instance details

Defined in Amazonka.CloudFront.Types.KeyGroupConfig

Associated Types

type Rep KeyGroupConfig :: Type -> Type #

NFData KeyGroupConfig Source # 
Instance details

Defined in Amazonka.CloudFront.Types.KeyGroupConfig

Methods

rnf :: KeyGroupConfig -> () #

Hashable KeyGroupConfig Source # 
Instance details

Defined in Amazonka.CloudFront.Types.KeyGroupConfig

FromXML KeyGroupConfig Source # 
Instance details

Defined in Amazonka.CloudFront.Types.KeyGroupConfig

ToXML KeyGroupConfig Source # 
Instance details

Defined in Amazonka.CloudFront.Types.KeyGroupConfig

Methods

toXML :: KeyGroupConfig -> XML #

type Rep KeyGroupConfig Source # 
Instance details

Defined in Amazonka.CloudFront.Types.KeyGroupConfig

type Rep KeyGroupConfig = D1 ('MetaData "KeyGroupConfig" "Amazonka.CloudFront.Types.KeyGroupConfig" "libZSservicesZSamazonka-cloudfrontZSamazonka-cloudfront" 'False) (C1 ('MetaCons "KeyGroupConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "comment") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "items") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Text]))))

newKeyGroupConfig Source #

Create a value of KeyGroupConfig 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:comment:KeyGroupConfig', keyGroupConfig_comment - A comment to describe the key group. The comment cannot be longer than 128 characters.

$sel:name:KeyGroupConfig', keyGroupConfig_name - A name to identify the key group.

$sel:items:KeyGroupConfig', keyGroupConfig_items - A list of the identifiers of the public keys in the key group.

keyGroupConfig_comment :: Lens' KeyGroupConfig (Maybe Text) Source #

A comment to describe the key group. The comment cannot be longer than 128 characters.

keyGroupConfig_name :: Lens' KeyGroupConfig Text Source #

A name to identify the key group.

keyGroupConfig_items :: Lens' KeyGroupConfig [Text] Source #

A list of the identifiers of the public keys in the key group.