Skip to content

Commit a4b45ba

Browse files
Update to latest models
1 parent 2f59b0e commit a4b45ba

File tree

8 files changed

+246
-14
lines changed

8 files changed

+246
-14
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"category": "``comprehend``",
3+
"type": "api-change",
4+
"description": "Update comprehend client to latest version"
5+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"category": "``medialive``",
3+
"type": "api-change",
4+
"description": "Update medialive client to latest version"
5+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"category": "``network-firewall``",
3+
"type": "api-change",
4+
"description": "Update network-firewall client to latest version"
5+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"category": "``wafv2``",
3+
"type": "api-change",
4+
"description": "Update wafv2 client to latest version"
5+
}

botocore/data/comprehend/2017-11-27/service-2.json

+62-2
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,22 @@
113113
],
114114
"documentation":"<p>Creates a new document classification request to analyze a single document in real-time, using a previously created and trained custom model and an endpoint.</p>"
115115
},
116+
"ContainsPiiEntities":{
117+
"name":"ContainsPiiEntities",
118+
"http":{
119+
"method":"POST",
120+
"requestUri":"/"
121+
},
122+
"input":{"shape":"ContainsPiiEntitiesRequest"},
123+
"output":{"shape":"ContainsPiiEntitiesResponse"},
124+
"errors":[
125+
{"shape":"InvalidRequestException"},
126+
{"shape":"TextSizeLimitExceededException"},
127+
{"shape":"UnsupportedLanguageException"},
128+
{"shape":"InternalServerException"}
129+
],
130+
"documentation":"<p>Analyzes input text for the presence of personally identifiable information (PII) and returns the labels of identified PII entity types such as name, address, bank account number, or phone number.</p>"
131+
},
116132
"CreateDocumentClassifier":{
117133
"name":"CreateDocumentClassifier",
118134
"http":{
@@ -1429,6 +1445,32 @@
14291445
"documentation":"<p>Concurrent modification of the tags associated with an Amazon Comprehend resource is not supported. </p>",
14301446
"exception":true
14311447
},
1448+
"ContainsPiiEntitiesRequest":{
1449+
"type":"structure",
1450+
"required":[
1451+
"Text",
1452+
"LanguageCode"
1453+
],
1454+
"members":{
1455+
"Text":{
1456+
"shape":"String",
1457+
"documentation":"<p>Creates a new document classification request to analyze a single document in real-time, returning personally identifiable information (PII) entity labels.</p>"
1458+
},
1459+
"LanguageCode":{
1460+
"shape":"LanguageCode",
1461+
"documentation":"<p>The language of the input documents.</p>"
1462+
}
1463+
}
1464+
},
1465+
"ContainsPiiEntitiesResponse":{
1466+
"type":"structure",
1467+
"members":{
1468+
"Labels":{
1469+
"shape":"ListOfEntityLabels",
1470+
"documentation":"<p>The labels used in the document being analyzed. Individual labels represent personally identifiable information (PII) entity types.</p>"
1471+
}
1472+
}
1473+
},
14321474
"CreateDocumentClassifierRequest":{
14331475
"type":"structure",
14341476
"required":[
@@ -2538,6 +2580,20 @@
25382580
},
25392581
"documentation":"<p>Provides information about an entity. </p> <p> </p>"
25402582
},
2583+
"EntityLabel":{
2584+
"type":"structure",
2585+
"members":{
2586+
"Name":{
2587+
"shape":"PiiEntityType",
2588+
"documentation":"<p>The name of the label.</p>"
2589+
},
2590+
"Score":{
2591+
"shape":"Float",
2592+
"documentation":"<p>The level of confidence that Amazon Comprehend has in the accuracy of the detection.</p>"
2593+
}
2594+
},
2595+
"documentation":"<p>Specifies one of the label or labels that categorize the personally identifiable information (PII) entity being analyzed.</p>"
2596+
},
25412597
"EntityRecognizerAnnotations":{
25422598
"type":"structure",
25432599
"required":["S3Uri"],
@@ -2783,7 +2839,7 @@
27832839
"EntityTypeName":{
27842840
"type":"string",
27852841
"max":64,
2786-
"pattern":"^(?:(?!\\\\n+|\\\\t+|\\\\r+|[\\r\\t\\n\\s,]).)+$"
2842+
"pattern":"^(?:(?!\\\\n+|\\\\t+|\\\\r+|[\\r\\t\\n,]).)+$"
27872843
},
27882844
"EntityTypesEvaluationMetrics":{
27892845
"type":"structure",
@@ -3399,6 +3455,10 @@
33993455
"type":"list",
34003456
"member":{"shape":"Entity"}
34013457
},
3458+
"ListOfEntityLabels":{
3459+
"type":"list",
3460+
"member":{"shape":"EntityLabel"}
3461+
},
34023462
"ListOfKeyPhrases":{
34033463
"type":"list",
34043464
"member":{"shape":"KeyPhrase"}
@@ -4800,7 +4860,7 @@
48004860
"members":{
48014861
"Message":{"shape":"String"}
48024862
},
4803-
"documentation":"<p>Amazon Comprehend can't process the language of the input text. For all custom entity recognition APIs (such as <code>CreateEntityRecognizer</code>), only English, Spanish, French, Italian, German, or Portuguese are accepted. For most other APIs, such as those for Custom Classification, Amazon Comprehend accepts text in all supported languages. For a list of supported languages, see <a>supported-languages</a>. </p>",
4863+
"documentation":"<p>Amazon Comprehend can't process the language of the input text. For custom entity recognition APIs, only English, Spanish, French, Italian, German, or Portuguese are accepted. For a list of supported languages, see <a>supported-languages</a>. </p>",
48044864
"exception":true
48054865
},
48064866
"UntagResourceRequest":{

botocore/data/medialive/2017-10-14/service-2.json

+153-1
Original file line numberDiff line numberDiff line change
@@ -2883,6 +2883,16 @@
28832883
},
28842884
"documentation": "Ancillary Source Settings"
28852885
},
2886+
"ArchiveCdnSettings": {
2887+
"type": "structure",
2888+
"members": {
2889+
"ArchiveS3Settings": {
2890+
"shape": "ArchiveS3Settings",
2891+
"locationName": "archiveS3Settings"
2892+
}
2893+
},
2894+
"documentation": "Archive Cdn Settings"
2895+
},
28862896
"ArchiveContainerSettings": {
28872897
"type": "structure",
28882898
"members": {
@@ -2900,6 +2910,11 @@
29002910
"ArchiveGroupSettings": {
29012911
"type": "structure",
29022912
"members": {
2913+
"ArchiveCdnSettings": {
2914+
"shape": "ArchiveCdnSettings",
2915+
"locationName": "archiveCdnSettings",
2916+
"documentation": "Parameters that control interactions with the CDN."
2917+
},
29032918
"Destination": {
29042919
"shape": "OutputLocationRef",
29052920
"locationName": "destination",
@@ -2940,6 +2955,25 @@
29402955
"ContainerSettings"
29412956
]
29422957
},
2958+
"ArchiveS3LogUploads": {
2959+
"type": "string",
2960+
"documentation": "Archive S3 Log Uploads",
2961+
"enum": [
2962+
"DISABLED",
2963+
"ENABLED"
2964+
]
2965+
},
2966+
"ArchiveS3Settings": {
2967+
"type": "structure",
2968+
"members": {
2969+
"CannedAcl": {
2970+
"shape": "S3CannedAcl",
2971+
"locationName": "cannedAcl",
2972+
"documentation": "Specify the canned ACL to apply to each S3 request. Defaults to none."
2973+
}
2974+
},
2975+
"documentation": "Archive S3 Settings"
2976+
},
29432977
"AribDestinationSettings": {
29442978
"type": "structure",
29452979
"members": {
@@ -4116,6 +4150,38 @@
41164150
"CaptionChannel"
41174151
]
41184152
},
4153+
"CaptionRectangle": {
4154+
"type": "structure",
4155+
"members": {
4156+
"Height": {
4157+
"shape": "__doubleMin0Max100",
4158+
"locationName": "height",
4159+
"documentation": "See the description in leftOffset.\nFor height, specify the entire height of the rectangle as a percentage of the underlying frame height. For example, \\\"80\\\" means the rectangle height is 80% of the underlying frame height. The topOffset and rectangleHeight must add up to 100% or less.\nThis field corresponds to tts:extent - Y in the TTML standard."
4160+
},
4161+
"LeftOffset": {
4162+
"shape": "__doubleMin0Max100",
4163+
"locationName": "leftOffset",
4164+
"documentation": "Applies only if you plan to convert these source captions to EBU-TT-D or TTML in an output. (Make sure to leave the default if you don't have either of these formats in the output.) You can define a display rectangle for the captions that is smaller than the underlying video frame. You define the rectangle by specifying the position of the left edge, top edge, bottom edge, and right edge of the rectangle, all within the underlying video frame. The units for the measurements are percentages.\nIf you specify a value for one of these fields, you must specify a value for all of them.\nFor leftOffset, specify the position of the left edge of the rectangle, as a percentage of the underlying frame width, and relative to the left edge of the frame. For example, \\\"10\\\" means the measurement is 10% of the underlying frame width. The rectangle left edge starts at that position from the left edge of the frame.\nThis field corresponds to tts:origin - X in the TTML standard."
4165+
},
4166+
"TopOffset": {
4167+
"shape": "__doubleMin0Max100",
4168+
"locationName": "topOffset",
4169+
"documentation": "See the description in leftOffset.\nFor topOffset, specify the position of the top edge of the rectangle, as a percentage of the underlying frame height, and relative to the top edge of the frame. For example, \\\"10\\\" means the measurement is 10% of the underlying frame height. The rectangle top edge starts at that position from the top edge of the frame.\nThis field corresponds to tts:origin - Y in the TTML standard."
4170+
},
4171+
"Width": {
4172+
"shape": "__doubleMin0Max100",
4173+
"locationName": "width",
4174+
"documentation": "See the description in leftOffset.\nFor width, specify the entire width of the rectangle as a percentage of the underlying frame width. For example, \\\"80\\\" means the rectangle width is 80% of the underlying frame width. The leftOffset and rectangleWidth must add up to 100% or less.\nThis field corresponds to tts:extent - X in the TTML standard."
4175+
}
4176+
},
4177+
"documentation": "Caption Rectangle",
4178+
"required": [
4179+
"TopOffset",
4180+
"Height",
4181+
"Width",
4182+
"LeftOffset"
4183+
]
4184+
},
41194185
"CaptionSelector": {
41204186
"type": "structure",
41214187
"members": {
@@ -6689,6 +6755,11 @@
66896755
"EbuTtDDestinationSettings": {
66906756
"type": "structure",
66916757
"members": {
6758+
"CopyrightHolder": {
6759+
"shape": "__stringMax1000",
6760+
"locationName": "copyrightHolder",
6761+
"documentation": "Applies only if you plan to convert these source captions to EBU-TT-D or TTML in an output. Complete this field if you want to include the name of the copyright holder in the copyright metadata tag in the TTML"
6762+
},
66926763
"FillLineGap": {
66936764
"shape": "EbuTtDFillLineGapControl",
66946765
"locationName": "fillLineGap",
@@ -7037,13 +7108,28 @@
70377108
},
70387109
"documentation": "Placeholder documentation for ForbiddenException"
70397110
},
7111+
"FrameCaptureCdnSettings": {
7112+
"type": "structure",
7113+
"members": {
7114+
"FrameCaptureS3Settings": {
7115+
"shape": "FrameCaptureS3Settings",
7116+
"locationName": "frameCaptureS3Settings"
7117+
}
7118+
},
7119+
"documentation": "Frame Capture Cdn Settings"
7120+
},
70407121
"FrameCaptureGroupSettings": {
70417122
"type": "structure",
70427123
"members": {
70437124
"Destination": {
70447125
"shape": "OutputLocationRef",
70457126
"locationName": "destination",
70467127
"documentation": "The destination for the frame capture files. Either the URI for an Amazon S3 bucket and object, plus a file name prefix (for example, s3ssl://sportsDelivery/highlights/20180820/curling-) or the URI for a MediaStore container, plus a file name prefix (for example, mediastoressl://sportsDelivery/20180820/curling-). The final file names consist of the prefix from the destination field (for example, \"curling-\") + name modifier + the counter (5 digits, starting from 00001) + extension (which is always .jpg). For example, curling-low.00001.jpg"
7128+
},
7129+
"FrameCaptureCdnSettings": {
7130+
"shape": "FrameCaptureCdnSettings",
7131+
"locationName": "frameCaptureCdnSettings",
7132+
"documentation": "Parameters that control interactions with the CDN."
70477133
}
70487134
},
70497135
"documentation": "Frame Capture Group Settings",
@@ -7076,6 +7162,25 @@
70767162
},
70777163
"documentation": "Frame Capture Output Settings"
70787164
},
7165+
"FrameCaptureS3LogUploads": {
7166+
"type": "string",
7167+
"documentation": "Frame Capture S3 Log Uploads",
7168+
"enum": [
7169+
"DISABLED",
7170+
"ENABLED"
7171+
]
7172+
},
7173+
"FrameCaptureS3Settings": {
7174+
"type": "structure",
7175+
"members": {
7176+
"CannedAcl": {
7177+
"shape": "S3CannedAcl",
7178+
"locationName": "cannedAcl",
7179+
"documentation": "Specify the canned ACL to apply to each S3 request. Defaults to none."
7180+
}
7181+
},
7182+
"documentation": "Frame Capture S3 Settings"
7183+
},
70797184
"FrameCaptureSettings": {
70807185
"type": "structure",
70817186
"members": {
@@ -7537,7 +7642,7 @@
75377642
"Softness": {
75387643
"shape": "__integerMin0Max128",
75397644
"locationName": "softness",
7540-
"documentation": "Softness. Selects quantizer matrix, larger values reduce high-frequency content in the encoded image."
7645+
"documentation": "Softness. Selects quantizer matrix, larger values reduce high-frequency content in the encoded image. If not set to zero, must be greater than 15."
75417646
},
75427647
"SpatialAq": {
75437648
"shape": "H264SpatialAq",
@@ -8040,6 +8145,10 @@
80408145
"shape": "HlsMediaStoreSettings",
80418146
"locationName": "hlsMediaStoreSettings"
80428147
},
8148+
"HlsS3Settings": {
8149+
"shape": "HlsS3Settings",
8150+
"locationName": "hlsS3Settings"
8151+
},
80438152
"HlsWebdavSettings": {
80448153
"shape": "HlsWebdavSettings",
80458154
"locationName": "hlsWebdavSettings"
@@ -8502,6 +8611,25 @@
85028611
"ENABLED"
85038612
]
85048613
},
8614+
"HlsS3LogUploads": {
8615+
"type": "string",
8616+
"documentation": "Hls S3 Log Uploads",
8617+
"enum": [
8618+
"DISABLED",
8619+
"ENABLED"
8620+
]
8621+
},
8622+
"HlsS3Settings": {
8623+
"type": "structure",
8624+
"members": {
8625+
"CannedAcl": {
8626+
"shape": "S3CannedAcl",
8627+
"locationName": "cannedAcl",
8628+
"documentation": "Specify the canned ACL to apply to each S3 request. Defaults to none."
8629+
}
8630+
},
8631+
"documentation": "Hls S3 Settings"
8632+
},
85058633
"HlsSegmentationMode": {
85068634
"type": "string",
85078635
"documentation": "Hls Segmentation Mode",
@@ -12596,6 +12724,16 @@
1259612724
"Destination"
1259712725
]
1259812726
},
12727+
"S3CannedAcl": {
12728+
"type": "string",
12729+
"documentation": "S3 Canned Acl",
12730+
"enum": [
12731+
"AUTHENTICATED_READ",
12732+
"BUCKET_OWNER_FULL_CONTROL",
12733+
"BUCKET_OWNER_READ",
12734+
"PUBLIC_READ"
12735+
]
12736+
},
1259912737
"ScheduleAction": {
1260012738
"type": "structure",
1260112739
"members": {
@@ -13657,6 +13795,11 @@
1365713795
"TeletextSourceSettings": {
1365813796
"type": "structure",
1365913797
"members": {
13798+
"OutputRectangle": {
13799+
"shape": "CaptionRectangle",
13800+
"locationName": "outputRectangle",
13801+
"documentation": "Optionally defines a region where TTML style captions will be displayed"
13802+
},
1366013803
"PageNumber": {
1366113804
"shape": "__string",
1366213805
"locationName": "pageNumber",
@@ -14844,6 +14987,10 @@
1484414987
"type": "double",
1484514988
"documentation": "Placeholder documentation for __doubleMin0Max1"
1484614989
},
14990+
"__doubleMin0Max100": {
14991+
"type": "double",
14992+
"documentation": "Placeholder documentation for __doubleMin0Max100"
14993+
},
1484714994
"__doubleMin1": {
1484814995
"type": "double",
1484914996
"documentation": "Placeholder documentation for __doubleMin1"
@@ -15519,6 +15666,11 @@
1551915666
"type": "string",
1552015667
"documentation": "Placeholder documentation for __string"
1552115668
},
15669+
"__stringMax1000": {
15670+
"type": "string",
15671+
"max": 1000,
15672+
"documentation": "Placeholder documentation for __stringMax1000"
15673+
},
1552215674
"__stringMax256": {
1552315675
"type": "string",
1552415676
"max": 256,

0 commit comments

Comments
 (0)