|
9927 | 9927 | },
|
9928 | 9928 | "LogDestinationType":{
|
9929 | 9929 | "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>" |
9931 | 9931 | },
|
9932 | 9932 | "LogDestination":{
|
9933 | 9933 | "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>" |
9935 | 9935 | },
|
9936 | 9936 | "LogFormat":{
|
9937 | 9937 | "shape":"String",
|
|
9945 | 9945 | "MaxAggregationInterval":{
|
9946 | 9946 | "shape":"Integer",
|
9947 | 9947 | "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>" |
9948 | 9952 | }
|
9949 | 9953 | }
|
9950 | 9954 | },
|
|
19730 | 19734 | },
|
19731 | 19735 | "documentation":"<p>Contains the output of DescribeVpnGateways.</p>"
|
19732 | 19736 | },
|
| 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 | + }, |
19733 | 19783 | "DetachClassicLinkVpcRequest":{
|
19734 | 19784 | "type":"structure",
|
19735 | 19785 | "required":[
|
@@ -22968,12 +23018,12 @@
|
22968 | 23018 | },
|
22969 | 23019 | "LogDestinationType":{
|
22970 | 23020 | "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>", |
22972 | 23022 | "locationName":"logDestinationType"
|
22973 | 23023 | },
|
22974 | 23024 | "LogDestination":{
|
22975 | 23025 | "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>", |
22977 | 23027 | "locationName":"logDestination"
|
22978 | 23028 | },
|
22979 | 23029 | "LogFormat":{
|
|
22990 | 23040 | "shape":"Integer",
|
22991 | 23041 | "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>",
|
22992 | 23042 | "locationName":"maxAggregationInterval"
|
| 23043 | + }, |
| 23044 | + "DestinationOptions":{ |
| 23045 | + "shape":"DestinationOptionsResponse", |
| 23046 | + "documentation":"<p>The destination options.</p>", |
| 23047 | + "locationName":"destinationOptions" |
22993 | 23048 | }
|
22994 | 23049 | },
|
22995 | 23050 | "documentation":"<p>Describes a flow log.</p>"
|
|
0 commit comments