CodeSigningConfig

Details about a Code signing configuration.

APIs.ioEngineeringPlatform

Properties

Name Type Description
CodeSigningConfigId object
CodeSigningConfigArn object
Description object
AllowedPublishers object
CodeSigningPolicies object
LastModified object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-codesigningconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CodeSigningConfig",
  "title": "CodeSigningConfig",
  "type": "object",
  "required": [
    "CodeSigningConfigId",
    "CodeSigningConfigArn",
    "AllowedPublishers",
    "CodeSigningPolicies",
    "LastModified"
  ],
  "properties": {
    "CodeSigningConfigId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CodeSigningConfigId"
        },
        {
          "description": "Unique identifer for the Code signing configuration."
        }
      ]
    },
    "CodeSigningConfigArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CodeSigningConfigArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the Code signing configuration."
        }
      ]
    },
    "Description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Description"
        },
        {
          "description": "Code signing configuration description."
        }
      ]
    },
    "AllowedPublishers": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AllowedPublishers"
        },
        {
          "description": "List of allowed publishers."
        }
      ]
    },
    "CodeSigningPolicies": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CodeSigningPolicies"
        },
        {
          "description": "The code signing policy controls the validation failure action for signature mismatch or expiry."
        }
      ]
    },
    "LastModified": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date and time that the Code signing configuration was last modified, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD). "
        }
      ]
    }
  },
  "description": "Details about a <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-codesigning.html\">Code signing configuration</a>. "
}