Skip to content
This repository was archived by the owner on Jul 31, 2025. It is now read-only.

Commit 64a5c0b

Browse files
Release v1.44.123 (2022-10-25) (#4600)
Release v1.44.123 (2022-10-25) === ### Service Client Updates * `service/accessanalyzer`: Updates service API and documentation * `service/location`: Updates service documentation * `service/mediatailor`: Updates service API, documentation, paginators, and examples * `service/rds`: Updates service API, documentation, waiters, paginators, and examples * Relational Database Service - This release adds support for exporting DB cluster data to Amazon S3. * `service/workspaces`: Updates service API and documentation * This release adds new enums for supporting Workspaces Core features, including creating Manual running mode workspaces, importing regular Workspaces Core images and importing g4dn Workspaces Core images.
1 parent 04a8b0e commit 64a5c0b

File tree

30 files changed

+11582
-3546
lines changed

30 files changed

+11582
-3546
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
Release v1.44.123 (2022-10-25)
2+
===
3+
4+
### Service Client Updates
5+
* `service/accessanalyzer`: Updates service API and documentation
6+
* `service/location`: Updates service documentation
7+
* `service/mediatailor`: Updates service API, documentation, paginators, and examples
8+
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
9+
* Relational Database Service - This release adds support for exporting DB cluster data to Amazon S3.
10+
* `service/workspaces`: Updates service API and documentation
11+
* This release adds new enums for supporting Workspaces Core features, including creating Manual running mode workspaces, importing regular Workspaces Core images and importing g4dn Workspaces Core images.
12+
113
Release v1.44.122 (2022-10-24)
214
===
315

aws/endpoints/defaults.go

Lines changed: 27 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aws/version.go

Lines changed: 1 addition & 1 deletion
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.44.122"
8+
const SDKVersion = "1.44.123"

models/apis/accessanalyzer/2019-11-01/api-2.json

Lines changed: 115 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -807,10 +807,16 @@
807807
"Configuration":{
808808
"type":"structure",
809809
"members":{
810+
"ebsSnapshot":{"shape":"EbsSnapshotConfiguration"},
811+
"ecrRepository":{"shape":"EcrRepositoryConfiguration"},
810812
"iamRole":{"shape":"IamRoleConfiguration"},
813+
"efsFileSystem":{"shape":"EfsFileSystemConfiguration"},
811814
"kmsKey":{"shape":"KmsKeyConfiguration"},
815+
"rdsDbClusterSnapshot":{"shape":"RdsDbClusterSnapshotConfiguration"},
816+
"rdsDbSnapshot":{"shape":"RdsDbSnapshotConfiguration"},
812817
"secretsManagerSecret":{"shape":"SecretsManagerSecretConfiguration"},
813818
"s3Bucket":{"shape":"S3BucketConfiguration"},
819+
"snsTopic":{"shape":"SnsTopicConfiguration"},
814820
"sqsQueue":{"shape":"SqsQueueConfiguration"}
815821
},
816822
"union":true
@@ -956,6 +962,39 @@
956962
}
957963
}
958964
},
965+
"EbsGroup":{"type":"string"},
966+
"EbsGroupList":{
967+
"type":"list",
968+
"member":{"shape":"EbsGroup"}
969+
},
970+
"EbsSnapshotConfiguration":{
971+
"type":"structure",
972+
"members":{
973+
"userIds":{"shape":"EbsUserIdList"},
974+
"groups":{"shape":"EbsGroupList"},
975+
"kmsKeyId":{"shape":"EbsSnapshotDataEncryptionKeyId"}
976+
}
977+
},
978+
"EbsSnapshotDataEncryptionKeyId":{"type":"string"},
979+
"EbsUserId":{"type":"string"},
980+
"EbsUserIdList":{
981+
"type":"list",
982+
"member":{"shape":"EbsUserId"}
983+
},
984+
"EcrRepositoryConfiguration":{
985+
"type":"structure",
986+
"members":{
987+
"repositoryPolicy":{"shape":"EcrRepositoryPolicy"}
988+
}
989+
},
990+
"EcrRepositoryPolicy":{"type":"string"},
991+
"EfsFileSystemConfiguration":{
992+
"type":"structure",
993+
"members":{
994+
"fileSystemPolicy":{"shape":"EfsFileSystemPolicy"}
995+
}
996+
},
997+
"EfsFileSystemPolicy":{"type":"string"},
959998
"FilterCriteriaMap":{
960999
"type":"map",
9611000
"key":{"shape":"String"},
@@ -1675,7 +1714,10 @@
16751714
"PathElement":{
16761715
"type":"structure",
16771716
"members":{
1678-
"index":{"shape":"Integer"},
1717+
"index":{
1718+
"shape":"Integer",
1719+
"box":true
1720+
},
16791721
"key":{"shape":"String"},
16801722
"substring":{"shape":"Substring"},
16811723
"value":{"shape":"String"}
@@ -1745,6 +1787,58 @@
17451787
"key":{"shape":"String"},
17461788
"value":{"shape":"String"}
17471789
},
1790+
"RdsDbClusterSnapshotAccountId":{"type":"string"},
1791+
"RdsDbClusterSnapshotAccountIdsList":{
1792+
"type":"list",
1793+
"member":{"shape":"RdsDbClusterSnapshotAccountId"}
1794+
},
1795+
"RdsDbClusterSnapshotAttributeName":{"type":"string"},
1796+
"RdsDbClusterSnapshotAttributeValue":{
1797+
"type":"structure",
1798+
"members":{
1799+
"accountIds":{"shape":"RdsDbClusterSnapshotAccountIdsList"}
1800+
},
1801+
"union":true
1802+
},
1803+
"RdsDbClusterSnapshotAttributesMap":{
1804+
"type":"map",
1805+
"key":{"shape":"RdsDbClusterSnapshotAttributeName"},
1806+
"value":{"shape":"RdsDbClusterSnapshotAttributeValue"}
1807+
},
1808+
"RdsDbClusterSnapshotConfiguration":{
1809+
"type":"structure",
1810+
"members":{
1811+
"attributes":{"shape":"RdsDbClusterSnapshotAttributesMap"},
1812+
"kmsKeyId":{"shape":"RdsDbClusterSnapshotKmsKeyId"}
1813+
}
1814+
},
1815+
"RdsDbClusterSnapshotKmsKeyId":{"type":"string"},
1816+
"RdsDbSnapshotAccountId":{"type":"string"},
1817+
"RdsDbSnapshotAccountIdsList":{
1818+
"type":"list",
1819+
"member":{"shape":"RdsDbSnapshotAccountId"}
1820+
},
1821+
"RdsDbSnapshotAttributeName":{"type":"string"},
1822+
"RdsDbSnapshotAttributeValue":{
1823+
"type":"structure",
1824+
"members":{
1825+
"accountIds":{"shape":"RdsDbSnapshotAccountIdsList"}
1826+
},
1827+
"union":true
1828+
},
1829+
"RdsDbSnapshotAttributesMap":{
1830+
"type":"map",
1831+
"key":{"shape":"RdsDbSnapshotAttributeName"},
1832+
"value":{"shape":"RdsDbSnapshotAttributeValue"}
1833+
},
1834+
"RdsDbSnapshotConfiguration":{
1835+
"type":"structure",
1836+
"members":{
1837+
"attributes":{"shape":"RdsDbSnapshotAttributesMap"},
1838+
"kmsKeyId":{"shape":"RdsDbSnapshotKmsKeyId"}
1839+
}
1840+
},
1841+
"RdsDbSnapshotKmsKeyId":{"type":"string"},
17481842
"ReasonCode":{
17491843
"type":"string",
17501844
"enum":[
@@ -1789,7 +1883,13 @@
17891883
"AWS::Lambda::Function",
17901884
"AWS::Lambda::LayerVersion",
17911885
"AWS::KMS::Key",
1792-
"AWS::SecretsManager::Secret"
1886+
"AWS::SecretsManager::Secret",
1887+
"AWS::EFS::FileSystem",
1888+
"AWS::EC2::Snapshot",
1889+
"AWS::ECR::Repository",
1890+
"AWS::RDS::DBSnapshot",
1891+
"AWS::RDS::DBClusterSnapshot",
1892+
"AWS::SNS::Topic"
17931893
]
17941894
},
17951895
"RetiringPrincipal":{"type":"string"},
@@ -1877,6 +1977,17 @@
18771977
"type":"list",
18781978
"member":{"shape":"String"}
18791979
},
1980+
"SnsTopicConfiguration":{
1981+
"type":"structure",
1982+
"members":{
1983+
"topicPolicy":{"shape":"SnsTopicPolicy"}
1984+
}
1985+
},
1986+
"SnsTopicPolicy":{
1987+
"type":"string",
1988+
"max":30720,
1989+
"min":0
1990+
},
18801991
"SortCriteria":{
18811992
"type":"structure",
18821993
"members":{
@@ -1929,7 +2040,8 @@
19292040
],
19302041
"members":{
19312042
"analyzerArn":{"shape":"AnalyzerArn"},
1932-
"resourceArn":{"shape":"ResourceArn"}
2043+
"resourceArn":{"shape":"ResourceArn"},
2044+
"resourceOwnerAccount":{"shape":"String"}
19332045
}
19342046
},
19352047
"StatusReason":{

0 commit comments

Comments
 (0)