Skip to content

Commit a54a4ea

Browse files
Update models for release
1 parent 86078ab commit a54a4ea

19 files changed

+439
-124
lines changed

.changes/3.273.1

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[
2+
{
3+
"type": "enhancement",
4+
"category": "EFS",
5+
"description": "Documentation updates for EFS."
6+
},
7+
{
8+
"type": "api-change",
9+
"category": "LocationService",
10+
"description": "Amazon Location Service adds categories to places, including filtering on those categories in searches. Also, you can now add metadata properties to your geofences."
11+
},
12+
{
13+
"type": "enhancement",
14+
"category": "GuardDuty",
15+
"description": "Updated descriptions for some APIs."
16+
},
17+
{
18+
"type": "api-change",
19+
"category": "AuditManager",
20+
"description": "This release introduces 2 Audit Manager features: CSV exports and new manual evidence options. You can now export your evidence finder results in CSV format. In addition, you can now add manual evidence to a control by entering free-form text or uploading a file from your browser."
21+
}
22+
]

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# CHANGELOG
22

3+
## next release
4+
5+
* `Aws\AuditManager` - This release introduces 2 Audit Manager features: CSV exports and new manual evidence options. You can now export your evidence finder results in CSV format. In addition, you can now add manual evidence to a control by entering free-form text or uploading a file from your browser.
6+
* `Aws\EFS` - Documentation updates for EFS.
7+
* `Aws\GuardDuty` - Updated descriptions for some APIs.
8+
* `Aws\LocationService` - Amazon Location Service adds categories to places, including filtering on those categories in searches. Also, you can now add metadata properties to your geofences.
9+
310
## 3.273.0 - 2023-06-13
411

512
* `Aws\CloudTrail` - This feature allows users to view dashboards for CloudTrail Lake event data stores.

src/AuditManager/AuditManagerClient.php

+2
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@
5959
* @method \GuzzleHttp\Promise\Promise getEvidenceAsync(array $args = [])
6060
* @method \Aws\Result getEvidenceByEvidenceFolder(array $args = [])
6161
* @method \GuzzleHttp\Promise\Promise getEvidenceByEvidenceFolderAsync(array $args = [])
62+
* @method \Aws\Result getEvidenceFileUploadUrl(array $args = [])
63+
* @method \GuzzleHttp\Promise\Promise getEvidenceFileUploadUrlAsync(array $args = [])
6264
* @method \Aws\Result getEvidenceFolder(array $args = [])
6365
* @method \GuzzleHttp\Promise\Promise getEvidenceFolderAsync(array $args = [])
6466
* @method \Aws\Result getEvidenceFoldersByAssessment(array $args = [])

src/data/auditmanager/2017-07-25/api-2.json

