Skip to content

Commit ec96333

Browse files
Release v1.46.2 (2023-10-23) (#5033)
Release v1.46.2 (2023-10-23) === ### Service Client Updates * `service/marketplacecommerceanalytics`: Updates service API and documentation * The StartSupportDataExport operation has been deprecated as part of the Product Support Connection deprecation. As of December 2022, Product Support Connection is no longer supported. * `service/networkmanager`: Updates service API and documentation * `service/redshift-serverless`: Updates service API and documentation * `service/rekognition`: Updates service API, documentation, paginators, and examples * Amazon Rekognition introduces StartMediaAnalysisJob, GetMediaAnalysisJob, and ListMediaAnalysisJobs operations to run a bulk analysis of images with a Detect Moderation model.
1 parent 65a459a commit ec96333

File tree

27 files changed

+3720
-1071
lines changed

27 files changed

+3720
-1071
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Release v1.46.2 (2023-10-23)
2+
===
3+
4+
### Service Client Updates
5+
* `service/marketplacecommerceanalytics`: Updates service API and documentation
6+
* The StartSupportDataExport operation has been deprecated as part of the Product Support Connection deprecation. As of December 2022, Product Support Connection is no longer supported.
7+
* `service/networkmanager`: Updates service API and documentation
8+
* `service/redshift-serverless`: Updates service API and documentation
9+
* `service/rekognition`: Updates service API, documentation, paginators, and examples
10+
* Amazon Rekognition introduces StartMediaAnalysisJob, GetMediaAnalysisJob, and ListMediaAnalysisJobs operations to run a bulk analysis of images with a Detect Moderation model.
11+
112
Release v1.46.1 (2023-10-20)
213
===
314

aws/endpoints/defaults.go

+76
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aws/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.46.1"
8+
const SDKVersion = "1.46.2"

models/apis/marketplacecommerceanalytics/2015-07-01/api-2.json

+12-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@
3535
"output":{"shape":"StartSupportDataExportResult"},
3636
"errors":[
3737
{"shape":"MarketplaceCommerceAnalyticsException"}
38-
]
38+
],
39+
"deprecated":true,
40+
"deprecatedMessage":"This target has been deprecated. As of December 2022 Product Support Connection is no longer supported."
3941
}
4042
},
4143
"shapes":{
@@ -82,6 +84,7 @@
8284
},
8385
"DestinationS3BucketName":{
8486
"type":"string",
87+
"max":63,
8588
"min":1
8689
},
8790
"DestinationS3Prefix":{"type":"string"},
@@ -132,10 +135,12 @@
132135
},
133136
"RoleNameArn":{
134137
"type":"string",
138+
"max":2048,
135139
"min":1
136140
},
137141
"SnsTopicArn":{
138142
"type":"string",
143+
"max":256,
139144
"min":1
140145
},
141146
"StartSupportDataExportRequest":{
@@ -155,13 +160,17 @@
155160
"destinationS3Prefix":{"shape":"DestinationS3Prefix"},
156161
"snsTopicArn":{"shape":"SnsTopicArn"},
157162
"customerDefinedValues":{"shape":"CustomerDefinedValues"}
158-
}
163+
},
164+
"deprecated":true,
165+
"deprecatedMessage":"This target has been deprecated. As of December 2022 Product Support Connection is no longer supported."
159166
},
160167
"StartSupportDataExportResult":{
161168
"type":"structure",
162169
"members":{
163170
"dataSetRequestId":{"shape":"DataSetRequestId"}
164-
}
171+
},
172+
"deprecated":true,
173+
"deprecatedMessage":"This target has been deprecated. As of December 2022 Product Support Connection is no longer supported."
165174
},
166175
"SupportDataSetType":{
167176
"type":"string",

models/apis/marketplacecommerceanalytics/2015-07-01/docs-2.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
"service": "Provides AWS Marketplace business intelligence data on-demand.",
44
"operations": {
55
"GenerateDataSet": "Given a data set type and data set publication date, asynchronously publishes the requested data set to the specified S3 bucket and notifies the specified SNS topic once the data is available. Returns a unique request identifier that can be used to correlate requests with notifications from the SNS topic. Data sets will be published in comma-separated values (CSV) format with the file name {data_set_type}_YYYY-MM-DD.csv. If a file with the same name already exists (e.g. if the same data set is requested twice), the original file will be overwritten by the new file. Requires a Role with an attached permissions policy providing Allow permissions for the following actions: s3:PutObject, s3:GetBucketLocation, sns:GetTopicAttributes, sns:Publish, iam:GetRolePolicy.",
6-
"StartSupportDataExport": "Given a data set type and a from date, asynchronously publishes the requested customer support data to the specified S3 bucket and notifies the specified SNS topic once the data is available. Returns a unique request identifier that can be used to correlate requests with notifications from the SNS topic. Data sets will be published in comma-separated values (CSV) format with the file name {data_set_type}_YYYY-MM-DD'T'HH-mm-ss'Z'.csv. If a file with the same name already exists (e.g. if the same data set is requested twice), the original file will be overwritten by the new file. Requires a Role with an attached permissions policy providing Allow permissions for the following actions: s3:PutObject, s3:GetBucketLocation, sns:GetTopicAttributes, sns:Publish, iam:GetRolePolicy."
6+
"StartSupportDataExport": "<i>This target has been deprecated.</i> Given a data set type and a from date, asynchronously publishes the requested customer support data to the specified S3 bucket and notifies the specified SNS topic once the data is available. Returns a unique request identifier that can be used to correlate requests with notifications from the SNS topic. Data sets will be published in comma-separated values (CSV) format with the file name {data_set_type}_YYYY-MM-DD'T'HH-mm-ss'Z'.csv. If a file with the same name already exists (e.g. if the same data set is requested twice), the original file will be overwritten by the new file. Requires a Role with an attached permissions policy providing Allow permissions for the following actions: s3:PutObject, s3:GetBucketLocation, sns:GetTopicAttributes, sns:Publish, iam:GetRolePolicy."
77
},
88
"shapes": {
99
"CustomerDefinedValues": {
1010
"base": null,
1111
"refs": {
1212
"GenerateDataSetRequest$customerDefinedValues": "(Optional) Key-value pairs which will be returned, unmodified, in the Amazon SNS notification message and the data set metadata file. These key-value pairs can be used to correlated responses with tracking information from other systems.",
13-
"StartSupportDataExportRequest$customerDefinedValues": "(Optional) Key-value pairs which will be returned, unmodified, in the Amazon SNS notification message and the data set metadata file."
13+
"StartSupportDataExportRequest$customerDefinedValues": "<i>This target has been deprecated.</i> (Optional) Key-value pairs which will be returned, unmodified, in the Amazon SNS notification message and the data set metadata file."
1414
}
1515
},
1616
"DataSetPublicationDate": {
@@ -23,7 +23,7 @@
2323
"base": null,
2424
"refs": {
2525
"GenerateDataSetResult$dataSetRequestId": "A unique identifier representing a specific request to the GenerateDataSet operation. This identifier can be used to correlate a request with notifications from the SNS topic.",
26-
"StartSupportDataExportResult$dataSetRequestId": "A unique identifier representing a specific request to the StartSupportDataExport operation. This identifier can be used to correlate a request with notifications from the SNS topic."
26+
"StartSupportDataExportResult$dataSetRequestId": "<i>This target has been deprecated.</i> A unique identifier representing a specific request to the StartSupportDataExport operation. This identifier can be used to correlate a request with notifications from the SNS topic."
2727
}
2828
},
2929
"DataSetType": {
@@ -36,14 +36,14 @@
3636
"base": null,
3737
"refs": {
3838
"GenerateDataSetRequest$destinationS3BucketName": "The name (friendly name, not ARN) of the destination S3 bucket.",
39-
"StartSupportDataExportRequest$destinationS3BucketName": "The name (friendly name, not ARN) of the destination S3 bucket."
39+
"StartSupportDataExportRequest$destinationS3BucketName": "<i>This target has been deprecated.</i> The name (friendly name, not ARN) of the destination S3 bucket."
4040
}
4141
},
4242
"DestinationS3Prefix": {
4343
"base": null,
4444
"refs": {
4545
"GenerateDataSetRequest$destinationS3Prefix": "(Optional) The desired S3 prefix for the published data set, similar to a directory path in standard file systems. For example, if given the bucket name \"mybucket\" and the prefix \"myprefix/mydatasets\", the output file \"outputfile\" would be published to \"s3://mybucket/myprefix/mydatasets/outputfile\". If the prefix directory structure does not exist, it will be created. If no prefix is provided, the data set will be published to the S3 bucket root.",
46-
"StartSupportDataExportRequest$destinationS3Prefix": "(Optional) The desired S3 prefix for the published data set, similar to a directory path in standard file systems. For example, if given the bucket name \"mybucket\" and the prefix \"myprefix/mydatasets\", the output file \"outputfile\" would be published to \"s3://mybucket/myprefix/mydatasets/outputfile\". If the prefix directory structure does not exist, it will be created. If no prefix is provided, the data set will be published to the S3 bucket root."
46+
"StartSupportDataExportRequest$destinationS3Prefix": "<i>This target has been deprecated.</i> (Optional) The desired S3 prefix for the published data set, similar to a directory path in standard file systems. For example, if given the bucket name \"mybucket\" and the prefix \"myprefix/mydatasets\", the output file \"outputfile\" would be published to \"s3://mybucket/myprefix/mydatasets/outputfile\". If the prefix directory structure does not exist, it will be created. If no prefix is provided, the data set will be published to the S3 bucket root."
4747
}
4848
},
4949
"ExceptionMessage": {
@@ -55,7 +55,7 @@
5555
"FromDate": {
5656
"base": null,
5757
"refs": {
58-
"StartSupportDataExportRequest$fromDate": "The start date from which to retrieve the data set in UTC. This parameter only affects the customer_support_contacts_data data set type."
58+
"StartSupportDataExportRequest$fromDate": "<i>This target has been deprecated.</i> The start date from which to retrieve the data set in UTC. This parameter only affects the customer_support_contacts_data data set type."
5959
}
6060
},
6161
"GenerateDataSetRequest": {
@@ -89,30 +89,30 @@
8989
"base": null,
9090
"refs": {
9191
"GenerateDataSetRequest$roleNameArn": "The Amazon Resource Name (ARN) of the Role with an attached permissions policy to interact with the provided AWS services.",
92-
"StartSupportDataExportRequest$roleNameArn": "The Amazon Resource Name (ARN) of the Role with an attached permissions policy to interact with the provided AWS services."
92+
"StartSupportDataExportRequest$roleNameArn": "<i>This target has been deprecated.</i> The Amazon Resource Name (ARN) of the Role with an attached permissions policy to interact with the provided AWS services."
9393
}
9494
},
9595
"SnsTopicArn": {
9696
"base": null,
9797
"refs": {
9898
"GenerateDataSetRequest$snsTopicArn": "Amazon Resource Name (ARN) for the SNS Topic that will be notified when the data set has been published or if an error has occurred.",
99-
"StartSupportDataExportRequest$snsTopicArn": "Amazon Resource Name (ARN) for the SNS Topic that will be notified when the data set has been published or if an error has occurred."
99+
"StartSupportDataExportRequest$snsTopicArn": "<i>This target has been deprecated.</i> Amazon Resource Name (ARN) for the SNS Topic that will be notified when the data set has been published or if an error has occurred."
100100
}
101101
},
102102
"StartSupportDataExportRequest": {
103-
"base": "Container for the parameters to the StartSupportDataExport operation.",
103+
"base": "<i>This target has been deprecated.</i> Container for the parameters to the StartSupportDataExport operation.",
104104
"refs": {
105105
}
106106
},
107107
"StartSupportDataExportResult": {
108-
"base": "Container for the result of the StartSupportDataExport operation.",
108+
"base": "<i>This target has been deprecated.</i> Container for the result of the StartSupportDataExport operation.",
109109
"refs": {
110110
}
111111
},
112112
"SupportDataSetType": {
113113
"base": null,
114114
"refs": {
115-
"StartSupportDataExportRequest$dataSetType": "<p> Specifies the data set type to be written to the output csv file. The data set types customer_support_contacts_data and test_customer_support_contacts_data both result in a csv file containing the following fields: Product Id, Product Code, Customer Guid, Subscription Guid, Subscription Start Date, Organization, AWS Account Id, Given Name, Surname, Telephone Number, Email, Title, Country Code, ZIP Code, Operation Type, and Operation Time. </p> <p> <ul> <li><i>customer_support_contacts_data</i> Customer support contact data. The data set will contain all changes (Creates, Updates, and Deletes) to customer support contact data from the date specified in the from_date parameter.</li> <li><i>test_customer_support_contacts_data</i> An example data set containing static test data in the same format as customer_support_contacts_data</li> </ul> </p>"
115+
"StartSupportDataExportRequest$dataSetType": "<p> <i>This target has been deprecated.</i> Specifies the data set type to be written to the output csv file. The data set types customer_support_contacts_data and test_customer_support_contacts_data both result in a csv file containing the following fields: Product Id, Product Code, Customer Guid, Subscription Guid, Subscription Start Date, Organization, AWS Account Id, Given Name, Surname, Telephone Number, Email, Title, Country Code, ZIP Code, Operation Type, and Operation Time. </p> <p> <ul> <li><i>customer_support_contacts_data</i> Customer support contact data. The data set will contain all changes (Creates, Updates, and Deletes) to customer support contact data from the date specified in the from_date parameter.</li> <li><i>test_customer_support_contacts_data</i> An example data set containing static test data in the same format as customer_support_contacts_data</li> </ul> </p>"
116116
}
117117
}
118118
}

0 commit comments

Comments
 (0)