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 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// Defines the configuration for an ActiveSpeakerOnly video tile.
type ActiveSpeakerOnlyConfiguration struct {
// The position of the ActiveSpeakerOnly video tile.
ActiveSpeakerPosition ActiveSpeakerPosition
noSmithyDocumentSerde
}
// A structure that contains the configuration settings for an Amazon Transcribe
// call analytics processor.
type AmazonTranscribeCallAnalyticsProcessorConfiguration struct {
// The language code in the configuration.
//
// This member is required.
LanguageCode CallAnalyticsLanguageCode
// By default, all CategoryEvents are sent to the insights target. If this
// parameter is specified, only included categories are sent to the insights
// target.
CallAnalyticsStreamCategories []string
// Labels all personally identifiable information (PII) identified in your
// transcript. Content identification is performed at the segment level; PII
// specified in PiiEntityTypes is flagged upon complete transcription of an audio
// segment. You can’t set ContentIdentificationType and ContentRedactionType in
// the same request. If you do, your request returns a BadRequestException . For
// more information, see Redacting or identifying personally identifiable
// information (https://docs.aws.amazon.com/transcribe/latest/dg/pii-redaction.html)
// in the Amazon Transcribe Developer Guide.
ContentIdentificationType ContentType
// Redacts all personally identifiable information (PII) identified in your
// transcript. Content redaction is performed at the segment level; PII specified
// in PiiEntityTypes is redacted upon complete transcription of an audio segment.
// You can’t set ContentRedactionType and ContentIdentificationType in the same
// request. If you do, your request returns a BadRequestException . For more
// information, see Redacting or identifying personally identifiable information (https://docs.aws.amazon.com/transcribe/latest/dg/pii-redaction.html)
// in the Amazon Transcribe Developer Guide.
ContentRedactionType ContentType
// Enables partial result stabilization for your transcription. Partial result
// stabilization can reduce latency in your output, but may impact accuracy. For
// more information, see Partial-result stabilization (https://docs.aws.amazon.com/transcribe/latest/dg/streaming.html#streaming-partial-result-stabilization)
// in the Amazon Transcribe Developer Guide.
EnablePartialResultsStabilization bool
// If true, UtteranceEvents with IsPartial: true are filtered out of the insights
// target.
FilterPartialResults bool
// Specifies the name of the custom language model to use when processing a
// transcription. Note that language model names are case sensitive. The language
// of the specified language model must match the language code specified in the
// transcription request. If the languages don't match, the custom language model
// isn't applied. Language mismatches don't generate errors or warnings. For more
// information, see Custom language models (https://docs.aws.amazon.com/transcribe/latest/dg/custom-language-models.html)
// in the Amazon Transcribe Developer Guide.
LanguageModelName *string
// Specifies 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. For more information, see Partial-result stabilization (https://docs.aws.amazon.com/transcribe/latest/dg/streaming.html#streaming-partial-result-stabilization)
// in the Amazon Transcribe Developer Guide.
PartialResultsStability PartialResultsStability
// Specifies the types of personally identifiable information (PII) to redact from
// a transcript. You can include as many types as you'd like, or you can select ALL
// . To include PiiEntityTypes in your Call Analytics request, you must also
// include ContentIdentificationType or ContentRedactionType , but you can't
// include both. 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 . Length
// Constraints: Minimum length of 1. Maximum length of 300.
PiiEntityTypes *string
// The settings for a post-call analysis task in an analytics configuration.
PostCallAnalyticsSettings *PostCallAnalyticsSettings
// Specifies how to apply a vocabulary filter to a transcript. To replace words
// with ***, choose mask . To delete words, choose remove . To flag words without
// changing them, choose tag .
VocabularyFilterMethod VocabularyFilterMethod
// Specifies the name of the custom vocabulary filter to use when processing a
// transcription. Note that vocabulary filter names are case sensitive. If the
// language of the specified custom vocabulary filter doesn't match the language
// identified in your media, the vocabulary filter is not applied to your
// transcription. For more information, see Using vocabulary filtering with
// unwanted words (https://docs.aws.amazon.com/transcribe/latest/dg/vocabulary-filtering.html)
// in the Amazon Transcribe Developer Guide. Length Constraints: Minimum length of
// 1. Maximum length of 200.
VocabularyFilterName *string
// Specifies the name of the custom vocabulary to use when processing a
// transcription. Note that vocabulary names are case sensitive. If the language of
// the specified custom vocabulary doesn't match the language identified in your
// media, the custom vocabulary is not applied to your transcription. For more
// information, see Custom vocabularies (https://docs.aws.amazon.com/transcribe/latest/dg/custom-vocabulary.html)
// in the Amazon Transcribe Developer Guide. Length Constraints: Minimum length of
// 1. Maximum length of 200.
VocabularyName *string
noSmithyDocumentSerde
}
// A structure that contains the configuration settings for an Amazon Transcribe
// processor.
type AmazonTranscribeProcessorConfiguration struct {
// Labels all personally identifiable information (PII) identified in your
// transcript. Content identification is performed at the segment level; PII
// specified in PiiEntityTypes is flagged upon complete transcription of an audio
// segment. You can’t set ContentIdentificationType and ContentRedactionType in
// the same request. If you set both, your request returns a BadRequestException .
// For more information, see Redacting or identifying personally identifiable
// information (https://docs.aws.amazon.com/transcribe/latest/dg/pii-redaction.html)
// in the Amazon Transcribe Developer Guide.
ContentIdentificationType ContentType
// Redacts all personally identifiable information (PII) identified in your
// transcript. Content redaction is performed at the segment level; PII specified
// in PiiEntityTypes is redacted upon complete transcription of an audio segment.
// You can’t set ContentRedactionType and ContentIdentificationType in the same
// request. If you set both, your request returns a BadRequestException . For more
// information, see Redacting or identifying personally identifiable information (https://docs.aws.amazon.com/transcribe/latest/dg/pii-redaction.html)
// in the Amazon Transcribe Developer Guide.
ContentRedactionType ContentType
// Enables partial result stabilization for your transcription. Partial result
// stabilization can reduce latency in your output, but may impact accuracy. For
// more information, see Partial-result stabilization (https://docs.aws.amazon.com/transcribe/latest/dg/streaming.html#streaming-partial-result-stabilization)
// in the Amazon Transcribe Developer Guide.
EnablePartialResultsStabilization bool
// If true, TranscriptEvents with IsPartial: true are filtered out of the insights
// target.
FilterPartialResults bool
// Turns language identification on or off.
IdentifyLanguage bool
// The language code that represents the language spoken in your audio. If you're
// unsure of the language spoken in your audio, consider using IdentifyLanguage to
// enable automatic language identification. For a list of languages that real-time
// Call Analytics supports, see the Supported languages table (https://docs.aws.amazon.com/transcribe/latest/dg/supported-languages.html)
// in the Amazon Transcribe Developer Guide.
LanguageCode CallAnalyticsLanguageCode
// 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 you specify in your
// transcription request. If the languages don't match, the custom language model
// isn't applied. There are no errors or warnings associated with a language
// mismatch. For more information, see Custom language models (https://docs.aws.amazon.com/transcribe/latest/dg/custom-language-models.html)
// in the Amazon Transcribe Developer Guide.
LanguageModelName *string
// The language options for the transcription, such as automatic language
// detection.
LanguageOptions *string
// 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.
// For more information, see Partial-result stabilization (https://docs.aws.amazon.com/transcribe/latest/dg/streaming.html#streaming-partial-result-stabilization)
// in the Amazon Transcribe Developer Guide.
PartialResultsStability PartialResultsStability
// The types of personally identifiable information (PII) to redact from a
// transcript. You can include as many types as you'd like, or you can select ALL .
// To include PiiEntityTypes in your Call Analytics request, you must also include
// ContentIdentificationType or ContentRedactionType , but you can't include both.
// 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 . If you leave this parameter empty,
// the default behavior is equivalent to ALL .
PiiEntityTypes *string
// The preferred language for the transcription.
PreferredLanguage CallAnalyticsLanguageCode
// Enables speaker partitioning (diarization) in your transcription output.
// Speaker partitioning labels the speech from individual speakers in your media
// file. For more information, see Partitioning speakers (diarization) (https://docs.aws.amazon.com/transcribe/latest/dg/diarization.html)
// in the Amazon Transcribe Developer Guide.
ShowSpeakerLabel bool
// The vocabulary filtering method used in your Call Analytics transcription.
VocabularyFilterMethod VocabularyFilterMethod
// The name of the custom vocabulary filter that you specified in your Call
// Analytics request. Length Constraints: Minimum length of 1. Maximum length of
// 200.
VocabularyFilterName *string
// The names of the custom vocabulary filter or filters using during transcription.
VocabularyFilterNames *string
// The name of the custom vocabulary that you specified in your Call Analytics
// request. Length Constraints: Minimum length of 1. Maximum length of 200.
VocabularyName *string
// The names of the custom vocabulary or vocabularies used during transcription.
VocabularyNames *string
noSmithyDocumentSerde
}
// The configuration for the artifacts concatenation.
type ArtifactsConcatenationConfiguration struct {
// The configuration for the audio artifacts concatenation.
//
// This member is required.
Audio *AudioConcatenationConfiguration
// The configuration for the composited video artifacts concatenation.
//
// This member is required.
CompositedVideo *CompositedVideoConcatenationConfiguration
// The configuration for the content artifacts concatenation.
//
// This member is required.
Content *ContentConcatenationConfiguration
// The configuration for the data channel artifacts concatenation.
//
// This member is required.
DataChannel *DataChannelConcatenationConfiguration
// The configuration for the meeting events artifacts concatenation.
//
// This member is required.
MeetingEvents *MeetingEventsConcatenationConfiguration
// The configuration for the transcription messages artifacts concatenation.
//
// This member is required.
TranscriptionMessages *TranscriptionMessagesConcatenationConfiguration
// The configuration for the video artifacts concatenation.
//
// This member is required.
Video *VideoConcatenationConfiguration
noSmithyDocumentSerde
}
// The configuration for the artifacts.
type ArtifactsConfiguration struct {
// The configuration for the audio artifacts.
//
// This member is required.
Audio *AudioArtifactsConfiguration
// The configuration for the content artifacts.
//
// This member is required.
Content *ContentArtifactsConfiguration
// The configuration for the video artifacts.
//
// This member is required.
Video *VideoArtifactsConfiguration
// Enables video compositing.
CompositedVideo *CompositedVideoArtifactsConfiguration
noSmithyDocumentSerde
}
// The audio artifact configuration object.
type AudioArtifactsConfiguration struct {
// The MUX type of the audio artifact configuration object.
//
// This member is required.
MuxType AudioMuxType
noSmithyDocumentSerde
}
// The audio artifact concatenation configuration object.
type AudioConcatenationConfiguration struct {
// Enables or disables the configuration object.
//
// This member is required.
State AudioArtifactsConcatenationState
noSmithyDocumentSerde
}
// Defines an audio channel in a Kinesis video stream.
type ChannelDefinition struct {
// The channel ID.
//
// This member is required.
ChannelId int32
// Specifies whether the audio in a channel belongs to the AGENT or CUSTOMER .
ParticipantRole ParticipantRole
noSmithyDocumentSerde
}
// The configuration object of the Amazon Chime SDK meeting concatenation for a
// specified media pipeline.
type ChimeSdkMeetingConcatenationConfiguration struct {
// The configuration for the artifacts in an Amazon Chime SDK meeting
// concatenation.
//
// This member is required.
ArtifactsConfiguration *ArtifactsConcatenationConfiguration
noSmithyDocumentSerde
}
// The configuration object of the Amazon Chime SDK meeting for a specified media
// pipeline. SourceType must be ChimeSdkMeeting .
type ChimeSdkMeetingConfiguration struct {
// The configuration for the artifacts in an Amazon Chime SDK meeting.
ArtifactsConfiguration *ArtifactsConfiguration
// The source configuration for a specified media pipeline.
SourceConfiguration *SourceConfiguration
noSmithyDocumentSerde
}
// The media pipeline's configuration object.
type ChimeSdkMeetingLiveConnectorConfiguration struct {
// The configuration object's Chime SDK meeting ARN.
//
// This member is required.
Arn *string
// The configuration object's multiplex type.
//
// This member is required.
MuxType LiveConnectorMuxType
// The media pipeline's composited video.
CompositedVideo *CompositedVideoArtifactsConfiguration
// The source configuration settings of the media pipeline's configuration object.
SourceConfiguration *SourceConfiguration
noSmithyDocumentSerde
}
// Specifies the configuration for compositing video artifacts.
type CompositedVideoArtifactsConfiguration struct {
// The GridView configuration setting.
//
// This member is required.
GridViewConfiguration *GridViewConfiguration
// The layout setting, such as GridView in the configuration object.
Layout LayoutOption
// The video resolution setting in the configuration object. Default: HD at 1280 x
// 720. FHD resolution: 1920 x 1080.
Resolution ResolutionOption
noSmithyDocumentSerde
}
// The composited video configuration object for a specified media pipeline.
// SourceType must be ChimeSdkMeeting .
type CompositedVideoConcatenationConfiguration struct {
// Enables or disables the configuration object.
//
// This member is required.
State ArtifactsConcatenationState
noSmithyDocumentSerde
}
// The data sink of the configuration object.
type ConcatenationSink struct {
// The configuration settings for an Amazon S3 bucket sink.
//
// This member is required.
S3BucketSinkConfiguration *S3BucketSinkConfiguration
// The type of data sink in the configuration object.
//
// This member is required.
Type ConcatenationSinkType
noSmithyDocumentSerde
}
// The source type and media pipeline configuration settings in a configuration
// object.
type ConcatenationSource struct {
// The concatenation settings for the media pipeline in a configuration object.
//
// This member is required.
MediaCapturePipelineSourceConfiguration *MediaCapturePipelineSourceConfiguration
// The type of concatenation source in a configuration object.
//
// This member is required.
Type ConcatenationSourceType
noSmithyDocumentSerde
}
// The content artifact object.
type ContentArtifactsConfiguration struct {
// Indicates whether the content artifact is enabled or disabled.
//
// This member is required.
State ArtifactsState
// The MUX type of the artifact configuration.
MuxType ContentMuxType
noSmithyDocumentSerde
}
// The composited content configuration object for a specified media pipeline.
type ContentConcatenationConfiguration struct {
// Enables or disables the configuration object.
//
// This member is required.
State ArtifactsConcatenationState
noSmithyDocumentSerde
}
// The content configuration object's data channel.
type DataChannelConcatenationConfiguration struct {
// Enables or disables the configuration object.
//
// This member is required.
State ArtifactsConcatenationState
noSmithyDocumentSerde
}
// Describes the timestamp range and timestamp origin of a range of fragments.
// Only fragments with a start timestamp greater than or equal to the given start
// time and less than or equal to the end time are returned. For example, say a
// stream contains fragments with the following start timestamps:
// - 00:00:00
// - 00:00:02
// - 00:00:04
// - 00:00:06
//
// A fragment selector range with a start time of 00:00:01 and end time of
// 00:00:04 would return the fragments with start times of 00:00:02 and 00:00:04.
type FragmentSelector struct {
// The origin of the timestamps to use, Server or Producer . For more information,
// see StartSelectorType (https://docs.aws.amazon.com/kinesisvideostreams/latest/dg/API_dataplane_StartSelector.html)
// in the Amazon Kinesis Video Streams Developer Guide.
//
// This member is required.
FragmentSelectorType FragmentSelectorType
// The range of timestamps to return.
//
// This member is required.
TimestampRange *TimestampRange
noSmithyDocumentSerde
}
// Specifies the type of grid layout.
type GridViewConfiguration struct {
// Defines the layout of the video tiles when content sharing is enabled.
//
// This member is required.
ContentShareLayout ContentShareLayoutOption
// The configuration settings for an ActiveSpeakerOnly video tile.
ActiveSpeakerOnlyConfiguration *ActiveSpeakerOnlyConfiguration
// The orientation setting, horizontal or vertical.
CanvasOrientation CanvasOrientation
// The configuration settings for a horizontal layout.
HorizontalLayoutConfiguration *HorizontalLayoutConfiguration
// Defines the configuration options for a presenter only video tile.
PresenterOnlyConfiguration *PresenterOnlyConfiguration
// The configuration settings for a vertical layout.
VerticalLayoutConfiguration *VerticalLayoutConfiguration
// The attribute settings for the video tiles.
VideoAttribute *VideoAttribute
noSmithyDocumentSerde
}
// Defines the configuration settings for the horizontal layout.
type HorizontalLayoutConfiguration struct {
// Specifies the aspect ratio of all video tiles.
TileAspectRatio *string
// The maximum number of video tiles to display.
TileCount *int32
// Sets the automatic ordering of the video tiles.
TileOrder TileOrder
// Sets the position of horizontal tiles.
TilePosition HorizontalTilePosition
noSmithyDocumentSerde
}
// A structure that contains the configuration settings for an issue detection
// task.
type IssueDetectionConfiguration struct {
// The name of the issue detection rule.
//
// This member is required.
RuleName *string
noSmithyDocumentSerde
}
// A structure that contains the settings for a keyword match task.
type KeywordMatchConfiguration struct {
// The keywords or phrases that you want to match.
//
// This member is required.
Keywords []string
// The name of the keyword match rule.
//
// This member is required.
RuleName *string
// Matches keywords or phrases on their presence or absence. If set to TRUE , the
// rule matches when all the specified keywords or phrases are absent. Default:
// FALSE .
Negate bool
noSmithyDocumentSerde
}
// A structure that contains the configuration settings for a Kinesis Data Stream
// sink.
type KinesisDataStreamSinkConfiguration struct {
// The ARN of the sink.
InsightsTarget *string
noSmithyDocumentSerde
}
// The configuration of an Kinesis video stream.
type KinesisVideoStreamConfiguration struct {
// The Amazon Web Services Region of the video stream.
//
// This member is required.
Region *string
// The amount of time that data is retained.
DataRetentionInHours *int32
noSmithyDocumentSerde
}
// The updated Kinesis video stream configuration object.
type KinesisVideoStreamConfigurationUpdate struct {
// The updated time that data is retained.
DataRetentionInHours *int32
noSmithyDocumentSerde
}
// The video stream pool configuration object.
type KinesisVideoStreamPoolConfiguration struct {
// The time at which the configuration was created.
CreatedTimestamp *time.Time
// The ARN of the video stream pool configuration.
PoolArn *string
// The ID of the video stream pool in the configuration.
PoolId *string
// The name of the video stream pool configuration.
PoolName *string
// The size of the video stream pool in the configuration.
PoolSize *int32
// The status of the video stream pool in the configuration.
PoolStatus KinesisVideoStreamPoolStatus
// The Kinesis video stream pool configuration object.
StreamConfiguration *KinesisVideoStreamConfiguration
// The time at which the configuration was updated.
UpdatedTimestamp *time.Time
noSmithyDocumentSerde
}
// A summary of the Kinesis video stream pool.
type KinesisVideoStreamPoolSummary struct {
// The ARN of the video stream pool.
PoolArn *string
// The ID of the video stream pool.
PoolId *string
// The name of the video stream pool.
PoolName *string
noSmithyDocumentSerde
}
// A structure that contains the runtime settings for recording a Kinesis video
// stream.
type KinesisVideoStreamRecordingSourceRuntimeConfiguration struct {
// Describes the timestamp range and timestamp origin of a range of fragments in
// the Kinesis video stream.
//
// This member is required.
FragmentSelector *FragmentSelector
// The stream or streams to be recorded.
//
// This member is required.
Streams []RecordingStreamConfiguration
noSmithyDocumentSerde
}
// The runtime configuration settings for the Kinesis video stream source.
type KinesisVideoStreamSourceRuntimeConfiguration struct {
// Specifies the encoding of your input audio. Supported format: PCM (only signed
// 16-bit little-endian audio formats, which does not include WAV) For more
// information, see Media formats (https://docs.aws.amazon.com/transcribe/latest/dg/how-input.html#how-input-audio)
// in the Amazon Transcribe Developer Guide.
//
// This member is required.
MediaEncoding MediaEncoding
// The sample rate of the input audio (in hertz). Low-quality audio, such as
// telephone audio, is typically around 8,000 Hz. High-quality audio typically
// ranges from 16,000 Hz to 48,000 Hz. Note that the sample rate you specify must
// match that of your audio. Valid Range: Minimum value of 8000. Maximum value of
// 48000.
//
// This member is required.
MediaSampleRate *int32
// The streams in the source runtime configuration of a Kinesis video stream.
//
// This member is required.
Streams []StreamConfiguration
noSmithyDocumentSerde
}
// The task configuration settings for the Kinesis video stream source.
type KinesisVideoStreamSourceTaskConfiguration struct {
// The channel ID.
//
// This member is required.
ChannelId int32
// The ARN of the stream.
//
// This member is required.
StreamArn *string
// The unique identifier of the fragment to begin processing.
FragmentNumber *string
noSmithyDocumentSerde
}
// A structure that contains the configuration settings for an AWS Lambda
// function's data sink.
type LambdaFunctionSinkConfiguration struct {
// The ARN of the sink.
InsightsTarget *string
noSmithyDocumentSerde
}
// The media pipeline's RTMP configuration object.
type LiveConnectorRTMPConfiguration struct {
// The URL of the RTMP configuration.
//
// This member is required.
Url *string
// The audio channels set for the RTMP configuration
AudioChannels AudioChannelsOption
// The audio sample rate set for the RTMP configuration. Default: 48000.
AudioSampleRate *string
noSmithyDocumentSerde
}
// The media pipeline's sink configuration settings.
type LiveConnectorSinkConfiguration struct {
// The sink configuration's RTMP configuration settings.
//
// This member is required.
RTMPConfiguration *LiveConnectorRTMPConfiguration
// The sink configuration's sink type.
//
// This member is required.
SinkType LiveConnectorSinkType
noSmithyDocumentSerde
}
// The data source configuration object of a streaming media pipeline.
type LiveConnectorSourceConfiguration struct {
// The configuration settings of the connector pipeline.
//
// This member is required.
ChimeSdkMeetingLiveConnectorConfiguration *ChimeSdkMeetingLiveConnectorConfiguration
// The source configuration's media source type.
//
// This member is required.
SourceType LiveConnectorSourceType
noSmithyDocumentSerde
}
// A media pipeline object consisting of an ID, source type, source ARN, a sink
// type, a sink ARN, and a configuration object.
type MediaCapturePipeline struct {
// The configuration for a specified media pipeline. SourceType must be
// ChimeSdkMeeting .
ChimeSdkMeetingConfiguration *ChimeSdkMeetingConfiguration
// The time at which the pipeline was created, in ISO 8601 format.
CreatedTimestamp *time.Time
// The ARN of the media capture pipeline
MediaPipelineArn *string
// The ID of a media pipeline.
MediaPipelineId *string
// ARN of the destination to which the media artifacts are saved.
SinkArn *string
// Destination type to which the media artifacts are saved. You must use an S3
// Bucket.
SinkType MediaPipelineSinkType
// ARN of the source from which the media artifacts are saved.
SourceArn *string
// Source type from which media artifacts are saved. You must use ChimeMeeting .
SourceType MediaPipelineSourceType
// The status of the media pipeline.
Status MediaPipelineStatus
// The time at which the pipeline was updated, in ISO 8601 format.
UpdatedTimestamp *time.Time
noSmithyDocumentSerde
}
// The source configuration object of a media capture pipeline.
type MediaCapturePipelineSourceConfiguration struct {
// The meeting configuration settings in a media capture pipeline configuration
// object.
//
// This member is required.
ChimeSdkMeetingConfiguration *ChimeSdkMeetingConcatenationConfiguration
// The media pipeline ARN in the configuration object of a media capture pipeline.
//
// This member is required.
MediaPipelineArn *string
noSmithyDocumentSerde
}
// The summary data of a media capture pipeline.
type MediaCapturePipelineSummary struct {
// The ARN of the media pipeline in the summary.
MediaPipelineArn *string
// The ID of the media pipeline in the summary.
MediaPipelineId *string
noSmithyDocumentSerde
}
// Concatenates audio and video data from one or more data streams.
type MediaConcatenationPipeline struct {
// The time at which the concatenation pipeline was created.
CreatedTimestamp *time.Time
// The ARN of the media pipeline that you specify in the SourceConfiguration
// object.
MediaPipelineArn *string
// The ID of the media pipeline being concatenated.
MediaPipelineId *string
// The data sinks of the concatenation pipeline.
Sinks []ConcatenationSink
// The data sources being concatenated.
Sources []ConcatenationSource
// The status of the concatenation pipeline.
Status MediaPipelineStatus
// The time at which the concatenation pipeline was last updated.
UpdatedTimestamp *time.Time
noSmithyDocumentSerde
}
// A media pipeline that streams call analytics data.
type MediaInsightsPipeline struct {
// The time at which the media insights pipeline was created.
CreatedTimestamp *time.Time
// The statuses that the elements in a media insights pipeline can have during
// data processing.
ElementStatuses []MediaInsightsPipelineElementStatus
// The runtime configuration settings for a Kinesis recording video stream in a
// media insights pipeline.
KinesisVideoStreamRecordingSourceRuntimeConfiguration *KinesisVideoStreamRecordingSourceRuntimeConfiguration
// The configuration settings for a Kinesis runtime video stream in a media
// insights pipeline.
KinesisVideoStreamSourceRuntimeConfiguration *KinesisVideoStreamSourceRuntimeConfiguration
// The ARN of a media insight pipeline's configuration settings.
MediaInsightsPipelineConfigurationArn *string
// The runtime metadata of a media insights pipeline.
MediaInsightsRuntimeMetadata map[string]string
// The ARN of a media insights pipeline.
MediaPipelineArn *string
// The ID of a media insights pipeline.
MediaPipelineId *string
// The runtime configuration of the Amazon S3 bucket that stores recordings in a
// media insights pipeline.
S3RecordingSinkRuntimeConfiguration *S3RecordingSinkRuntimeConfiguration
// The status of a media insights pipeline.
Status MediaPipelineStatus
noSmithyDocumentSerde
}
// A structure that contains the configuration settings for a media insights
// pipeline.
type MediaInsightsPipelineConfiguration struct {
// The time at which the configuration was created.
CreatedTimestamp *time.Time
// The elements in the configuration.
Elements []MediaInsightsPipelineConfigurationElement
// The ARN of the configuration.
MediaInsightsPipelineConfigurationArn *string
// The ID of the configuration.
MediaInsightsPipelineConfigurationId *string
// The name of the configuration.
MediaInsightsPipelineConfigurationName *string
// Lists the rules that trigger a real-time alert.
RealTimeAlertConfiguration *RealTimeAlertConfiguration
// The ARN of the role used by the service to access Amazon Web Services resources.
ResourceAccessRoleArn *string
// The time at which the configuration was last updated.
UpdatedTimestamp *time.Time
noSmithyDocumentSerde
}
// An element in a media insights pipeline configuration.
type MediaInsightsPipelineConfigurationElement struct {
// The element type.
//
// This member is required.
Type MediaInsightsPipelineConfigurationElementType
// The analytics configuration settings for transcribing audio in a media insights
// pipeline configuration element.
AmazonTranscribeCallAnalyticsProcessorConfiguration *AmazonTranscribeCallAnalyticsProcessorConfiguration
// The transcription processor configuration settings in a media insights pipeline
// configuration element.
AmazonTranscribeProcessorConfiguration *AmazonTranscribeProcessorConfiguration
// The configuration settings for the Kinesis Data Stream Sink in a media insights
// pipeline configuration element.
KinesisDataStreamSinkConfiguration *KinesisDataStreamSinkConfiguration
// The configuration settings for the Amazon Web Services Lambda sink in a media
// insights pipeline configuration element.
LambdaFunctionSinkConfiguration *LambdaFunctionSinkConfiguration
// The configuration settings for the Amazon S3 recording bucket in a media
// insights pipeline configuration element.
S3RecordingSinkConfiguration *S3RecordingSinkConfiguration
// The configuration settings for an SNS topic sink in a media insights pipeline
// configuration element.
SnsTopicSinkConfiguration *SnsTopicSinkConfiguration
// The configuration settings for an SQS queue sink in a media insights pipeline
// configuration element.
SqsQueueSinkConfiguration *SqsQueueSinkConfiguration
// The voice analytics configuration settings in a media insights pipeline
// configuration element.
VoiceAnalyticsProcessorConfiguration *VoiceAnalyticsProcessorConfiguration
// The configuration settings for voice enhancement sink in a media insights
// pipeline configuration element.
VoiceEnhancementSinkConfiguration *VoiceEnhancementSinkConfiguration
noSmithyDocumentSerde
}
// A summary of the media insights pipeline configuration.
type MediaInsightsPipelineConfigurationSummary struct {
// The ARN of the media insights pipeline configuration.
MediaInsightsPipelineConfigurationArn *string
// The ID of the media insights pipeline configuration.
MediaInsightsPipelineConfigurationId *string
// The name of the media insights pipeline configuration.
MediaInsightsPipelineConfigurationName *string
noSmithyDocumentSerde
}
// The status of the pipeline element.
type MediaInsightsPipelineElementStatus struct {
// The element's status.
Status MediaPipelineElementStatus
// The type of status.
Type MediaInsightsPipelineConfigurationElementType
noSmithyDocumentSerde
}
// The connector pipeline.
type MediaLiveConnectorPipeline struct {
// The time at which the connector pipeline was created.
CreatedTimestamp *time.Time
// The connector pipeline's ARN.
MediaPipelineArn *string
// The connector pipeline's ID.
MediaPipelineId *string
// The connector pipeline's data sinks.
Sinks []LiveConnectorSinkConfiguration
// The connector pipeline's data sources.
Sources []LiveConnectorSourceConfiguration
// The connector pipeline's status.
Status MediaPipelineStatus
// The time at which the connector pipeline was last updated.
UpdatedTimestamp *time.Time
noSmithyDocumentSerde
}
// A pipeline consisting of a media capture, media concatenation, or
// live-streaming pipeline.
type MediaPipeline struct {
// A pipeline that enables users to capture audio and video.
MediaCapturePipeline *MediaCapturePipeline
// The media concatenation pipeline in a media pipeline.
MediaConcatenationPipeline *MediaConcatenationPipeline
// The media insights pipeline of a media pipeline.
MediaInsightsPipeline *MediaInsightsPipeline
// The connector pipeline of the media pipeline.
MediaLiveConnectorPipeline *MediaLiveConnectorPipeline
// Designates a media pipeline as a media stream pipeline.
MediaStreamPipeline *MediaStreamPipeline
noSmithyDocumentSerde
}
// The summary of the media pipeline.
type MediaPipelineSummary struct {
// The ARN of the media pipeline in the summary.
MediaPipelineArn *string
// The ID of the media pipeline in the summary.
MediaPipelineId *string
noSmithyDocumentSerde
}
// Structure that contains the settings for a media stream pipeline.
type MediaStreamPipeline struct {
// The time at which the media stream pipeline was created.
CreatedTimestamp *time.Time
// The ARN of the media stream pipeline.
MediaPipelineArn *string
// The ID of the media stream pipeline
MediaPipelineId *string
// The media stream pipeline's data sinks.
Sinks []MediaStreamSink
// The media stream pipeline's data sources.
Sources []MediaStreamSource
// The status of the media stream pipeline.
Status MediaPipelineStatus
// The time at which the media stream pipeline was updated.
UpdatedTimestamp *time.Time
noSmithyDocumentSerde
}
// Structure that contains the settings for a media stream sink.
type MediaStreamSink struct {
// The media stream sink's media stream type.
//
// This member is required.
MediaStreamType MediaStreamType
// Specifies the number of streams that the sink can accept.
//
// This member is required.
ReservedStreamCapacity *int32
// The ARN of the media stream sink.
//
// This member is required.
SinkArn *string
// The media stream sink's type.
//
// This member is required.
SinkType MediaStreamPipelineSinkType
noSmithyDocumentSerde
}
// Structure that contains the settings for media stream sources.
type MediaStreamSource struct {
// The ARN of the media stream source.
//
// This member is required.
SourceArn *string
// The type of media stream source.
//
// This member is required.
SourceType MediaPipelineSourceType
noSmithyDocumentSerde
}
// The configuration object for an event concatenation pipeline.
type MeetingEventsConcatenationConfiguration struct {
// Enables or disables the configuration object.
//
// This member is required.
State ArtifactsConcatenationState
noSmithyDocumentSerde
}
// Allows you to specify additional settings for your Call Analytics post-call
// request, including output locations for your redacted transcript, which IAM role
// to use, and which encryption key to use. DataAccessRoleArn and OutputLocation
// are required fields. PostCallAnalyticsSettings provides the same insights as a
// Call Analytics post-call transcription. For more information, refer to
// Post-call analytics with real-time transcriptions (https://docs.aws.amazon.com/transcribe/latest/dg/tca-post-call.html)
// in the Amazon Transcribe Developer Guide.
type PostCallAnalyticsSettings struct {
// The ARN of the role used by Amazon Web Services Transcribe to upload your post
// call analysis. For more information, see Post-call analytics with real-time
// transcriptions (https://docs.aws.amazon.com/transcribe/latest/dg/tca-post-call.html)
// in the Amazon Transcribe Developer Guide.
//
// This member is required.
DataAccessRoleArn *string
// The URL of the Amazon S3 bucket that contains the post-call data.
//
// This member is required.
OutputLocation *string
// The content redaction output settings for a post-call analysis task.
ContentRedactionOutput ContentRedactionOutput
// The ID of the KMS (Key Management Service) key used to encrypt the output.
OutputEncryptionKMSKeyId *string
noSmithyDocumentSerde
}
// Defines the configuration for a presenter-only video tile.
type PresenterOnlyConfiguration struct {
// Defines the position of the presenter video tile. Default: TopRight .
PresenterPosition PresenterPosition
noSmithyDocumentSerde
}
// A structure that contains the configuration settings for real-time alerts.
type RealTimeAlertConfiguration struct {
// Turns off real-time alerts.
Disabled bool
// The rules in the alert. Rules specify the words or phrases that you want to be
// notified about.
Rules []RealTimeAlertRule
noSmithyDocumentSerde
}
// Specifies the words or phrases that trigger an alert.
type RealTimeAlertRule struct {
// The type of alert rule.
//
// This member is required.
Type RealTimeAlertRuleType
// Specifies the issue detection settings for a real-time alert rule.
IssueDetectionConfiguration *IssueDetectionConfiguration
// Specifies the settings for matching the keywords in a real-time alert rule.
KeywordMatchConfiguration *KeywordMatchConfiguration
// Specifies the settings for predicting sentiment in a real-time alert rule.
SentimentConfiguration *SentimentConfiguration
noSmithyDocumentSerde
}
// A structure that holds the settings for recording media.
type RecordingStreamConfiguration struct {
// The ARN of the recording stream.
StreamArn *string
noSmithyDocumentSerde
}
// The configuration settings for the S3 bucket.
type S3BucketSinkConfiguration struct {
// The destination URL of the S3 bucket.
//
// This member is required.
Destination *string
noSmithyDocumentSerde
}
// The structure that holds the settings for transmitting media to the Amazon S3
// bucket. These values are used as defaults if S3RecordingSinkRuntimeConfiguration
// is not specified.
type S3RecordingSinkConfiguration struct {
// The default URI of the Amazon S3 bucket used as the recording sink.
Destination *string
// The default file format for the media files sent to the Amazon S3 bucket.
RecordingFileFormat RecordingFileFormat
noSmithyDocumentSerde
}
// A structure that holds the settings for transmitting media files to the Amazon
// S3 bucket. If specified, the settings in this structure override any settings in
// S3RecordingSinkConfiguration .
type S3RecordingSinkRuntimeConfiguration struct {
// The URI of the S3 bucket used as the sink.
//
// This member is required.
Destination *string
// The file format for the media files sent to the Amazon S3 bucket.
//
// This member is required.
RecordingFileFormat RecordingFileFormat
noSmithyDocumentSerde
}
// The video streams for a specified media pipeline. The total number of video
// streams can't exceed 25.
type SelectedVideoStreams struct {
// The attendee IDs of the streams selected for a media pipeline.
AttendeeIds []string
// The external user IDs of the streams selected for a media pipeline.
ExternalUserIds []string
noSmithyDocumentSerde
}
// A structure that contains the configuration settings for a sentiment analysis
// task.
type SentimentConfiguration struct {
// The name of the rule in the sentiment configuration.
//
// This member is required.
RuleName *string
// The type of sentiment, POSITIVE , NEGATIVE , or NEUTRAL .
//
// This member is required.
SentimentType SentimentType
// Specifies the analysis interval.
//
// This member is required.
TimePeriod *int32
noSmithyDocumentSerde
}
// The configuration settings for the SNS topic sink.
type SnsTopicSinkConfiguration struct {
// The ARN of the SNS sink.
InsightsTarget *string
noSmithyDocumentSerde
}
// Source configuration for a specified media pipeline.
type SourceConfiguration struct {
// The selected video streams for a specified media pipeline. The number of video
// streams can't exceed 25.
SelectedVideoStreams *SelectedVideoStreams
noSmithyDocumentSerde
}
// A representation of an asynchronous request to perform speaker search analysis
// on a media insights pipeline.
type SpeakerSearchTask struct {
// The time at which a speaker search task was created.
CreatedTimestamp *time.Time
// The speaker search task ID.
SpeakerSearchTaskId *string
// The status of the speaker search task.
SpeakerSearchTaskStatus MediaPipelineTaskStatus
// The time at which a speaker search task was updated.
UpdatedTimestamp *time.Time
noSmithyDocumentSerde
}
// The configuration settings for the SQS sink.
type SqsQueueSinkConfiguration struct {
// The ARN of the SQS sink.
InsightsTarget *string
noSmithyDocumentSerde
}
// Defines a streaming channel.
type StreamChannelDefinition struct {
// The number of channels in a streaming channel.
//
// This member is required.
NumberOfChannels *int32
// The definitions of the channels in a streaming channel.
ChannelDefinitions []ChannelDefinition
noSmithyDocumentSerde
}
// The configuration settings for a stream.
type StreamConfiguration struct {
// The ARN of the stream.
//
// This member is required.
StreamArn *string
// The streaming channel definition in the stream configuration.
//
// This member is required.
StreamChannelDefinition *StreamChannelDefinition
// The unique identifier of the fragment to begin processing.
FragmentNumber *string
noSmithyDocumentSerde
}
// A key/value pair that grants users access to meeting resources.
type Tag struct {
// The key half of a tag.
//
// This member is required.
Key *string
// The value half of a tag.
//
// This member is required.
Value *string
noSmithyDocumentSerde
}
// The range of timestamps to return.
type TimestampRange struct {
// The ending timestamp for the specified range.
//
// This member is required.
EndTimestamp *time.Time
// The starting timestamp for the specified range.
//
// This member is required.
StartTimestamp *time.Time
noSmithyDocumentSerde
}
// The configuration object for concatenating transcription messages.
type TranscriptionMessagesConcatenationConfiguration struct {
// Enables or disables the configuration object.
//
// This member is required.
State ArtifactsConcatenationState
noSmithyDocumentSerde
}
// Defines the configuration settings for a vertical layout.
type VerticalLayoutConfiguration struct {
// Sets the aspect ratio of the video tiles, such as 16:9.
TileAspectRatio *string
// The maximum number of tiles to display.
TileCount *int32
// Sets the automatic ordering of the video tiles.
TileOrder TileOrder
// Sets the position of vertical tiles.
TilePosition VerticalTilePosition
noSmithyDocumentSerde
}
// The video artifact configuration object.
type VideoArtifactsConfiguration struct {
// Indicates whether the video artifact is enabled or disabled.
//
// This member is required.
State ArtifactsState
// The MUX type of the video artifact configuration object.
MuxType VideoMuxType
noSmithyDocumentSerde
}
// Defines the settings for a video tile.
type VideoAttribute struct {
// Defines the border color of all video tiles.
BorderColor BorderColor
// Defines the border thickness for all video tiles.
BorderThickness *int32
// Sets the corner radius of all video tiles.
CornerRadius *int32
// Defines the highlight color for the active video tile.
HighlightColor HighlightColor
noSmithyDocumentSerde
}
// The configuration object of a video concatenation pipeline.
type VideoConcatenationConfiguration struct {
// Enables or disables the configuration object.
//
// This member is required.
State ArtifactsConcatenationState
noSmithyDocumentSerde
}
// The configuration settings for a voice analytics processor.
type VoiceAnalyticsProcessorConfiguration struct {
// The status of the speaker search task.
SpeakerSearchStatus VoiceAnalyticsConfigurationStatus
// The status of the voice tone analysis task.
VoiceToneAnalysisStatus VoiceAnalyticsConfigurationStatus
noSmithyDocumentSerde
}
// A static structure that contains the configuration data for a
// VoiceEnhancementSinkConfiguration element.
type VoiceEnhancementSinkConfiguration struct {
// Disables the VoiceEnhancementSinkConfiguration element.
Disabled bool
noSmithyDocumentSerde
}
// A representation of an asynchronous request to perform voice tone analysis on a
// media insights pipeline.
type VoiceToneAnalysisTask struct {
// The time at which a voice tone analysis task was created.
CreatedTimestamp *time.Time
// The time at which a voice tone analysis task was updated.
UpdatedTimestamp *time.Time
// The ID of the voice tone analysis task.
VoiceToneAnalysisTaskId *string
// The status of a voice tone analysis task.
VoiceToneAnalysisTaskStatus MediaPipelineTaskStatus
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|