Amazon Global Accelerator · JSON Structure

Global Accelerator Accelerator Attributes Structure

Attributes of an accelerator.

Type: object Properties: 3
AvailabilityCDNGlobalLoad BalancingNetworkingPerformance

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

Properties

FlowLogsEnabled FlowLogsS3Bucket FlowLogsS3Prefix

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-global-accelerator/refs/heads/main/json-structure/global-accelerator-accelerator-attributes-structure.json",
  "name": "AcceleratorAttributes",
  "description": "Attributes of an accelerator.",
  "type": "object",
  "properties": {
    "FlowLogsEnabled": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GenericBoolean"
        },
        {
          "description": "<p>Indicates whether flow logs are enabled. The default value is false. If the value is true, <code>FlowLogsS3Bucket</code> and <code>FlowLogsS3Prefix</code> must be specified.</p> <p>For more information, see <a href=\"https://docs.aws.amazon.com/global-accelerator/latest/dg/monitoring-global-accelerator.flow-logs.html\">Flow logs</a> in the <i>Global Accelerator Developer Guide</i>.</p>"
        }
      ]
    },
    "FlowLogsS3Bucket": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GenericString"
        },
        {
          "description": "The name of the Amazon S3 bucket for the flow logs. Attribute is required if <code>FlowLogsEnabled</code> is <code>true</code>. The bucket must exist and have a bucket policy that grants Global Accelerator permission to write to the bucket."
        }
      ]
    },
    "FlowLogsS3Prefix": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GenericString"
        },
        {
          "description": "<p>The prefix for the location in the Amazon S3 bucket for the flow logs. Attribute is required if <code>FlowLogsEnabled</code> is <code>true</code>.</p> <p>If you specify slash (/) for the S3 bucket prefix, the log file bucket folder structure will include a double slash (//), like the following:</p> <p>s3-bucket_name//AWSLogs/aws_account_id</p>"
        }
      ]
    }
  }
}