Skip to content

Commit fb6245c

Browse files
author
awstools
committed
feat(client-ivs-realtime): Bug Fix: IVS Real Time does not support ARNs using the svs prefix.
1 parent b73ebff commit fb6245c

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

clients/client-ivs-realtime/src/commands/UpdateStageCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@ export interface UpdateStageCommandOutput extends UpdateStageResponse, __Metadat
6262
* @throws {@link AccessDeniedException} (client fault)
6363
* <p/>
6464
*
65+
* @throws {@link ConflictException} (client fault)
66+
* <p/>
67+
*
6568
* @throws {@link PendingVerification} (client fault)
6669
* <p/>
6770
*

codegen/sdk-codegen/aws-models/ivs-realtime.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@
828828
"min": 1,
829829
"max": 128
830830
},
831-
"smithy.api#pattern": "^arn:aws:[is]vs:[a-z0-9-]+:[0-9]+:channel/[a-zA-Z0-9-]+$"
831+
"smithy.api#pattern": "^arn:aws:ivs:[a-z0-9-]+:[0-9]+:channel/[a-zA-Z0-9-]+$"
832832
}
833833
},
834834
"com.amazonaws.ivsrealtime#ChannelDestinationConfiguration": {
@@ -3731,7 +3731,7 @@
37313731
"min": 1,
37323732
"max": 128
37333733
},
3734-
"smithy.api#pattern": "^arn:aws:[is]vs:[a-z0-9-]+:[0-9]+:[a-z-]/[a-zA-Z0-9-]+$"
3734+
"smithy.api#pattern": "^arn:aws:ivs:[a-z0-9-]+:[0-9]+:[a-z-]/[a-zA-Z0-9-]+$"
37353735
}
37363736
},
37373737
"com.amazonaws.ivsrealtime#ResourceNotFoundException": {
@@ -4407,6 +4407,9 @@
44074407
{
44084408
"target": "com.amazonaws.ivsrealtime#AccessDeniedException"
44094409
},
4410+
{
4411+
"target": "com.amazonaws.ivsrealtime#ConflictException"
4412+
},
44104413
{
44114414
"target": "com.amazonaws.ivsrealtime#PendingVerification"
44124415
},

0 commit comments

Comments
 (0)