amazonka-lambda-2.0: Amazon Lambda SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Lambda.CreateCodeSigningConfig

Description

Creates a code signing configuration. A code signing configuration defines a list of allowed signing profiles and defines the code-signing validation policy (action to be taken if deployment validation checks fail).

Synopsis

Creating a Request

data CreateCodeSigningConfig Source #

See: newCreateCodeSigningConfig smart constructor.

Constructors

CreateCodeSigningConfig' 

Fields

Instances

Instances details
ToJSON CreateCodeSigningConfig Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

ToHeaders CreateCodeSigningConfig Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

ToPath CreateCodeSigningConfig Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

ToQuery CreateCodeSigningConfig Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

AWSRequest CreateCodeSigningConfig Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

Generic CreateCodeSigningConfig Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

Associated Types

type Rep CreateCodeSigningConfig :: Type -> Type #

Read CreateCodeSigningConfig Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

Show CreateCodeSigningConfig Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

NFData CreateCodeSigningConfig Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

Methods

rnf :: CreateCodeSigningConfig -> () #

Eq CreateCodeSigningConfig Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

Hashable CreateCodeSigningConfig Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

type AWSResponse CreateCodeSigningConfig Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

type Rep CreateCodeSigningConfig Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

type Rep CreateCodeSigningConfig = D1 ('MetaData "CreateCodeSigningConfig" "Amazonka.Lambda.CreateCodeSigningConfig" "amazonka-lambda-2.0-FcjxCCKaCGK94C2lDO9alC" 'False) (C1 ('MetaCons "CreateCodeSigningConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "codeSigningPolicies") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe CodeSigningPolicies)) :*: (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "allowedPublishers") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 AllowedPublishers))))

newCreateCodeSigningConfig Source #

Create a value of CreateCodeSigningConfig 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:

CreateCodeSigningConfig, createCodeSigningConfig_codeSigningPolicies - The code signing policies define the actions to take if the validation checks fail.

CreateCodeSigningConfig, createCodeSigningConfig_description - Descriptive name for this code signing configuration.

CreateCodeSigningConfig, createCodeSigningConfig_allowedPublishers - Signing profiles for this code signing configuration.

Request Lenses

createCodeSigningConfig_codeSigningPolicies :: Lens' CreateCodeSigningConfig (Maybe CodeSigningPolicies) Source #

The code signing policies define the actions to take if the validation checks fail.

createCodeSigningConfig_description :: Lens' CreateCodeSigningConfig (Maybe Text) Source #

Descriptive name for this code signing configuration.

Destructuring the Response

data CreateCodeSigningConfigResponse Source #

See: newCreateCodeSigningConfigResponse smart constructor.

Constructors

CreateCodeSigningConfigResponse' 

Fields

Instances

Instances details
Generic CreateCodeSigningConfigResponse Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

Associated Types

type Rep CreateCodeSigningConfigResponse :: Type -> Type #

Read CreateCodeSigningConfigResponse Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

Show CreateCodeSigningConfigResponse Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

NFData CreateCodeSigningConfigResponse Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

Eq CreateCodeSigningConfigResponse Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

type Rep CreateCodeSigningConfigResponse Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

type Rep CreateCodeSigningConfigResponse = D1 ('MetaData "CreateCodeSigningConfigResponse" "Amazonka.Lambda.CreateCodeSigningConfig" "amazonka-lambda-2.0-FcjxCCKaCGK94C2lDO9alC" 'False) (C1 ('MetaCons "CreateCodeSigningConfigResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "codeSigningConfig") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 CodeSigningConfig)))

newCreateCodeSigningConfigResponse Source #

Create a value of CreateCodeSigningConfigResponse 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:httpStatus:CreateCodeSigningConfigResponse', createCodeSigningConfigResponse_httpStatus - The response's http status code.

$sel:codeSigningConfig:CreateCodeSigningConfigResponse', createCodeSigningConfigResponse_codeSigningConfig - The code signing configuration.

Response Lenses