Skip to content

Commit b8b096a

Browse files
Merging v1.4.20 release
2 parents 98dd644 + 9dac546 commit b8b096a

File tree

8 files changed

+858
-26
lines changed

8 files changed

+858
-26
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [1.4.20] - 02/13/2025
4+
5+
### Features
6+
* (**accessanalyzer**) This release introduces the getFindingsStatistics API, enabling users to retrieve aggregated finding statistics for IAM Access Analyzer's external access and unused access analysis features. Updated service API and documentation.
7+
* (**fis**) Adds auto-pagination for the following operations: ListActions, ListExperimentTemplates, ListTargetAccountConfigurations, ListExperiments, ListExperimentResolvedTargets, ListTargetResourceTypes. Reduces length constraints of prefixes for logConfiguration and experimentReportConfiguration.
8+
* (**sagemaker**) Adds additional values to the InferenceAmiVersion parameter in the ProductionVariant data type.
9+
* (**storagegateway**) This release adds support for generating cache reports on S3 File Gateways for files that fail to upload.
10+
11+
### Documentation
12+
* (**acmpca**) Private Certificate Authority (PCA) documentation updates
13+
* (**ecs**) This is a documentation only release to support migrating Amazon ECS service ARNs to the long ARN format.
14+
315
## [1.4.19] - 02/12/2025
416

517
### Features

codegen/sdk/aws-models/accessanalyzer.json

