Skip to content

Commit

Permalink
Release v1.41.2 (2021-10-13) (#4131)
Browse files Browse the repository at this point in the history
Release v1.41.2 (2021-10-13)
===

### Service Client Updates
* `service/config`: Updates service API
* `service/ec2`: Updates service API and documentation
  * 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
* `service/kinesisanalyticsv2`: Updates service API and documentation
* `service/storagegateway`: Updates service API and documentation
  * Adding support for Audit Logs on NFS shares and Force Closing Files on SMB shares.
* `service/workmail`: Updates service API, documentation, and paginators
  * This release adds APIs for adding, removing and retrieving details of mail domains
  • Loading branch information
aws-sdk-go-automation committed Oct 13, 2021
1 parent a4682d4 commit 4029614
Show file tree
Hide file tree
Showing 23 changed files with 2,779 additions and 369 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,16 @@
Release v1.41.2 (2021-10-13)
===

### Service Client Updates
* `service/config`: Updates service API
* `service/ec2`: Updates service API and documentation
* 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
* `service/kinesisanalyticsv2`: Updates service API and documentation
* `service/storagegateway`: Updates service API and documentation
* Adding support for Audit Logs on NFS shares and Force Closing Files on SMB shares.
* `service/workmail`: Updates service API, documentation, and paginators
* This release adds APIs for adding, removing and retrieving details of mail domains

Release v1.41.1 (2021-10-12)
===

Expand Down
1 change: 1 addition & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.41.1"
const SDKVersion = "1.41.2"
3 changes: 2 additions & 1 deletion models/apis/config/2014-11-12/api-2.json
Expand Up @@ -4366,7 +4366,8 @@
"AWS::ECS::TaskDefinition",
"AWS::EFS::AccessPoint",
"AWS::EFS::FileSystem",
"AWS::EKS::Cluster"
"AWS::EKS::Cluster",
"AWS::OpenSearch::Domain"
]
},
"ResourceTypeList":{
Expand Down
39 changes: 38 additions & 1 deletion models/apis/ec2/2016-11-15/api-2.json
Expand Up @@ -8264,7 +8264,8 @@
"shape":"TagSpecificationList",
"locationName":"TagSpecification"
},
"MaxAggregationInterval":{"shape":"Integer"}
"MaxAggregationInterval":{"shape":"Integer"},
"DestinationOptions":{"shape":"DestinationOptionsRequest"}
}
},
"CreateFlowLogsResult":{
Expand Down Expand Up @@ -15272,6 +15273,38 @@
}
}
},
"DestinationFileFormat":{
"type":"string",
"enum":[
"plain-text",
"parquet"
]
},
"DestinationOptionsRequest":{
"type":"structure",
"members":{
"FileFormat":{"shape":"DestinationFileFormat"},
"HiveCompatiblePartitions":{"shape":"Boolean"},
"PerHourPartition":{"shape":"Boolean"}
}
},
"DestinationOptionsResponse":{
"type":"structure",
"members":{
"FileFormat":{
"shape":"DestinationFileFormat",
"locationName":"fileFormat"
},
"HiveCompatiblePartitions":{
"shape":"Boolean",
"locationName":"hiveCompatiblePartitions"
},
"PerHourPartition":{
"shape":"Boolean",
"locationName":"perHourPartition"
}
}
},
"DetachClassicLinkVpcRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -17867,6 +17900,10 @@
"MaxAggregationInterval":{
"shape":"Integer",
"locationName":"maxAggregationInterval"
},
"DestinationOptions":{
"shape":"DestinationOptionsResponse",
"locationName":"destinationOptions"
}
}
},
Expand Down
31 changes: 27 additions & 4 deletions models/apis/ec2/2016-11-15/docs-2.json
Expand Up @@ -1727,6 +1727,10 @@
"DescribeVpcsRequest$DryRun": "<p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>",
"DescribeVpnConnectionsRequest$DryRun": "<p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>",
"DescribeVpnGatewaysRequest$DryRun": "<p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>",
"DestinationOptionsRequest$HiveCompatiblePartitions": "<p>Indicates whether to use Hive-compatible prefixes for flow logs stored in Amazon S3. The default is <code>false</code>.</p>",
"DestinationOptionsRequest$PerHourPartition": "<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>",
"DestinationOptionsResponse$HiveCompatiblePartitions": "<p>Indicates whether to use Hive-compatible prefixes for flow logs stored in Amazon S3.</p>",
"DestinationOptionsResponse$PerHourPartition": "<p>Indicates whether to partition the flow log per hour.</p>",
"DetachClassicLinkVpcRequest$DryRun": "<p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>",
"DetachClassicLinkVpcResult$Return": "<p>Returns <code>true</code> if the request succeeds; otherwise, it returns an error.</p>",
"DetachInternetGatewayRequest$DryRun": "<p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>",
Expand Down Expand Up @@ -6088,6 +6092,25 @@
"refs": {
}
},
"DestinationFileFormat": {
"base": null,
"refs": {
"DestinationOptionsRequest$FileFormat": "<p>The format for the flow log. The default is <code>plain-text</code>.</p>",
"DestinationOptionsResponse$FileFormat": "<p>The format for the flow log.</p>"
}
},
"DestinationOptionsRequest": {
"base": "<p>Describes the destination options for a flow log.</p>",
"refs": {
"CreateFlowLogsRequest$DestinationOptions": "<p>The destination options.</p>"
}
},
"DestinationOptionsResponse": {
"base": "<p>Describes the destination options for a flow log.</p>",
"refs": {
"FlowLog$DestinationOptions": "<p>The destination options.</p>"
}
},
"DetachClassicLinkVpcRequest": {
"base": null,
"refs": {
Expand Down Expand Up @@ -10666,8 +10689,8 @@
"LogDestinationType": {
"base": null,
"refs": {
"CreateFlowLogsRequest$LogDestinationType": "<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>",
"FlowLog$LogDestinationType": "<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>"
"CreateFlowLogsRequest$LogDestinationType": "<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>",
"FlowLog$LogDestinationType": "<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>"
}
},
"Long": {
Expand Down Expand Up @@ -14618,7 +14641,7 @@
"CreateFlowLogsRequest$ClientToken": "<p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html\">How to ensure idempotency</a>.</p>",
"CreateFlowLogsRequest$DeliverLogsPermissionArn": "<p>The ARN for the IAM role that permits Amazon EC2 to publish flow logs to a CloudWatch Logs log group in your account.</p> <p>If you specify <code>LogDestinationType</code> as <code>s3</code>, do not specify <code>DeliverLogsPermissionArn</code> or <code>LogGroupName</code>.</p>",
"CreateFlowLogsRequest$LogGroupName": "<p>The name of a new or existing CloudWatch Logs log group where Amazon EC2 publishes your flow logs.</p> <p>If you specify <code>LogDestinationType</code> as <code>s3</code>, do not specify <code>DeliverLogsPermissionArn</code> or <code>LogGroupName</code>.</p>",
"CreateFlowLogsRequest$LogDestination": "<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>",
"CreateFlowLogsRequest$LogDestination": "<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>",
"CreateFlowLogsRequest$LogFormat": "<p>The fields to include in the flow log record, in the order in which they should appear. For a list of available fields, see <a href=\"https://docs.aws.amazon.com/vpc/latest/userguide/flow-logs.html#flow-log-records\">Flow log records</a>. If you omit this parameter, the flow log is created using the default format. If you specify this parameter, you must specify at least one field.</p> <p>Specify the fields using the <code>${field-id}</code> format, separated by spaces. For the CLI, surround this parameter value with single quotes on Linux or double quotes on Windows.</p>",
"CreateFlowLogsResult$ClientToken": "<p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>",
"CreateFpgaImageRequest$Description": "<p>A description for the AFI.</p>",
Expand Down Expand Up @@ -15047,7 +15070,7 @@
"FlowLog$FlowLogStatus": "<p>The status of the flow log (<code>ACTIVE</code>).</p>",
"FlowLog$LogGroupName": "<p>The name of the flow log group.</p>",
"FlowLog$ResourceId": "<p>The ID of the resource on which the flow log was created.</p>",
"FlowLog$LogDestination": "<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>",
"FlowLog$LogDestination": "<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>",
"FlowLog$LogFormat": "<p>The format of the flow log record.</p>",
"FpgaImage$FpgaImageId": "<p>The FPGA image identifier (AFI ID).</p>",
"FpgaImage$FpgaImageGlobalId": "<p>The global FPGA image identifier (AGFI ID).</p>",
Expand Down
15 changes: 9 additions & 6 deletions models/apis/kinesisanalyticsv2/2018-05-23/api-2.json
Expand Up @@ -127,7 +127,8 @@
{"shape":"InvalidArgumentException"},
{"shape":"InvalidRequestException"},
{"shape":"TooManyTagsException"},
{"shape":"ConcurrentModificationException"}
{"shape":"ConcurrentModificationException"},
{"shape":"UnsupportedOperationException"}
]
},
"CreateApplicationPresignedUrl":{
Expand Down Expand Up @@ -331,7 +332,8 @@
{"shape":"UnableToDetectSchemaException"},
{"shape":"ResourceProvisionedThroughputExceededException"},
{"shape":"ServiceUnavailableException"},
{"shape":"InvalidRequestException"}
{"shape":"InvalidRequestException"},
{"shape":"UnsupportedOperationException"}
]
},
"ListApplicationSnapshots":{
Expand Down Expand Up @@ -820,8 +822,8 @@
"UPDATING",
"AUTOSCALING",
"FORCE_STOPPING",
"MAINTENANCE",
"ROLLING_BACK",
"MAINTENANCE",
"ROLLED_BACK"
]
},
Expand Down Expand Up @@ -1304,7 +1306,6 @@
},
"DeployAsApplicationConfigurationUpdate":{
"type":"structure",
"required":["S3ContentLocationUpdate"],
"members":{
"S3ContentLocationUpdate":{"shape":"S3ContentBaseLocationUpdate"}
}
Expand Down Expand Up @@ -1459,6 +1460,7 @@
},
"GlueDataCatalogConfigurationUpdate":{
"type":"structure",
"required":["DatabaseARNUpdate"],
"members":{
"DatabaseARNUpdate":{"shape":"DatabaseARN"}
}
Expand Down Expand Up @@ -2284,8 +2286,10 @@
"SQL-1_0",
"FLINK-1_6",
"FLINK-1_8",
"ZEPPELIN-FLINK-1_0",
"FLINK-1_11",
"ZEPPELIN-FLINK-1_0"
"FLINK-1_13",
"ZEPPELIN-FLINK-2_0"
]
},
"S3ApplicationCodeLocationDescription":{
Expand Down Expand Up @@ -2329,7 +2333,6 @@
},
"S3ContentBaseLocationUpdate":{
"type":"structure",
"required":["BucketARNUpdate"],
"members":{
"BucketARNUpdate":{"shape":"BucketARN"},
"BasePathUpdate":{"shape":"BasePath"}
Expand Down

0 comments on commit 4029614

Please sign in to comment.