RotationRules

RotationRules schema from Amazon Secrets Manager API

ConfigurationCredentialsRotationSecretsSecurity

Properties

Name Type Description
AutomaticallyAfterDays integer The number of days between automatic scheduled rotations.
Duration string The length of the rotation window in hours.
ScheduleExpression string A cron or rate expression that defines the schedule for rotation.
View JSON Schema on GitHub

JSON Schema

amazon-secrets-manager-rotation-rules-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-secrets-manager/refs/heads/main/json-schema/amazon-secrets-manager-rotation-rules-schema.json",
  "title": "RotationRules",
  "description": "RotationRules schema from Amazon Secrets Manager API",
  "type": "object",
  "properties": {
    "AutomaticallyAfterDays": {
      "type": "integer",
      "description": "The number of days between automatic scheduled rotations."
    },
    "Duration": {
      "type": "string",
      "description": "The length of the rotation window in hours."
    },
    "ScheduleExpression": {
      "type": "string",
      "description": "A cron or rate expression that defines the schedule for rotation."
    }
  }
}