Lines changed: 274 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@
6767
{
6868
"target": "com.amazonaws.accessanalyzer#GetFindingRecommendation"
6969
},
70+
{
71+
"target": "com.amazonaws.accessanalyzer#GetFindingsStatistics"
72+
},
7073
{
7174
"target": "com.amazonaws.accessanalyzer#GetFindingV2"
7275
},
@@ -1554,6 +1557,18 @@
15541557
"target": "com.amazonaws.accessanalyzer#AccessPreviewSummary"
15551558
}
15561559
},
1560+
"com.amazonaws.accessanalyzer#AccountAggregations": {
1561+
"type": "list",
1562+
"member": {
1563+
"target": "com.amazonaws.accessanalyzer#FindingAggregationAccountDetails"
1564+
},
1565+
"traits": {
1566+
"smithy.api#length": {
1567+
"min": 1,
1568+
"max": 10
1569+
}
1570+
}
1571+
},
15571572
"com.amazonaws.accessanalyzer#AccountIdsList": {
15581573
"type": "list",
15591574
"member": {
@@ -3337,6 +3352,38 @@
33373352
"smithy.api#documentation": "<p>Contains information about an external access finding.</p>"
33383353
}
33393354
},
3355+
"com.amazonaws.accessanalyzer#ExternalAccessFindingsStatistics": {
3356+
"type": "structure",
3357+
"members": {
3358+
"resourceTypeStatistics": {
3359+
"target": "com.amazonaws.accessanalyzer#ResourceTypeStatisticsMap",
3360+
"traits": {
3361+
"smithy.api#documentation": "<p>The total number of active cross-account and public findings for each resource type of\n the specified external access analyzer.</p>"
3362+
}
3363+
},
3364+
"totalActiveFindings": {
3365+
"target": "smithy.api#Integer",
3366+
"traits": {
3367+
"smithy.api#documentation": "<p>The number of active findings for the specified external access analyzer.</p>"
3368+
}
3369+
},
3370+
"totalArchivedFindings": {
3371+
"target": "smithy.api#Integer",
3372+
"traits": {
3373+
"smithy.api#documentation": "<p>The number of archived findings for the specified external access analyzer.</p>"
3374+
}
3375+
},
3376+
"totalResolvedFindings": {
3377+
"target": "smithy.api#Integer",
3378+
"traits": {
3379+
"smithy.api#documentation": "<p>The number of resolved findings for the specified external access analyzer.</p>"
3380+
}
3381+
}
3382+
},
3383+
"traits": {
3384+
"smithy.api#documentation": "<p>Provides aggregate statistics about the findings for the specified external access\n analyzer.</p>"
3385+
}
3386+
},
33403387
"com.amazonaws.accessanalyzer#FilterCriteriaMap": {
33413388
"type": "map",
33423389
"key": {
@@ -3452,6 +3499,41 @@
34523499
"smithy.api#documentation": "<p>Contains information about a finding.</p>"
34533500
}
34543501
},
3502+
"com.amazonaws.accessanalyzer#FindingAggregationAccountDetails": {
3503+
"type": "structure",
3504+
"members": {
3505+
"account": {
3506+
"target": "smithy.api#String",
3507+
"traits": {
3508+
"smithy.api#documentation": "<p>The ID of the Amazon Web Services account for which unused access finding details are provided.</p>"
3509+
}
3510+
},
3511+
"numberOfActiveFindings": {
3512+
"target": "smithy.api#Integer",
3513+
"traits": {
3514+
"smithy.api#documentation": "<p>The number of active unused access findings for the specified Amazon Web Services account.</p>"
3515+
}
3516+
},
3517+
"details": {
3518+
"target": "com.amazonaws.accessanalyzer#FindingAggregationAccountDetailsMap",
3519+
"traits": {
3520+
"smithy.api#documentation": "<p>Provides the number of active findings for each type of unused access for the specified\n Amazon Web Services account.</p>"
3521+
}
3522+
}
3523+
},
3524+
"traits": {
3525+
"smithy.api#documentation": "<p>Contains information about the findings for an Amazon Web Services account in an organization unused\n access analyzer.</p>"
3526+
}
3527+
},
3528+
"com.amazonaws.accessanalyzer#FindingAggregationAccountDetailsMap": {
3529+
"type": "map",
3530+
"key": {
3531+
"target": "smithy.api#String"
3532+
},
3533+
"value": {
3534+
"target": "smithy.api#Integer"
3535+
}
3536+
},
34553537
"com.amazonaws.accessanalyzer#FindingChangeType": {
34563538
"type": "string",
34573539
"traits": {
@@ -3848,6 +3930,32 @@
38483930
"target": "com.amazonaws.accessanalyzer#FindingSummaryV2"
38493931
}
38503932
},
3933+
"com.amazonaws.accessanalyzer#FindingsStatistics": {
3934+
"type": "union",
3935+
"members": {
3936+
"externalAccessFindingsStatistics": {
3937+
"target": "com.amazonaws.accessanalyzer#ExternalAccessFindingsStatistics",
3938+
"traits": {
3939+
"smithy.api#documentation": "<p>The aggregate statistics for an external access analyzer.</p>"
3940+
}
3941+
},
3942+
"unusedAccessFindingsStatistics": {
3943+
"target": "com.amazonaws.accessanalyzer#UnusedAccessFindingsStatistics",
3944+
"traits": {
3945+
"smithy.api#documentation": "<p>The aggregate statistics for an unused access analyzer.</p>"
3946+
}
3947+
}
3948+
},
3949+
"traits": {
3950+
"smithy.api#documentation": "<p>Contains information about the aggregate statistics for an external or unused access\n analyzer. Only one parameter can be used in a <code>FindingsStatistics</code>\n object.</p>"
3951+
}
3952+
},
3953+
"com.amazonaws.accessanalyzer#FindingsStatisticsList": {
3954+
"type": "list",
3955+
"member": {
3956+
"target": "com.amazonaws.accessanalyzer#FindingsStatistics"
3957+
}
3958+
},
38513959
"com.amazonaws.accessanalyzer#GenerateFindingRecommendation": {
38523960
"type": "operation",
38533961
"input": {
@@ -4746,6 +4854,79 @@
47464854
"smithy.api#output": {}
47474855
}
47484856
},
4857+
"com.amazonaws.accessanalyzer#GetFindingsStatistics": {
4858+
"type": "operation",
4859+
"input": {
4860+
"target": "com.amazonaws.accessanalyzer#GetFindingsStatisticsRequest"
4861+
},
4862+
"output": {
4863+
"target": "com.amazonaws.accessanalyzer#GetFindingsStatisticsResponse"
4864+
},
4865+
"errors": [
4866+
{
4867+
"target": "com.amazonaws.accessanalyzer#AccessDeniedException"
4868+
},
4869+
{
4870+
"target": "com.amazonaws.accessanalyzer#InternalServerException"
4871+
},
4872+
{
4873+
"target": "com.amazonaws.accessanalyzer#ResourceNotFoundException"
4874+
},
4875+
{
4876+
"target": "com.amazonaws.accessanalyzer#ThrottlingException"
4877+
},
4878+
{
4879+
"target": "com.amazonaws.accessanalyzer#ValidationException"
4880+
}
4881+
],
4882+
"traits": {
4883+
"smithy.api#documentation": "<p>Retrieves a list of aggregated finding statistics for an external access or unused\n access analyzer.</p>",
4884+
"smithy.api#http": {
4885+
"uri": "/analyzer/findings/statistics",
4886+
"method": "POST",
4887+
"code": 200
4888+
},
4889+
"smithy.api#readonly": {},
4890+
"smithy.api#suppress": [
4891+
"HttpMethodSemantics"
4892+
]
4893+
}
4894+
},
4895+
"com.amazonaws.accessanalyzer#GetFindingsStatisticsRequest": {
4896+
"type": "structure",
4897+
"members": {
4898+
"analyzerArn": {
4899+
"target": "com.amazonaws.accessanalyzer#AnalyzerArn",
4900+
"traits": {
4901+
"smithy.api#documentation": "<p>The <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/access-analyzer-getting-started.html#permission-resources\">ARN of\n the analyzer</a> used to generate the statistics.</p>",
4902+
"smithy.api#required": {}
4903+
}
4904+
}
4905+
},
4906+
"traits": {
4907+
"smithy.api#input": {}
4908+
}
4909+
},
4910+
"com.amazonaws.accessanalyzer#GetFindingsStatisticsResponse": {
4911+
"type": "structure",
4912+
"members": {
4913+
"findingsStatistics": {
4914+
"target": "com.amazonaws.accessanalyzer#FindingsStatisticsList",
4915+
"traits": {
4916+
"smithy.api#documentation": "<p>A group of external access or unused access findings statistics.</p>"
4917+
}
4918+
},
4919+
"lastUpdatedAt": {
4920+
"target": "com.amazonaws.accessanalyzer#Timestamp",
4921+
"traits": {
4922+
"smithy.api#documentation": "<p>The time at which the retrieval of the findings statistics was last updated. If the\n findings statistics have not been previously retrieved for the specified analyzer, this\n field will not be populated.</p>"
4923+
}
4924+
}
4925+
},
4926+
"traits": {
4927+
"smithy.api#output": {}
4928+
}
4929+
},
47494930
"com.amazonaws.accessanalyzer#GetGeneratedPolicy": {
47504931
"type": "operation",
47514932
"input": {
@@ -6691,6 +6872,35 @@
66916872
]
66926873
}
66936874
},
6875+
"com.amazonaws.accessanalyzer#ResourceTypeDetails": {
6876+
"type": "structure",
6877+
"members": {
6878+
"totalActivePublic": {
6879+
"target": "smithy.api#Integer",
6880+
"traits": {
6881+
"smithy.api#documentation": "<p>The total number of active public findings for the resource type.</p>"
6882+
}
6883+
},
6884+
"totalActiveCrossAccount": {
6885+
"target": "smithy.api#Integer",
6886+
"traits": {
6887+
"smithy.api#documentation": "<p>The total number of active cross-account findings for the resource type.</p>"
6888+
}
6889+
}
6890+
},
6891+
"traits": {
6892+
"smithy.api#documentation": "<p>Contains information about the total number of active cross-account and public findings\n for a resource type of an external access analyzer.</p>"
6893+
}
6894+
},
6895+
"com.amazonaws.accessanalyzer#ResourceTypeStatisticsMap": {
6896+
"type": "map",
6897+
"key": {
6898+
"target": "com.amazonaws.accessanalyzer#ResourceType"
6899+
},
6900+
"value": {
6901+
"target": "com.amazonaws.accessanalyzer#ResourceTypeDetails"
6902+
}
6903+
},
66946904
"com.amazonaws.accessanalyzer#ResourcesList": {
66956905
"type": "list",
66966906
"member": {
@@ -7487,6 +7697,70 @@
74877697
"smithy.api#documentation": "<p>Contains information about an unused access analyzer.</p>"
74887698
}
74897699
},
7700+
"com.amazonaws.accessanalyzer#UnusedAccessFindingsStatistics": {
7701+
"type": "structure",
7702+
"members": {
7703+
"unusedAccessTypeStatistics": {
7704+
"target": "com.amazonaws.accessanalyzer#UnusedAccessTypeStatisticsList",
7705+
"traits": {
7706+
"smithy.api#documentation": "<p>A list of details about the total number of findings for each type of unused access for\n the analyzer. </p>"
7707+
}
7708+
},
7709+
"topAccounts": {
7710+
"target": "com.amazonaws.accessanalyzer#AccountAggregations",
7711+
"traits": {
7712+
"smithy.api#documentation": "<p>A list of one to ten Amazon Web Services accounts that have the most active findings for the unused\n access analyzer.</p>"
7713+
}
7714+
},
7715+
"totalActiveFindings": {
7716+
"target": "smithy.api#Integer",
7717+
"traits": {
7718+
"smithy.api#documentation": "<p>The total number of active findings for the unused access analyzer.</p>"
7719+
}
7720+
},
7721+
"totalArchivedFindings": {
7722+
"target": "smithy.api#Integer",
7723+
"traits": {
7724+
"smithy.api#documentation": "<p>The total number of archived findings for the unused access analyzer.</p>"
7725+
}
7726+
},
7727+
"totalResolvedFindings": {
7728+
"target": "smithy.api#Integer",
7729+
"traits": {
7730+
"smithy.api#documentation": "<p>The total number of resolved findings for the unused access analyzer.</p>"
7731+
}
7732+
}
7733+
},
7734+
"traits": {
7735+
"smithy.api#documentation": "<p>Provides aggregate statistics about the findings for the specified unused access\n analyzer.</p>"
7736+
}
7737+
},
7738+
"com.amazonaws.accessanalyzer#UnusedAccessTypeStatistics": {
7739+
"type": "structure",
7740+
"members": {
7741+
"unusedAccessType": {
7742+
"target": "smithy.api#String",
7743+
"traits": {
7744+
"smithy.api#documentation": "<p>The type of unused access.</p>"
7745+
}
7746+
},
7747+
"total": {
7748+
"target": "smithy.api#Integer",
7749+
"traits": {
7750+
"smithy.api#documentation": "<p>The total number of findings for the specified unused access type.</p>"
7751+
}
7752+
}
7753+
},
7754+
"traits": {
7755+
"smithy.api#documentation": "<p>Contains information about the total number of findings for a type of unused\n access.</p>"
7756+
}
7757+
},
7758+
"com.amazonaws.accessanalyzer#UnusedAccessTypeStatisticsList": {
7759+
"type": "list",
7760+
"member": {
7761+
"target": "com.amazonaws.accessanalyzer#UnusedAccessTypeStatistics"
7762+
}
7763+
},
74907764
"com.amazonaws.accessanalyzer#UnusedAction": {
74917765
"type": "structure",
74927766
"members": {

codegen/sdk/aws-models/acm-pca.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2008,13 +2008,13 @@
20082008
"CrlType": {
20092009
"target": "com.amazonaws.acmpca#CrlType",
20102010
"traits": {
2011-
"smithy.api#documentation": "<p>Choose whether to use a partitioned or complete CRL. Your choice determines the maximum number of certificates that the certificate authority can issue and revoke, as described in the <a href=\"https://docs.aws.amazon.com/general/latest/gr/pca.html#limits_pca-connector-ad\">Amazon Web Services Private CA quotas</a>.</p>\n <ul>\n <li>\n <p>\n <code>PARTITIONED</code> - The default setting. Partitioned CRLs are an especially good option for devices that have limited processing power or storage capacity, such as certain IoT devices. Compared to complete CRLs, partitioned CRLs dramatically increase the number of certificates your private CA can issue. Each certificate that Amazon Web Services Private CA issues is bound to a specific CRL partition through the CRL distribution point (CDP) defined in <a href=\"https://datatracker.ietf.org/doc/html/rfc5280\">RFC 5280</a>.</p>\n <important>\n <p>To make sure that your client fetches the CRL from a valid endpoint, we recommend that you programmatically validate that the CRL's issuing distribution point (IDP) URI matches the certificate's CDP URI. Amazon Web Services Private CA marks the IDP extension as critical, which your client must be able to process.</p>\n </important>\n </li>\n <li>\n <p>\n <code>COMPLETE</code> - Amazon Web Services Private CA maintains a single CRL file for all unexpired certificates issued by a CA that have been revoked for any reason.</p>\n </li>\n </ul>"
2011+
"smithy.api#documentation": "<p>Specifies whether to create a complete or partitioned CRL. This setting determines the maximum \n\t\tnumber of certificates that the certificate authority can issue and revoke. For more information, see\n\t\t<a href=\"privateca/latest/userguide/pca.html#limits_pca\">Amazon Web Services Private CA quotas</a>.</p>\n <ul>\n <li>\n <p>\n <code>COMPLETE</code> - The default setting. Amazon Web Services Private CA maintains a single CRL file for all unexpired \n\t\t\t\tcertificates issued by a CA that have been revoked for any reason. Each certificate that Amazon Web Services Private CA\n\t\t\tissues is bound to a specific CRL through its CRL distribution point (CDP) extension, defined in <a href=\"https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.9\">\n\t\t\t\tRFC 5280</a>.</p>\n </li>\n <li>\n <p>\n <code>PARTITIONED</code> - Compared to complete CRLs, partitioned CRLs\n\t\t\tdramatically increase the number of certificates your private CA can issue. </p>\n <important>\n <p> When using partitioned CRLs, you must validate that the CRL's associated\n\t\t\t\t\t\tissuing distribution point (IDP) URI matches the certificate's CDP URI to ensure\n\t\t\t\t\t\tthe right CRL has been fetched. Amazon Web Services Private CA marks the IDP extension as critical, \n\t\t\t\t\t\twhich your client must be able to process.\n\t\t\t\t\t</p>\n </important>\n </li>\n </ul>"
20122012
}
20132013
},
20142014
"CustomPath": {
20152015
"target": "com.amazonaws.acmpca#CrlPathString",
20162016
"traits": {
2017-
"smithy.api#documentation": "<p>Designates a custom file path in S3 for CRL(s). For example, <code>http://&lt;CustomName&gt;/&lt;CustomPath&gt;/&lt;CrlPartition_GUID&gt;.crl</code>. You can change the custom path up to five times.</p>"
2017+
"smithy.api#documentation": "<p>Designates a custom file path in S3 for CRL(s). For example, <code>http://&lt;CustomName&gt;/\n\t\t\t&lt;CustomPath&gt;/&lt;CrlPartition_GUID&gt;.crl</code>. \n\t\t</p>"
20182018
}
20192019
}
20202020
},

0 commit comments

Comments
 (0)