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

Commit 11faec0

Browse files
Release v1.44.226 (2023-03-21) (#4768)
Release v1.44.226 (2023-03-21) === ### Service Client Updates * `service/chime-sdk-messaging`: Updates service API and documentation * `service/cleanrooms`: Updates service API and documentation * `service/ec2`: Updates service API and documentation * This release adds support for AWS Network Firewall, AWS PrivateLink, and Gateway Load Balancers to Amazon VPC Reachability Analyzer, and it makes the path destination optional as long as a destination address in the filter at source is provided. * `service/iotsitewise`: Updates service API and documentation * `service/mgn`: Updates service API, documentation, and paginators
1 parent dce5731 commit 11faec0

File tree

32 files changed

+11765
-6019
lines changed

32 files changed

+11765
-6019
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Release v1.44.226 (2023-03-21)
2+
===
3+
4+
### Service Client Updates
5+
* `service/chime-sdk-messaging`: Updates service API and documentation
6+
* `service/cleanrooms`: Updates service API and documentation
7+
* `service/ec2`: Updates service API and documentation
8+
* This release adds support for AWS Network Firewall, AWS PrivateLink, and Gateway Load Balancers to Amazon VPC Reachability Analyzer, and it makes the path destination optional as long as a destination address in the filter at source is provided.
9+
* `service/iotsitewise`: Updates service API and documentation
10+
* `service/mgn`: Updates service API, documentation, and paginators
11+
112
Release v1.44.225 (2023-03-20)
213
===
314

aws/endpoints/defaults.go

Lines changed: 121 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.225"
8+
const SDKVersion = "1.44.226"

models/apis/chime-sdk-messaging/2021-05-15/api-2.json

Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,22 @@
274274
{"shape":"ServiceFailureException"}
275275
]
276276
},
277+
"DeleteMessagingStreamingConfigurations":{
278+
"name":"DeleteMessagingStreamingConfigurations",
279+
"http":{
280+
"method":"DELETE",
281+
"requestUri":"/app-instances/{appInstanceArn}/streaming-configurations",
282+
"responseCode":204
283+
},
284+
"input":{"shape":"DeleteMessagingStreamingConfigurationsRequest"},
285+
"errors":[
286+
{"shape":"ForbiddenException"},
287+
{"shape":"UnauthorizedClientException"},
288+
{"shape":"ThrottledClientException"},
289+
{"shape":"ServiceUnavailableException"},
290+
{"shape":"ServiceFailureException"}
291+
]
292+
},
277293
"DescribeChannel":{
278294
"name":"DescribeChannel",
279295
"http":{
@@ -494,6 +510,25 @@
494510
{"shape":"ServiceFailureException"}
495511
]
496512
},
513+
"GetMessagingStreamingConfigurations":{
514+
"name":"GetMessagingStreamingConfigurations",
515+
"http":{
516+
"method":"GET",
517+
"requestUri":"/app-instances/{appInstanceArn}/streaming-configurations",
518+
"responseCode":200
519+
},
520+
"input":{"shape":"GetMessagingStreamingConfigurationsRequest"},
521+
"output":{"shape":"GetMessagingStreamingConfigurationsResponse"},
522+
"errors":[
523+
{"shape":"BadRequestException"},
524+
{"shape":"ForbiddenException"},
525+
{"shape":"NotFoundException"},
526+
{"shape":"UnauthorizedClientException"},
527+
{"shape":"ThrottledClientException"},
528+
{"shape":"ServiceUnavailableException"},
529+
{"shape":"ServiceFailureException"}
530+
]
531+
},
497532
"ListChannelBans":{
498533
"name":"ListChannelBans",
499534
"http":{
@@ -711,6 +746,26 @@
711746
{"shape":"ServiceFailureException"}
712747
]
713748
},
749+
"PutMessagingStreamingConfigurations":{
750+
"name":"PutMessagingStreamingConfigurations",
751+
"http":{
752+
"method":"PUT",
753+
"requestUri":"/app-instances/{appInstanceArn}/streaming-configurations",
754+
"responseCode":200
755+
},
756+
"input":{"shape":"PutMessagingStreamingConfigurationsRequest"},
757+
"output":{"shape":"PutMessagingStreamingConfigurationsResponse"},
758+
"errors":[
759+
{"shape":"NotFoundException"},
760+
{"shape":"BadRequestException"},
761+
{"shape":"ForbiddenException"},
762+
{"shape":"UnauthorizedClientException"},
763+
{"shape":"ThrottledClientException"},
764+
{"shape":"ConflictException"},
765+
{"shape":"ServiceUnavailableException"},
766+
{"shape":"ServiceFailureException"}
767+
]
768+
},
714769
"RedactChannelMessage":{
715770
"name":"RedactChannelMessage",
716771
"http":{
@@ -1611,6 +1666,17 @@
16111666
}
16121667
}
16131668
},
1669+
"DeleteMessagingStreamingConfigurationsRequest":{
1670+
"type":"structure",
1671+
"required":["AppInstanceArn"],
1672+
"members":{
1673+
"AppInstanceArn":{
1674+
"shape":"ChimeArn",
1675+
"location":"uri",
1676+
"locationName":"appInstanceArn"
1677+
}
1678+
}
1679+
},
16141680
"DescribeChannelBanRequest":{
16151681
"type":"structure",
16161682
"required":[
@@ -2009,6 +2075,23 @@
20092075
"Endpoint":{"shape":"MessagingSessionEndpoint"}
20102076
}
20112077
},
2078+
"GetMessagingStreamingConfigurationsRequest":{
2079+
"type":"structure",
2080+
"required":["AppInstanceArn"],
2081+
"members":{
2082+
"AppInstanceArn":{
2083+
"shape":"ChimeArn",
2084+
"location":"uri",
2085+
"locationName":"appInstanceArn"
2086+
}
2087+
}
2088+
},
2089+
"GetMessagingStreamingConfigurationsResponse":{
2090+
"type":"structure",
2091+
"members":{
2092+
"StreamingConfigurations":{"shape":"StreamingConfigurationList"}
2093+
}
2094+
},
20122095
"Identity":{
20132096
"type":"structure",
20142097
"members":{
@@ -2488,6 +2571,13 @@
24882571
"min":1,
24892572
"pattern":"[-_a-zA-Z0-9]*"
24902573
},
2574+
"MessagingDataType":{
2575+
"type":"string",
2576+
"enum":[
2577+
"Channel",
2578+
"ChannelMessage"
2579+
]
2580+
},
24912581
"MessagingSessionEndpoint":{
24922582
"type":"structure",
24932583
"members":{
@@ -2636,6 +2726,27 @@
26362726
"Preferences":{"shape":"ChannelMembershipPreferences"}
26372727
}
26382728
},
2729+
"PutMessagingStreamingConfigurationsRequest":{
2730+
"type":"structure",
2731+
"required":[
2732+
"AppInstanceArn",
2733+
"StreamingConfigurations"
2734+
],
2735+
"members":{
2736+
"AppInstanceArn":{
2737+
"shape":"ChimeArn",
2738+
"location":"uri",
2739+
"locationName":"appInstanceArn"
2740+
},
2741+
"StreamingConfigurations":{"shape":"StreamingConfigurationList"}
2742+
}
2743+
},
2744+
"PutMessagingStreamingConfigurationsResponse":{
2745+
"type":"structure",
2746+
"members":{
2747+
"StreamingConfigurations":{"shape":"StreamingConfigurationList"}
2748+
}
2749+
},
26392750
"RedactChannelMessageRequest":{
26402751
"type":"structure",
26412752
"required":[
@@ -2833,6 +2944,23 @@
28332944
"min":0,
28342945
"pattern":"[\\s\\S]*"
28352946
},
2947+
"StreamingConfiguration":{
2948+
"type":"structure",
2949+
"required":[
2950+
"DataType",
2951+
"ResourceArn"
2952+
],
2953+
"members":{
2954+
"DataType":{"shape":"MessagingDataType"},
2955+
"ResourceArn":{"shape":"ChimeArn"}
2956+
}
2957+
},
2958+
"StreamingConfigurationList":{
2959+
"type":"list",
2960+
"member":{"shape":"StreamingConfiguration"},
2961+
"max":2,
2962+
"min":1
2963+
},
28362964
"String":{"type":"string"},
28372965
"SubChannelId":{
28382966
"type":"string",

0 commit comments

Comments
 (0)