Amazon Global Accelerator · JSON Structure

Global Accelerator Update Accelerator Attributes Request Structure

UpdateAcceleratorAttributesRequest schema from Amazon Global Accelerator API

Type: object Properties: 4 Required: 1
AvailabilityCDNGlobalLoad BalancingNetworkingPerformance

UpdateAcceleratorAttributesRequest is a JSON Structure definition published by Amazon Global Accelerator, describing 4 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

AcceleratorArn 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-update-accelerator-attributes-request-structure.json",
  "name": "UpdateAcceleratorAttributesRequest",
  "description": "UpdateAcceleratorAttributesRequest schema from Amazon Global Accelerator API",
  "type": "object",
  "properties": {
    "AcceleratorArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GenericString"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the accelerator that you want to update."
        }
      ]
    },
    "FlowLogsEnabled": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GenericBoolean"
        },
        {
          "description": "<p>Update 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>Update 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>"
        }
      ]
    }
  },
  "required": [
    "AcceleratorArn"
  ]
}