Skip to content

Commit

Permalink
Release v1.44.248 (2023-04-21) (#4810)
Browse files Browse the repository at this point in the history
Release v1.44.248 (2023-04-21)
===

### Service Client Updates
* `service/connect`: Updates service API and documentation
* `service/ecs`: Updates service documentation
  * Documentation update to address various Amazon ECS tickets.
* `service/fms`: Updates service API, documentation, and paginators
  • Loading branch information
aws-sdk-go-automation committed Apr 21, 2023
1 parent 42260bb commit f9284e3
Show file tree
Hide file tree
Showing 18 changed files with 3,291 additions and 1,307 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Release v1.44.248 (2023-04-21)
===

### Service Client Updates
* `service/connect`: Updates service API and documentation
* `service/ecs`: Updates service documentation
* Documentation update to address various Amazon ECS tickets.
* `service/fms`: Updates service API, documentation, and paginators

Release v1.44.247 (2023-04-20)
===

Expand Down
117 changes: 117 additions & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.44.247"
const SDKVersion = "1.44.248"
65 changes: 65 additions & 0 deletions models/apis/connect/2017-08-08/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,23 @@
{"shape":"ThrottlingException"}
]
},
"CreateParticipant":{
"name":"CreateParticipant",
"http":{
"method":"POST",
"requestUri":"/contact/create-participant"
},
"input":{"shape":"CreateParticipantRequest"},
"output":{"shape":"CreateParticipantResponse"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"InvalidParameterException"},
{"shape":"ResourceNotFoundException"},
{"shape":"InternalServiceException"},
{"shape":"ServiceQuotaExceededException"},
{"shape":"ThrottlingException"}
]
},
"CreateQueue":{
"name":"CreateQueue",
"http":{
Expand Down Expand Up @@ -3700,6 +3717,30 @@
"IntegrationAssociationArn":{"shape":"ARN"}
}
},
"CreateParticipantRequest":{
"type":"structure",
"required":[
"InstanceId",
"ContactId",
"ParticipantDetails"
],
"members":{
"InstanceId":{"shape":"InstanceId"},
"ContactId":{"shape":"ContactId"},
"ClientToken":{
"shape":"ClientToken",
"idempotencyToken":true
},
"ParticipantDetails":{"shape":"ParticipantDetailsToAdd"}
}
},
"CreateParticipantResponse":{
"type":"structure",
"members":{
"ParticipantCredentials":{"shape":"ParticipantTokenCredentials"},
"ParticipantId":{"shape":"ParticipantId"}
}
},
"CreateQueueRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -5788,6 +5829,7 @@
}
}
},
"ISO8601Datetime":{"type":"string"},
"IdempotencyException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -7332,11 +7374,27 @@
"DisplayName":{"shape":"DisplayName"}
}
},
"ParticipantDetailsToAdd":{
"type":"structure",
"members":{
"ParticipantRole":{"shape":"ParticipantRole"},
"DisplayName":{"shape":"DisplayName"}
}
},
"ParticipantId":{
"type":"string",
"max":256,
"min":1
},
"ParticipantRole":{
"type":"string",
"enum":[
"AGENT",
"CUSTOMER",
"SYSTEM",
"CUSTOM_BOT"
]
},
"ParticipantTimerAction":{
"type":"string",
"enum":["Unset"]
Expand Down Expand Up @@ -7385,6 +7443,13 @@
"max":1000,
"min":1
},
"ParticipantTokenCredentials":{
"type":"structure",
"members":{
"ParticipantToken":{"shape":"ParticipantToken"},
"Expiry":{"shape":"ISO8601Datetime"}
}
},
"Password":{
"type":"string",
"pattern":"/^(?=.*[a-z])(?=.*[A-Z])(?=.*\\d)[a-zA-Z\\d\\S]{8,64}$/"
Expand Down
Loading

0 comments on commit f9284e3

Please sign in to comment.