Learn R Programming

paws.compute (version 0.1.13)

lambda_update_code_signing_config: 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)

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"
  )
)

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.

Request syntax

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