+72-6
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@
9999
{"shape":"ResourceNotFoundException"},
100100
{"shape":"AccessDeniedException"},
101101
{"shape":"ValidationException"},
102-
{"shape":"InternalServerException"}
102+
{"shape":"InternalServerException"},
103+
{"shape":"ThrottlingException"}
103104
]
104105
},
105106
"CreateAssessment":{
@@ -416,6 +417,21 @@
416417
{"shape":"InternalServerException"}
417418
]
418419
},
420+
"GetEvidenceFileUploadUrl":{
421+
"name":"GetEvidenceFileUploadUrl",
422+
"http":{
423+
"method":"GET",
424+
"requestUri":"/evidenceFileUploadUrl"
425+
},
426+
"input":{"shape":"GetEvidenceFileUploadUrlRequest"},
427+
"output":{"shape":"GetEvidenceFileUploadUrlResponse"},
428+
"errors":[
429+
{"shape":"ValidationException"},
430+
{"shape":"AccessDeniedException"},
431+
{"shape":"InternalServerException"},
432+
{"shape":"ThrottlingException"}
433+
]
434+
},
419435
"GetEvidenceFolder":{
420436
"name":"GetEvidenceFolder",
421437
"http":{
@@ -1806,6 +1822,13 @@
18061822
"min":1,
18071823
"pattern":"^[a-zA-Z0-9\\s-_()\\[\\]]+$"
18081824
},
1825+
"DefaultExportDestination":{
1826+
"type":"structure",
1827+
"members":{
1828+
"destinationType":{"shape":"ExportDestinationType"},
1829+
"destination":{"shape":"S3Url"}
1830+
}
1831+
},
18091832
"Delegation":{
18101833
"type":"structure",
18111834
"members":{
@@ -2117,6 +2140,10 @@
21172140
"type":"list",
21182141
"member":{"shape":"NonEmptyString"}
21192142
},
2143+
"ExportDestinationType":{
2144+
"type":"string",
2145+
"enum":["S3"]
2146+
},
21202147
"Filename":{
21212148
"type":"string",
21222149
"max":255,
@@ -2370,6 +2397,24 @@
23702397
"nextToken":{"shape":"Token"}
23712398
}
23722399
},
2400+
"GetEvidenceFileUploadUrlRequest":{
2401+
"type":"structure",
2402+
"required":["fileName"],
2403+
"members":{
2404+
"fileName":{
2405+
"shape":"ManualEvidenceLocalFileName",
2406+
"location":"querystring",
2407+
"locationName":"fileName"
2408+
}
2409+
}
2410+
},
2411+
"GetEvidenceFileUploadUrlResponse":{
2412+
"type":"structure",
2413+
"members":{
2414+
"evidenceFileName":{"shape":"NonEmptyString"},
2415+
"uploadUrl":{"shape":"NonEmptyString"}
2416+
}
2417+
},
23732418
"GetEvidenceFolderRequest":{
23742419
"type":"structure",
23752420
"required":[
@@ -2624,7 +2669,11 @@
26242669
},
26252670
"KeywordInputType":{
26262671
"type":"string",
2627-
"enum":["SELECT_FROM_LIST"]
2672+
"enum":[
2673+
"SELECT_FROM_LIST",
2674+
"UPLOAD_FILE",
2675+
"INPUT_TEXT"
2676+
]
26282677
},
26292678
"KeywordValue":{
26302679
"type":"string",
@@ -2969,7 +3018,9 @@
29693018
"ManualEvidence":{
29703019
"type":"structure",
29713020
"members":{
2972-
"s3ResourcePath":{"shape":"S3Url"}
3021+
"s3ResourcePath":{"shape":"S3Url"},
3022+
"textResponse":{"shape":"ManualEvidenceTextResponse"},
3023+
"evidenceFileName":{"shape":"ManualEvidenceLocalFileName"}
29733024
}
29743025
},
29753026
"ManualEvidenceList":{
@@ -2978,6 +3029,18 @@
29783029
"max":50,
29793030
"min":1
29803031
},
3032+
"ManualEvidenceLocalFileName":{
3033+
"type":"string",
3034+
"max":300,
3035+
"min":1,
3036+
"pattern":"[^\\/]*"
3037+
},
3038+
"ManualEvidenceTextResponse":{
3039+
"type":"string",
3040+
"max":1000,
3041+
"min":1,
3042+
"pattern":"^[\\w\\W\\s\\S]*$"
3043+
},
29813044
"MaxResults":{
29823045
"type":"integer",
29833046
"max":1000,
@@ -3153,7 +3216,8 @@
31533216
"DEFAULT_ASSESSMENT_REPORTS_DESTINATION",
31543217
"DEFAULT_PROCESS_OWNERS",
31553218
"EVIDENCE_FINDER_ENABLEMENT",
3156-
"DEREGISTRATION_POLICY"
3219+
"DEREGISTRATION_POLICY",
3220+
"DEFAULT_EXPORT_DESTINATION"
31573221
]
31583222
},
31593223
"Settings":{
@@ -3165,7 +3229,8 @@
31653229
"defaultProcessOwners":{"shape":"Roles"},
31663230
"kmsKey":{"shape":"KmsKey"},
31673231
"evidenceFinderEnablement":{"shape":"EvidenceFinderEnablement"},
3168-
"deregistrationPolicy":{"shape":"DeregistrationPolicy"}
3232+
"deregistrationPolicy":{"shape":"DeregistrationPolicy"},
3233+
"defaultExportDestination":{"shape":"DefaultExportDestination"}
31693234
}
31703235
},
31713236
"ShareRequestAction":{
@@ -3601,7 +3666,8 @@
36013666
"defaultProcessOwners":{"shape":"Roles"},
36023667
"kmsKey":{"shape":"KmsKey"},
36033668
"evidenceFinderEnabled":{"shape":"Boolean"},
3604-
"deregistrationPolicy":{"shape":"DeregistrationPolicy"}
3669+
"deregistrationPolicy":{"shape":"DeregistrationPolicy"},
3670+
"defaultExportDestination":{"shape":"DefaultExportDestination"}
36053671
}
36063672
},
36073673
"UpdateSettingsResponse":{

src/data/auditmanager/2017-07-25/api-2.json.php

+1-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)