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.
lambda_update_code_signing_config(CodeSigningConfigArn, Description,
AllowedPublishers, CodeSigningPolicies)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"
)
)
[required] The The Amazon Resource Name (ARN) of the code signing configuration.
Descriptive name for this code signing configuration.
Signing profiles for this code signing configuration.
The code signing policy.
svc$update_code_signing_config(
CodeSigningConfigArn = "string",
Description = "string",
AllowedPublishers = list(
SigningProfileVersionArns = list(
"string"
)
),
CodeSigningPolicies = list(
UntrustedArtifactOnDeployment = "Warn"|"Enforce"
)
)