ContextEntry

Contains information about a condition context key. It includes the name of the key and specifies the value (or values, if the context key supports multiple values) to use in the simulation. This information is used when evaluating the Condition elements of the input policies.

This data type is used as an input parameter to SimulateCustomPolicy and SimulatePrincipalPolicy.

APIs.ioEngineeringPlatform

Properties

Name Type Description
ContextKeyName object
ContextKeyValues object
ContextKeyType object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-contextentry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContextEntry",
  "title": "ContextEntry",
  "type": "object",
  "properties": {
    "ContextKeyName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ContextKeyNameType"
        },
        {
          "description": "The full name of a condition context key, including the service prefix. For example, <code>aws:SourceIp</code> or <code>s3:VersionId</code>."
        }
      ]
    },
    "ContextKeyValues": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ContextKeyValueListType"
        },
        {
          "description": "The value (or values, if the condition context key supports multiple values) to provide to the simulation when the key is referenced by a <code>Condition</code> element in an input policy."
        }
      ]
    },
    "ContextKeyType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ContextKeyTypeEnum"
        },
        {
          "description": "The data type of the value (or values) specified in the <code>ContextKeyValues</code> parameter."
        }
      ]
    }
  },
  "description": "<p>Contains information about a condition context key. It includes the name of the key and specifies the value (or values, if the context key supports multiple values) to use in the simulation. This information is used when evaluating the <code>Condition</code> elements of the input policies.</p> <p>This data type is used as an input parameter to <a>SimulateCustomPolicy</a> and <a>SimulatePrincipalPolicy</a>.</p>"
}