Skip to content

Update Code Signing Config

lambda_update_code_signing_config R Documentation

Update the code signing configuration

Description

Update the code signing configuration. Changes to the code signing configuration take effect the next time a user tries to deploy a code package to the function.

Usage

lambda_update_code_signing_config(CodeSigningConfigArn, Description,
  AllowedPublishers, CodeSigningPolicies)

Arguments

CodeSigningConfigArn

[required] The The Amazon Resource Name (ARN) of the code signing configuration.

Description

Descriptive name for this code signing configuration.

AllowedPublishers

Signing profiles for this code signing configuration.

CodeSigningPolicies

The code signing policy.

Value

A list with the following syntax:

list(
  CodeSigningConfig = list(
    CodeSigningConfigId = "string",
    CodeSigningConfigArn = "string",
    Description = "string",
    AllowedPublishers = list(
      SigningProfileVersionArns = list(
        "string"
      )
    ),
    CodeSigningPolicies = list(
      UntrustedArtifactOnDeployment = "Warn"|"Enforce"
    ),
    LastModified = "string"
  )
)

Request syntax

svc$update_code_signing_config(
  CodeSigningConfigArn = "string",
  Description = "string",
  AllowedPublishers = list(
    SigningProfileVersionArns = list(
      "string"
    )
  ),
  CodeSigningPolicies = list(
    UntrustedArtifactOnDeployment = "Warn"|"Enforce"
  )
)