1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
)
// An Amazon Chime SDK meeting attendee. Includes a unique AttendeeId and JoinToken
// . The JoinToken allows a client to authenticate and join as the specified
// attendee. The JoinToken expires when the meeting ends, or when DeleteAttendee is called.
// After that, the attendee is unable to join the meeting.
//
// We recommend securely transferring each JoinToken from your server application
// to the client so that no other client has access to the token except for the one
// authorized to represent the attendee.
type Attendee struct {
// The Amazon Chime SDK attendee ID.
AttendeeId *string
// The capabilities assigned to an attendee: audio, video, or content.
//
// You use the capabilities with a set of values that control what the
// capabilities can do, such as SendReceive data. For more information about those
// values, see .
//
// When using capabilities, be aware of these corner cases:
//
// - If you specify MeetingFeatures:Video:MaxResolution:None when you create a
// meeting, all API requests that include SendReceive , Send , or Receive for
// AttendeeCapabilities:Video will be rejected with ValidationError 400 .
//
// - If you specify MeetingFeatures:Content:MaxResolution:None when you create a
// meeting, all API requests that include SendReceive , Send , or Receive for
// AttendeeCapabilities:Content will be rejected with ValidationError 400 .
//
// - You can't set content capabilities to SendReceive or Receive unless you also
// set video capabilities to SendReceive or Receive . If you don't set the video
// capability to receive, the response will contain an HTTP 400 Bad Request status
// code. However, you can set your video capability to receive and you set your
// content capability to not receive.
//
// - When you change an audio capability from None or Receive to Send or
// SendReceive , and if the attendee left their microphone unmuted, audio will
// flow from the attendee to the other meeting participants.
//
// - When you change a video or content capability from None or Receive to Send
// or SendReceive , and if the attendee turned on their video or content streams,
// remote attendees can receive those streams, but only after media renegotiation
// between the client and the Amazon Chime back-end server.
Capabilities *AttendeeCapabilities
// The Amazon Chime SDK external user ID. An idempotency token. Links the attendee
// to an identity managed by a builder application.
//
// Pattern: [-_&@+=,(){}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*
//
// Values that begin with aws: are reserved. You can't configure a value that uses
// this prefix. Case insensitive.
ExternalUserId *string
// The join token used by the Amazon Chime SDK attendee.
JoinToken *string
noSmithyDocumentSerde
}
// The media capabilities of an attendee: audio, video, or content.
//
// You use the capabilities with a set of values that control what the
// capabilities can do, such as SendReceive data. For more information, refer to
// and .
//
// When using capabilities, be aware of these corner cases:
//
// - If you specify MeetingFeatures:Video:MaxResolution:None when you create a
// meeting, all API requests that include SendReceive , Send , or Receive for
// AttendeeCapabilities:Video will be rejected with ValidationError 400 .
//
// - If you specify MeetingFeatures:Content:MaxResolution:None when you create a
// meeting, all API requests that include SendReceive , Send , or Receive for
// AttendeeCapabilities:Content will be rejected with ValidationError 400 .
//
// - You can't set content capabilities to SendReceive or Receive unless you also
// set video capabilities to SendReceive or Receive . If you don't set the video
// capability to receive, the response will contain an HTTP 400 Bad Request status
// code. However, you can set your video capability to receive and you set your
// content capability to not receive.
//
// - When you change an audio capability from None or Receive to Send or
// SendReceive , and an attendee unmutes their microphone, audio flows from the
// attendee to the other meeting participants.
//
// - When you change a video or content capability from None or Receive to Send
// or SendReceive , and the attendee turns on their video or content streams,
// remote attendees can receive those streams, but only after media renegotiation
// between the client and the Amazon Chime back-end server.
type AttendeeCapabilities struct {
// The audio capability assigned to an attendee.
//
// This member is required.
Audio MediaCapabilities
// The content capability assigned to an attendee.
//
// This member is required.
Content MediaCapabilities
// The video capability assigned to an attendee.
//
// This member is required.
Video MediaCapabilities
noSmithyDocumentSerde
}
// Lists the maximum number of attendees allowed into the meeting.
//
// If you specify FHD for MeetingFeatures:Video:MaxResolution , or if you specify
// UHD for MeetingFeatures:Content:MaxResolution , the maximum number of attendees
// changes from the default of 250 to 25 .
type AttendeeFeatures struct {
// The maximum number of attendees allowed into the meeting.
MaxCount *int32
noSmithyDocumentSerde
}
// A structure that contains one or more attendee IDs.
type AttendeeIdItem struct {
// A list of one or more attendee IDs.
//
// This member is required.
AttendeeId *string
noSmithyDocumentSerde
}
// An optional category of meeting features that contains audio-specific
// configurations, such as operating parameters for Amazon Voice Focus.
type AudioFeatures struct {
// Makes echo reduction available to clients who connect to the meeting.
EchoReduction MeetingFeatureStatus
noSmithyDocumentSerde
}
// Lists the content (screen share) features for the meeting. Applies to all
// attendees.
//
// If you specify MeetingFeatures:Content:MaxResolution:None when you create a
// meeting, all API requests that include SendReceive , Send , or Receive for
// AttendeeCapabilities:Content will be rejected with ValidationError 400 .
type ContentFeatures struct {
// The maximum resolution for the meeting content.
//
// Defaults to FHD . To use UHD , you must also provide a
// MeetingFeatures:Attendee:MaxCount value and override the default size limit of
// 250 attendees.
MaxResolution ContentResolution
noSmithyDocumentSerde
}
// The list of errors returned when errors are encountered during the
// BatchCreateAttendee and CreateAttendee actions. This includes external user IDs,
// error codes, and error messages.
type CreateAttendeeError struct {
// The error code.
ErrorCode *string
// The error message.
ErrorMessage *string
// The Amazon Chime SDK external user ID. An idempotency token. Links the attendee
// to an identity managed by a builder application.
//
// Pattern: [-_&@+=,(){}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*
//
// Values that begin with aws: are reserved. You can't configure a value that uses
// this prefix. Case insensitive.
ExternalUserId *string
noSmithyDocumentSerde
}
// The Amazon Chime SDK attendee fields to create, used with the
// BatchCreateAttendee action.
type CreateAttendeeRequestItem struct {
// The Amazon Chime SDK external user ID. An idempotency token. Links the attendee
// to an identity managed by a builder application.
//
// Pattern: [-_&@+=,(){}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*
//
// Values that begin with aws: are reserved. You can't configure a value that uses
// this prefix. Case insensitive.
//
// This member is required.
ExternalUserId *string
// A list of one or more capabilities.
Capabilities *AttendeeCapabilities
noSmithyDocumentSerde
}
// Settings specific to the Amazon Transcribe Medical engine.
type EngineTranscribeMedicalSettings struct {
// The language code specified for the Amazon Transcribe Medical engine.
//
// This member is required.
LanguageCode TranscribeMedicalLanguageCode
// The specialty specified for the Amazon Transcribe Medical engine.
//
// This member is required.
Specialty TranscribeMedicalSpecialty
// The type of transcription.
//
// This member is required.
Type TranscribeMedicalType
// Set this field to PHI to identify personal health information in the
// transcription output.
ContentIdentificationType TranscribeMedicalContentIdentificationType
// The Amazon Web Services Region passed to Amazon Transcribe Medical. If you
// don't specify a Region, Amazon Chime uses the meeting's Region.
Region TranscribeMedicalRegion
// The name of the vocabulary passed to Amazon Transcribe Medical.
VocabularyName *string
noSmithyDocumentSerde
}
// Settings specific for Amazon Transcribe as the live transcription engine.
//
// If you specify an invalid combination of parameters, a TranscriptFailed event
// will be sent with the contents of the BadRequestException generated by Amazon
// Transcribe. For more information on each parameter and which combinations are
// valid, refer to the [StartStreamTranscription]API in the Amazon Transcribe Developer Guide.
//
// [StartStreamTranscription]: https://docs.aws.amazon.com/transcribe/latest/APIReference/API_streaming_StartStreamTranscription.html
type EngineTranscribeSettings struct {
// Labels all personally identifiable information (PII) identified in your
// transcript. If you don't include PiiEntityTypes , all PII is identified.
//
// You can’t set ContentIdentificationType and ContentRedactionType .
ContentIdentificationType TranscribeContentIdentificationType
// Content redaction is performed at the segment level. If you don't include
// PiiEntityTypes , all PII is redacted.
//
// You can’t set ContentRedactionType and ContentIdentificationType .
ContentRedactionType TranscribeContentRedactionType
// Enables partial result stabilization for your transcription. Partial result
// stabilization can reduce latency in your output, but may impact accuracy.
EnablePartialResultsStabilization bool
// Enables automatic language identification for your transcription.
//
// If you include IdentifyLanguage , you can optionally use LanguageOptions to
// include a list of language codes that you think may be present in your audio
// stream. Including language options can improve transcription accuracy.
//
// You can also use PreferredLanguage to include a preferred language. Doing so
// can help Amazon Transcribe identify the language faster.
//
// You must include either LanguageCode or IdentifyLanguage .
//
// Language identification can't be combined with custom language models or
// redaction.
IdentifyLanguage bool
// Specify the language code that represents the language spoken.
//
// If you're unsure of the language spoken in your audio, consider using
// IdentifyLanguage to enable automatic language identification.
LanguageCode TranscribeLanguageCode
// Specify the name of the custom language model that you want to use when
// processing your transcription. Note that language model names are case
// sensitive.
//
// The language of the specified language model must match the language code. If
// the languages don't match, the custom language model isn't applied. There are no
// errors or warnings associated with a language mismatch.
//
// If you use Amazon Transcribe in multiple Regions, the custom language model
// must be available in Amazon Transcribe in each Region.
LanguageModelName *string
// Specify two or more language codes that represent the languages you think may
// be present in your media; including more than five is not recommended. If you're
// unsure what languages are present, do not include this parameter.
//
// Including language options can improve the accuracy of language identification.
//
// If you include LanguageOptions , you must also include IdentifyLanguage .
//
// You can only include one language dialect per language. For example, you cannot
// include en-US and en-AU .
LanguageOptions *string
// Specify the level of stability to use when you enable partial results
// stabilization ( EnablePartialResultsStabilization ).
//
// Low stability provides the highest accuracy. High stability transcribes faster,
// but with slightly lower accuracy.
PartialResultsStability TranscribePartialResultsStability
// Specify which types of personally identifiable information (PII) you want to
// redact in your transcript. You can include as many types as you'd like, or you
// can select ALL .
//
// Values must be comma-separated and can include: ADDRESS , BANK_ACCOUNT_NUMBER ,
// BANK_ROUTING , CREDIT_DEBIT_CVV , CREDIT_DEBIT_EXPIRY CREDIT_DEBIT_NUMBER ,
// EMAIL , NAME , PHONE , PIN , SSN , or ALL .
//
// Note that if you include PiiEntityTypes , you must also include
// ContentIdentificationType or ContentRedactionType .
//
// If you include ContentRedactionType or ContentIdentificationType , but do not
// include PiiEntityTypes, all PII is redacted or identified.
PiiEntityTypes *string
// Specify a preferred language from the subset of languages codes you specified
// in LanguageOptions .
//
// You can only use this parameter if you include IdentifyLanguage and
// LanguageOptions .
PreferredLanguage TranscribeLanguageCode
// The Amazon Web Services Region in which to use Amazon Transcribe.
//
// If you don't specify a Region, then the [MediaRegion] of the meeting is used. However, if
// Amazon Transcribe is not available in the MediaRegion , then a TranscriptFailed
// event is sent.
//
// Use auto to use Amazon Transcribe in a Region near the meeting’s MediaRegion .
// For more information, refer to [Choosing a transcription Region]in the Amazon Chime SDK Developer Guide.
//
// [Choosing a transcription Region]: https://docs.aws.amazon.com/chime-sdk/latest/dg/transcription-options.html#choose-region
// [MediaRegion]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_CreateMeeting.html
Region TranscribeRegion
// Specify how you want your vocabulary filter applied to your transcript.
//
// To replace words with *** , choose mask .
//
// To delete words, choose remove .
//
// To flag words without changing them, choose tag .
VocabularyFilterMethod TranscribeVocabularyFilterMethod
// Specify the name of the custom vocabulary filter that you want to use when
// processing your transcription. Note that vocabulary filter names are case
// sensitive.
//
// If you use Amazon Transcribe in multiple Regions, the vocabulary filter must be
// available in Amazon Transcribe in each Region.
//
// If you include IdentifyLanguage and want to use one or more vocabulary filters
// with your transcription, use the VocabularyFilterNames parameter instead.
VocabularyFilterName *string
// Specify the names of the custom vocabulary filters that you want to use when
// processing your transcription. Note that vocabulary filter names are case
// sensitive.
//
// If you use Amazon Transcribe in multiple Regions, the vocabulary filter must be
// available in Amazon Transcribe in each Region.
//
// If you're not including IdentifyLanguage and want to use a custom vocabulary
// filter with your transcription, use the VocabularyFilterName parameter instead.
VocabularyFilterNames *string
// Specify the name of the custom vocabulary that you want to use when processing
// your transcription. Note that vocabulary names are case sensitive.
//
// If you use Amazon Transcribe multiple Regions, the vocabulary must be available
// in Amazon Transcribe in each Region.
//
// If you include IdentifyLanguage and want to use one or more custom vocabularies
// with your transcription, use the VocabularyNames parameter instead.
VocabularyName *string
// Specify the names of the custom vocabularies that you want to use when
// processing your transcription. Note that vocabulary names are case sensitive.
//
// If you use Amazon Transcribe in multiple Regions, the vocabulary must be
// available in Amazon Transcribe in each Region.
//
// If you don't include IdentifyLanguage and want to use a custom vocabulary with
// your transcription, use the VocabularyName parameter instead.
VocabularyNames *string
noSmithyDocumentSerde
}
// A set of endpoints used by clients to connect to the media service group for an
// Amazon Chime SDK meeting.
type MediaPlacement struct {
// The audio fallback URL.
AudioFallbackUrl *string
// The audio host URL.
AudioHostUrl *string
// The event ingestion URL.
EventIngestionUrl *string
// The screen data URL.
//
// This parameter is deprecated and no longer used by the Amazon Chime SDK.
ScreenDataUrl *string
// The screen sharing URL.
//
// This parameter is deprecated and no longer used by the Amazon Chime SDK.
ScreenSharingUrl *string
// The screen viewing URL.
//
// This parameter is deprecated and no longer used by the Amazon Chime SDK.
ScreenViewingUrl *string
// The signaling URL.
SignalingUrl *string
// The turn control URL.
//
// This parameter is deprecated and no longer used by the Amazon Chime SDK.
TurnControlUrl *string
noSmithyDocumentSerde
}
// A meeting created using the Amazon Chime SDK.
type Meeting struct {
// The external meeting ID.
//
// Pattern: [-_&@+=,(){}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*
//
// Values that begin with aws: are reserved. You can't configure a value that uses
// this prefix. Case insensitive.
ExternalMeetingId *string
// The media placement for the meeting.
MediaPlacement *MediaPlacement
// The Region in which you create the meeting. Available values: af-south-1 ,
// ap-northeast-1 , ap-northeast-2 , ap-south-1 , ap-southeast-1 , ap-southeast-2 ,
// ca-central-1 , eu-central-1 , eu-north-1 , eu-south-1 , eu-west-1 , eu-west-2 ,
// eu-west-3 , sa-east-1 , us-east-1 , us-east-2 , us-west-1 , us-west-2 .
//
// Available values in Amazon Web Services GovCloud (US) Regions: us-gov-east-1 ,
// us-gov-west-1 .
MediaRegion *string
// The ARN of the meeting.
MeetingArn *string
// The features available to a meeting, such as echo reduction.
MeetingFeatures *MeetingFeaturesConfiguration
// Reserved.
MeetingHostId *string
// The Amazon Chime SDK meeting ID.
MeetingId *string
// When specified, replicates the media from the primary meeting to this meeting.
PrimaryMeetingId *string
// Array of strings.
TenantIds []string
noSmithyDocumentSerde
}
// The configuration settings of the features available to a meeting.
type MeetingFeaturesConfiguration struct {
// The configuration settings for the attendee features available to a meeting.
Attendee *AttendeeFeatures
// The configuration settings for the audio features available to a meeting.
Audio *AudioFeatures
// The configuration settings for the content features available to a meeting.
Content *ContentFeatures
// The configuration settings for the video features available to a meeting.
Video *VideoFeatures
noSmithyDocumentSerde
}
// The configuration for resource targets to receive notifications when meeting
// and attendee events occur.
type NotificationsConfiguration struct {
// The ARN of the Amazon Web Services Lambda function in the notifications
// configuration.
LambdaFunctionArn *string
// The ARN of the SNS topic.
SnsTopicArn *string
// The ARN of the SQS queue.
SqsQueueArn *string
noSmithyDocumentSerde
}
// A key-value pair that you define.
type Tag struct {
// The tag's key.
//
// This member is required.
Key *string
// The tag's value.
//
// This member is required.
Value *string
noSmithyDocumentSerde
}
// The configuration for the current transcription operation. Must contain
// EngineTranscribeSettings or EngineTranscribeMedicalSettings .
type TranscriptionConfiguration struct {
// The transcription configuration settings passed to Amazon Transcribe Medical.
EngineTranscribeMedicalSettings *EngineTranscribeMedicalSettings
// The transcription configuration settings passed to Amazon Transcribe.
EngineTranscribeSettings *EngineTranscribeSettings
noSmithyDocumentSerde
}
// The video features set for the meeting. Applies to all attendees.
//
// If you specify MeetingFeatures:Video:MaxResolution:None when you create a
// meeting, all API requests that include SendReceive , Send , or Receive for
// AttendeeCapabilities:Video will be rejected with ValidationError 400 .
type VideoFeatures struct {
// The maximum video resolution for the meeting. Applies to all attendees.
//
// Defaults to HD . To use FHD , you must also provide a
// MeetingFeatures:Attendee:MaxCount value and override the default size limit of
// 250 attendees.
MaxResolution VideoResolution
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|