libZSservicesZSamazonka-lambdaZSamazonka-lambda
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.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
Eq CreateCodeSigningConfig Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

Read CreateCodeSigningConfig Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

Show 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 #

NFData CreateCodeSigningConfig Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

Methods

rnf :: CreateCodeSigningConfig -> () #

Hashable CreateCodeSigningConfig Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

ToJSON CreateCodeSigningConfig Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

AWSRequest 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

type Rep CreateCodeSigningConfig Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

type Rep CreateCodeSigningConfig = D1 ('MetaData "CreateCodeSigningConfig" "Amazonka.Lambda.CreateCodeSigningConfig" "libZSservicesZSamazonka-lambdaZSamazonka-lambda" '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))))
type AWSResponse CreateCodeSigningConfig Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

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:

$sel:codeSigningPolicies:CreateCodeSigningConfig', createCodeSigningConfig_codeSigningPolicies - The code signing policies define the actions to take if the validation checks fail.

$sel:description:CreateCodeSigningConfig', createCodeSigningConfig_description - Descriptive name for this code signing configuration.

$sel:allowedPublishers: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
Eq CreateCodeSigningConfigResponse Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

Read CreateCodeSigningConfigResponse Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

Show CreateCodeSigningConfigResponse Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

Generic CreateCodeSigningConfigResponse Source # 
Instance details

Defined in Amazonka.Lambda.CreateCodeSigningConfig

Associated Types

type Rep CreateCodeSigningConfigResponse :: Type -> Type #

NFData 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" "libZSservicesZSamazonka-lambdaZSamazonka-lambda" '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