Skip to content

Commit ac076c2

Browse files
author
AWS
committed
Amazon Elastic Compute Cloud Update: This release adds support for additional VPC Flow Logs delivery options to S3, such as Apache Parquet formatted files, Hourly partitions and Hive-compatible S3 prefixes
1 parent b792a2b commit ac076c2

File tree

2 files changed

+65
-4
lines changed

2 files changed

+65
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon Elastic Compute Cloud",
4+
"contributor": "",
5+
"description": "This release adds support for additional VPC Flow Logs delivery options to S3, such as Apache Parquet formatted files, Hourly partitions and Hive-compatible S3 prefixes"
6+
}

services/ec2/src/main/resources/codegen-resources/service-2.json

+59-4
Original file line numberDiff line numberDiff line change
@@ -9927,11 +9927,11 @@
99279927
},
99289928
"LogDestinationType":{
99299929
"shape":"LogDestinationType",
9930-
"documentation":"<p>Specifies the type of destination to which the flow log data is to be published. Flow log data can be published to CloudWatch Logs or Amazon S3. To publish flow log data to CloudWatch Logs, specify <code>cloud-watch-logs</code>. To publish flow log data to Amazon S3, specify <code>s3</code>.</p> <p>If you specify <code>LogDestinationType</code> as <code>s3</code>, do not specify <code>DeliverLogsPermissionArn</code> or <code>LogGroupName</code>.</p> <p>Default: <code>cloud-watch-logs</code> </p>"
9930+
"documentation":"<p>The type of destination to which the flow log data is to be published. Flow log data can be published to CloudWatch Logs or Amazon S3. To publish flow log data to CloudWatch Logs, specify <code>cloud-watch-logs</code>. To publish flow log data to Amazon S3, specify <code>s3</code>.</p> <p>If you specify <code>LogDestinationType</code> as <code>s3</code>, do not specify <code>DeliverLogsPermissionArn</code> or <code>LogGroupName</code>.</p> <p>Default: <code>cloud-watch-logs</code> </p>"
99319931
},
99329932
"LogDestination":{
99339933
"shape":"String",
9934-
"documentation":"<p>Specifies the destination to which the flow log data is to be published. Flow log data can be published to a CloudWatch Logs log group or an Amazon S3 bucket. The value specified for this parameter depends on the value specified for <code>LogDestinationType</code>.</p> <p>If <code>LogDestinationType</code> is not specified or <code>cloud-watch-logs</code>, specify the Amazon Resource Name (ARN) of the CloudWatch Logs log group. For example, to publish to a log group called <code>my-logs</code>, specify <code>arn:aws:logs:us-east-1:123456789012:log-group:my-logs</code>. Alternatively, use <code>LogGroupName</code> instead.</p> <p>If LogDestinationType is <code>s3</code>, specify the ARN of the Amazon S3 bucket. You can also specify a subfolder in the bucket. To specify a subfolder in the bucket, use the following ARN format: <code>bucket_ARN/subfolder_name/</code>. For example, to specify a subfolder named <code>my-logs</code> in a bucket named <code>my-bucket</code>, use the following ARN: <code>arn:aws:s3:::my-bucket/my-logs/</code>. You cannot use <code>AWSLogs</code> as a subfolder name. This is a reserved term.</p>"
9934+
"documentation":"<p>The destination to which the flow log data is to be published. Flow log data can be published to a CloudWatch Logs log group or an Amazon S3 bucket. The value specified for this parameter depends on the value specified for <code>LogDestinationType</code>.</p> <p>If <code>LogDestinationType</code> is not specified or <code>cloud-watch-logs</code>, specify the Amazon Resource Name (ARN) of the CloudWatch Logs log group. For example, to publish to a log group called <code>my-logs</code>, specify <code>arn:aws:logs:us-east-1:123456789012:log-group:my-logs</code>. Alternatively, use <code>LogGroupName</code> instead.</p> <p>If LogDestinationType is <code>s3</code>, specify the ARN of the Amazon S3 bucket. You can also specify a subfolder in the bucket. To specify a subfolder in the bucket, use the following ARN format: <code>bucket_ARN/subfolder_name/</code>. For example, to specify a subfolder named <code>my-logs</code> in a bucket named <code>my-bucket</code>, use the following ARN: <code>arn:aws:s3:::my-bucket/my-logs/</code>. You cannot use <code>AWSLogs</code> as a subfolder name. This is a reserved term.</p>"
99359935
},
99369936
"LogFormat":{
99379937
"shape":"String",
@@ -9945,6 +9945,10 @@
99459945
"MaxAggregationInterval":{
99469946
"shape":"Integer",
99479947
"documentation":"<p>The maximum interval of time during which a flow of packets is captured and aggregated into a flow log record. You can specify 60 seconds (1 minute) or 600 seconds (10 minutes).</p> <p>When a network interface is attached to a <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#ec2-nitro-instances\">Nitro-based instance</a>, the aggregation interval is always 60 seconds or less, regardless of the value that you specify.</p> <p>Default: 600</p>"
9948+
},
9949+
"DestinationOptions":{
9950+
"shape":"DestinationOptionsRequest",
9951+
"documentation":"<p>The destination options.</p>"
99489952
}
99499953
}
99509954
},
@@ -19730,6 +19734,52 @@
1973019734
},
1973119735
"documentation":"<p>Contains the output of DescribeVpnGateways.</p>"
1973219736
},
19737+
"DestinationFileFormat":{
19738+
"type":"string",
19739+
"enum":[
19740+
"plain-text",
19741+
"parquet"
19742+
]
19743+
},
19744+
"DestinationOptionsRequest":{
19745+
"type":"structure",
19746+
"members":{
19747+
"FileFormat":{
19748+
"shape":"DestinationFileFormat",
19749+
"documentation":"<p>The format for the flow log. The default is <code>plain-text</code>.</p>"
19750+
},
19751+
"HiveCompatiblePartitions":{
19752+
"shape":"Boolean",
19753+
"documentation":"<p>Indicates whether to use Hive-compatible prefixes for flow logs stored in Amazon S3. The default is <code>false</code>.</p>"
19754+
},
19755+
"PerHourPartition":{
19756+
"shape":"Boolean",
19757+
"documentation":"<p>Indicates whether to partition the flow log per hour. This reduces the cost and response time for queries. The default is <code>false</code>.</p>"
19758+
}
19759+
},
19760+
"documentation":"<p>Describes the destination options for a flow log.</p>"
19761+
},
19762+
"DestinationOptionsResponse":{
19763+
"type":"structure",
19764+
"members":{
19765+
"FileFormat":{
19766+
"shape":"DestinationFileFormat",
19767+
"documentation":"<p>The format for the flow log.</p>",
19768+
"locationName":"fileFormat"
19769+
},
19770+
"HiveCompatiblePartitions":{
19771+
"shape":"Boolean",
19772+
"documentation":"<p>Indicates whether to use Hive-compatible prefixes for flow logs stored in Amazon S3.</p>",
19773+
"locationName":"hiveCompatiblePartitions"
19774+
},
19775+
"PerHourPartition":{
19776+
"shape":"Boolean",
19777+
"documentation":"<p>Indicates whether to partition the flow log per hour.</p>",
19778+
"locationName":"perHourPartition"
19779+
}
19780+
},
19781+
"documentation":"<p>Describes the destination options for a flow log.</p>"
19782+
},
1973319783
"DetachClassicLinkVpcRequest":{
1973419784
"type":"structure",
1973519785
"required":[
@@ -22968,12 +23018,12 @@
2296823018
},
2296923019
"LogDestinationType":{
2297023020
"shape":"LogDestinationType",
22971-
"documentation":"<p>Specifies the type of destination to which the flow log data is published. Flow log data can be published to CloudWatch Logs or Amazon S3.</p>",
23021+
"documentation":"<p>The type of destination to which the flow log data is published. Flow log data can be published to CloudWatch Logs or Amazon S3.</p>",
2297223022
"locationName":"logDestinationType"
2297323023
},
2297423024
"LogDestination":{
2297523025
"shape":"String",
22976-
"documentation":"<p>Specifies the destination to which the flow log data is published. Flow log data can be published to an CloudWatch Logs log group or an Amazon S3 bucket. If the flow log publishes to CloudWatch Logs, this element indicates the Amazon Resource Name (ARN) of the CloudWatch Logs log group to which the data is published. If the flow log publishes to Amazon S3, this element indicates the ARN of the Amazon S3 bucket to which the data is published.</p>",
23026+
"documentation":"<p>The destination to which the flow log data is published. Flow log data can be published to an CloudWatch Logs log group or an Amazon S3 bucket. If the flow log publishes to CloudWatch Logs, this element indicates the Amazon Resource Name (ARN) of the CloudWatch Logs log group to which the data is published. If the flow log publishes to Amazon S3, this element indicates the ARN of the Amazon S3 bucket to which the data is published.</p>",
2297723027
"locationName":"logDestination"
2297823028
},
2297923029
"LogFormat":{
@@ -22990,6 +23040,11 @@
2299023040
"shape":"Integer",
2299123041
"documentation":"<p>The maximum interval of time, in seconds, during which a flow of packets is captured and aggregated into a flow log record.</p> <p>When a network interface is attached to a <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#ec2-nitro-instances\">Nitro-based instance</a>, the aggregation interval is always 60 seconds (1 minute) or less, regardless of the specified value.</p> <p>Valid Values: <code>60</code> | <code>600</code> </p>",
2299223042
"locationName":"maxAggregationInterval"
23043+
},
23044+
"DestinationOptions":{
23045+
"shape":"DestinationOptionsResponse",
23046+
"documentation":"<p>The destination options.</p>",
23047+
"locationName":"destinationOptions"
2299323048
}
2299423049
},
2299523050
"documentation":"<p>Describes a flow log.</p>"

0 commit comments

Comments
 (0)