Amazon Serverless Application Repository Application Policy Statement Structure

Policy statement for an application.

Type: object Properties: 3
Application RepositoryLambdaSAMServerless

ApplicationPolicyStatement is a JSON Structure definition published by Amazon Serverless Application Repository, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

statementId principals actions

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-serverless-application-repository/refs/heads/main/json-structure/amazon-serverless-application-repository-application-policy-statement-structure.json",
  "name": "ApplicationPolicyStatement",
  "description": "Policy statement for an application.",
  "type": "object",
  "properties": {
    "statementId": {
      "type": "string",
      "description": "A unique ID for the statement.",
      "example": "policy-stmt-001"
    },
    "principals": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "An array of AWS account IDs or * for public access."
    },
    "actions": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "For each action, specify the permission to be granted."
    }
  }
}