Amazon Global Accelerator · Schema
UpdateCustomRoutingAcceleratorAttributesRequest
UpdateCustomRoutingAcceleratorAttributesRequest schema from Amazon Global Accelerator API
AvailabilityCDNGlobalLoad BalancingNetworkingPerformance
Properties
| Name | Type | Description |
|---|---|---|
| AcceleratorArn | object | |
| FlowLogsEnabled | object | |
| FlowLogsS3Bucket | object | |
| FlowLogsS3Prefix | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-global-accelerator/refs/heads/main/json-schema/global-accelerator-update-custom-routing-accelerator-attributes-request-schema.json",
"title": "UpdateCustomRoutingAcceleratorAttributesRequest",
"description": "UpdateCustomRoutingAcceleratorAttributesRequest schema from Amazon Global Accelerator API",
"type": "object",
"properties": {
"AcceleratorArn": {
"allOf": [
{
"$ref": "#/components/schemas/GenericString"
},
{
"description": "The Amazon Resource Name (ARN) of the custom routing accelerator to update attributes for."
}
]
},
"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 don\u2019t specify a prefix, the flow logs are stored in the root of the bucket. 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>DOC-EXAMPLE-BUCKET//AWSLogs/aws_account_id</p>"
}
]
}
},
"required": [
"AcceleratorArn"
]
}