Skip to content

Commit 7c685ea

Browse files
AWS SDK for RubyNobody
authored andcommitted
Updated service API models for release.
1 parent f0967a5 commit 7c685ea

File tree

7 files changed

+107
-41
lines changed

7 files changed

+107
-41
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Unreleased Changes
22
------------------
33

4+
* Feature - Aws::CodeDeploy - Updated the documentation for AWS CodeDeploy.
5+
6+
* Feature - Aws::Comprehend - Updated the API, and documentation for Amazon Comprehend.
7+
8+
* Feature - Aws::ECS - Updated the API, and documentation for Amazon EC2 Container Service.
9+
10+
* Feature - Aws::ElastiCache - Updated the documentation for Amazon ElastiCache.
11+
412
2.11.315 (2019-07-17)
513
------------------
614

aws-sdk-core/apis/codedeploy/2014-10-06/docs-2.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@
335335
}
336336
},
337337
"BlueInstanceTerminationOption": {
338-
"base": "<p>Information about whether instances in the original environment are terminated when a blue/green deployment is successful.</p>",
338+
"base": "<p>Information about whether instances in the original environment are terminated when a blue/green deployment is successful. <code>BlueInstanceTerminationOption</code> does not apply to Lambda deployments. </p>",
339339
"refs": {
340340
"BlueGreenDeploymentConfiguration$terminateBlueInstancesOnDeploymentSuccess": "<p>Information about whether to terminate instances in the original fleet during a blue/green deployment.</p>"
341341
}
@@ -794,7 +794,7 @@
794794
"Duration": {
795795
"base": null,
796796
"refs": {
797-
"BlueInstanceTerminationOption$terminationWaitTimeInMinutes": "<p>The number of minutes to wait after a successful blue/green deployment before terminating instances from the original environment. The maximum setting is 2880 minutes (2 days).</p>",
797+
"BlueInstanceTerminationOption$terminationWaitTimeInMinutes": "<p>For an Amazon EC2 deployment, the number of minutes to wait after a successful blue/green deployment before terminating instances from the original environment.</p> <p> For an Amazon ECS deployment, the number of minutes before deleting the original (blue) task set. During an Amazon ECS deployment, CodeDeploy shifts traffic from the original (blue) task set to a replacement (green) task set. </p> <p> The maximum setting is 2880 minutes (2 days). </p>",
798798
"DeploymentReadyOption$waitTimeInMinutes": "<p>The number of minutes to wait before the status of a blue/green deployment is changed to Stopped if rerouting is not started manually. Applies only to the STOP_DEPLOYMENT option for actionOnTimeout</p>"
799799
}
800800
},
@@ -2151,7 +2151,7 @@
21512151
"TargetFilters": {
21522152
"base": null,
21532153
"refs": {
2154-
"ListDeploymentTargetsInput$targetFilters": "<p> A key used to filter the returned targets. </p>"
2154+
"ListDeploymentTargetsInput$targetFilters": "<p> A key used to filter the returned targets. The two valid values are:</p> <ul> <li> <p> <code>TargetStatus</code> - A <code>TargetStatus</code> filter string can be <code>Failed</code>, <code>InProgress</code>, <code>Pending</code>, <code>Ready</code>, <code>Skipped</code>, <code>Succeeded</code>, or <code>Unknown</code>. </p> </li> <li> <p> <code>ServerInstanceLabel</code> - A <code>ServerInstanceLabel</code> filter string can be <code>Blue</code> or <code>Green</code>. </p> </li> </ul>"
21552155
}
21562156
},
21572157
"TargetGroupInfo": {

aws-sdk-core/apis/comprehend/2017-11-27/api-2.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1405,7 +1405,9 @@
14051405
"EntityRecognizerMetadataEntityTypesListItem":{
14061406
"type":"structure",
14071407
"members":{
1408-
"Type":{"shape":"AnyLengthString"}
1408+
"Type":{"shape":"AnyLengthString"},
1409+
"EvaluationMetrics":{"shape":"EntityTypesEvaluationMetrics"},
1410+
"NumberOfTrainMentions":{"shape":"Integer"}
14091411
}
14101412
},
14111413
"EntityRecognizerProperties":{
@@ -1449,6 +1451,14 @@
14491451
"max":64,
14501452
"pattern":"[_A-Z0-9]+"
14511453
},
1454+
"EntityTypesEvaluationMetrics":{
1455+
"type":"structure",
1456+
"members":{
1457+
"Precision":{"shape":"Double"},
1458+
"Recall":{"shape":"Double"},
1459+
"F1Score":{"shape":"Double"}
1460+
}
1461+
},
14521462
"EntityTypesList":{
14531463
"type":"list",
14541464
"member":{"shape":"EntityTypesListItem"}

aws-sdk-core/apis/comprehend/2017-11-27/docs-2.json

Lines changed: 27 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,10 @@
478478
"ClassifierEvaluationMetrics$F1Score": "<p>A measure of how accurate the classifier results are for the test data. It is derived from the <code>Precision</code> and <code>Recall</code> values. The <code>F1Score</code> is the harmonic average of the two scores. The highest score is 1, and the worst score is 0. </p>",
479479
"EntityRecognizerEvaluationMetrics$Precision": "<p>A measure of the usefulness of the recognizer results in the test data. High precision means that the recognizer returned substantially more relevant results than irrelevant ones. </p>",
480480
"EntityRecognizerEvaluationMetrics$Recall": "<p>A measure of how complete the recognizer results are for the test data. High recall means that the recognizer returned most of the relevant results.</p>",
481-
"EntityRecognizerEvaluationMetrics$F1Score": "<p>A measure of how accurate the recognizer results are for the test data. It is derived from the <code>Precision</code> and <code>Recall</code> values. The <code>F1Score</code> is the harmonic average of the two scores. The highest score is 1, and the worst score is 0. </p>"
481+
"EntityRecognizerEvaluationMetrics$F1Score": "<p>A measure of how accurate the recognizer results are for the test data. It is derived from the <code>Precision</code> and <code>Recall</code> values. The <code>F1Score</code> is the harmonic average of the two scores. The highest score is 1, and the worst score is 0. </p>",
482+
"EntityTypesEvaluationMetrics$Precision": "<p>A measure of the usefulness of the recognizer results for a specific entity type in the test data. High precision means that the recognizer returned substantially more relevant results than irrelevant ones. </p>",
483+
"EntityTypesEvaluationMetrics$Recall": "<p>A measure of how complete the recognizer results are for a specific entity type in the test data. High recall means that the recognizer returned most of the relevant results.</p>",
484+
"EntityTypesEvaluationMetrics$F1Score": "<p>A measure of how accurate the recognizer results are for for a specific entity type in the test data. It is derived from the <code>Precision</code> and <code>Recall</code> values. The <code>F1Score</code> is the harmonic average of the two scores. The highest score is 1, and the worst score is 0. </p>"
482485
}
483486
},
484487
"EntitiesDetectionJobFilter": {
@@ -537,9 +540,9 @@
537540
}
538541
},
539542
"EntityRecognizerEvaluationMetrics": {
540-
"base": "<p> Detailed information about the accuracy of an entity recognizer. </p>",
543+
"base": "<p>Detailed information about the accuracy of an entity recognizer. </p>",
541544
"refs": {
542-
"EntityRecognizerMetadata$EvaluationMetrics": "<p> Detailed information about the accuracy of an entity recognizer.</p>"
545+
"EntityRecognizerMetadata$EvaluationMetrics": "<p>Detailed information about the accuracy of an entity recognizer.</p>"
543546
}
544547
},
545548
"EntityRecognizerFilter": {
@@ -598,10 +601,16 @@
598601
"EntityTypesListItem$Type": "<p>Entity type of an item on an entity type list.</p>"
599602
}
600603
},
604+
"EntityTypesEvaluationMetrics": {
605+
"base": "<p>Detailed information about the accuracy of an entity recognizer for a specific entity type. </p>",
606+
"refs": {
607+
"EntityRecognizerMetadataEntityTypesListItem$EvaluationMetrics": "<p>Detailed information about the accuracy of the entity recognizer for a specific item on the list of entity types. </p>"
608+
}
609+
},
601610
"EntityTypesList": {
602611
"base": null,
603612
"refs": {
604-
"EntityRecognizerInputDataConfig$EntityTypes": "<p>The entity types in the input data for an entity recognizer.</p>"
613+
"EntityRecognizerInputDataConfig$EntityTypes": "<p>The entity types in the input data for an entity recognizer. A maximum of 12 entity types can be used at one time to train an entity recognizer.</p>"
605614
}
606615
},
607616
"EntityTypesListItem": {
@@ -683,6 +692,7 @@
683692
"Entity$EndOffset": "<p>A character offset in the input text that shows where the entity ends. The offset returns the position of each UTF-8 code point in the string. A <i>code point</i> is the abstract character from a particular graphical representation. For example, a multi-byte UTF-8 character maps to a single code point. </p>",
684693
"EntityRecognizerMetadata$NumberOfTrainedDocuments": "<p> The number of documents in the input data that were used to train the entity recognizer. Typically this is 80 to 90 percent of the input documents.</p>",
685694
"EntityRecognizerMetadata$NumberOfTestDocuments": "<p> The number of documents in the input data that were used to test the entity recognizer. Typically this is 10 to 20 percent of the input documents.</p>",
695+
"EntityRecognizerMetadataEntityTypesListItem$NumberOfTrainMentions": "<p>indicates the number of times the given entity name was seen in the training data. </p>",
686696
"KeyPhrase$BeginOffset": "<p>A character offset in the input text that shows where the key phrase begins (the first character is at position 0). The offset returns the position of each UTF-8 code point in the string. A <i>code point</i> is the abstract character from a particular graphical representation. For example, a multi-byte UTF-8 character maps to a single code point.</p>",
687697
"KeyPhrase$EndOffset": "<p>A character offset in the input text where the key phrase ends. The offset returns the position of each UTF-8 code point in the string. A <code>code point</code> is the abstract character from a particular graphical representation. For example, a multi-byte UTF-8 character maps to a single code point.</p>",
688698
"SyntaxToken$TokenId": "<p>A unique identifier for a token.</p>",
@@ -697,7 +707,7 @@
697707
}
698708
},
699709
"InvalidFilterException": {
700-
"base": "<p>The filter specified for the <code>ListDocumentClassificationJobs</code> operation is invalid. Specify a different filter.</p>",
710+
"base": "<p>The filter specified for the operation is invalid. Specify a different filter.</p>",
701711
"refs": {
702712
}
703713
},
@@ -848,22 +858,22 @@
848858
"LanguageCode": {
849859
"base": null,
850860
"refs": {
851-
"BatchDetectEntitiesRequest$LanguageCode": "<p>The language of the input documents. You can specify English (\"en\") or Spanish (\"es\"). All documents must be in the same language.</p>",
852-
"BatchDetectKeyPhrasesRequest$LanguageCode": "<p>The language of the input documents. You can specify English (\"en\") or Spanish (\"es\"). All documents must be in the same language.</p>",
853-
"BatchDetectSentimentRequest$LanguageCode": "<p>The language of the input documents. You can specify English (\"en\") or Spanish (\"es\"). All documents must be in the same language.</p>",
854-
"CreateDocumentClassifierRequest$LanguageCode": "<p>The language of the input documents. You can specify English (\"en\") or Spanish (\"es\"). All documents must be in the same language.</p>",
861+
"BatchDetectEntitiesRequest$LanguageCode": "<p>The language of the input documents. You can specify any of the primary languages supported by Amazon Comprehend: German (\"de\"), English (\"en\"), Spanish (\"es\"), French (\"fr\"), Italian (\"it\"), or Portuguese (\"pt\"). All documents must be in the same language.</p>",
862+
"BatchDetectKeyPhrasesRequest$LanguageCode": "<p>The language of the input documents. You can specify any of the primary languages supported by Amazon Comprehend: German (\"de\"), English (\"en\"), Spanish (\"es\"), French (\"fr\"), Italian (\"it\"), or Portuguese (\"pt\"). All documents must be in the same language.</p>",
863+
"BatchDetectSentimentRequest$LanguageCode": "<p>The language of the input documents. You can specify any of the primary languages supported by Amazon Comprehend: German (\"de\"), English (\"en\"), Spanish (\"es\"), French (\"fr\"), Italian (\"it\"), or Portuguese (\"pt\"). All documents must be in the same language.</p>",
864+
"CreateDocumentClassifierRequest$LanguageCode": "<p>The language of the input documents. You can specify any of the primary languages supported by Amazon Comprehend: German (\"de\"), English (\"en\"), Spanish (\"es\"), French (\"fr\"), Italian (\"it\"), or Portuguese (\"pt\"). All documents must be in the same language.</p>",
855865
"CreateEntityRecognizerRequest$LanguageCode": "<p> The language of the input documents. All documents must be in the same language. Only English (\"en\") is currently supported. </p>",
856-
"DetectEntitiesRequest$LanguageCode": "<p>The language of the input documents. You can specify English (\"en\") or Spanish (\"es\"). All documents must be in the same language.</p>",
857-
"DetectKeyPhrasesRequest$LanguageCode": "<p>The language of the input documents. You can specify English (\"en\") or Spanish (\"es\"). All documents must be in the same language.</p>",
858-
"DetectSentimentRequest$LanguageCode": "<p>The language of the input documents. You can specify English (\"en\") or Spanish (\"es\"). All documents must be in the same language.</p>",
866+
"DetectEntitiesRequest$LanguageCode": "<p>The language of the input documents. You can specify any of the primary languages supported by Amazon Comprehend: German (\"de\"), English (\"en\"), Spanish (\"es\"), French (\"fr\"), Italian (\"it\"), or Portuguese (\"pt\"). All documents must be in the same language.</p>",
867+
"DetectKeyPhrasesRequest$LanguageCode": "<p>The language of the input documents. You can specify any of the primary languages supported by Amazon Comprehend: German (\"de\"), English (\"en\"), Spanish (\"es\"), French (\"fr\"), Italian (\"it\"), or Portuguese (\"pt\"). All documents must be in the same language.</p>",
868+
"DetectSentimentRequest$LanguageCode": "<p>The language of the input documents. You can specify any of the primary languages supported by Amazon Comprehend: German (\"de\"), English (\"en\"), Spanish (\"es\"), French (\"fr\"), Italian (\"it\"), or Portuguese (\"pt\"). All documents must be in the same language.</p>",
859869
"DocumentClassifierProperties$LanguageCode": "<p>The language code for the language of the documents that the classifier was trained on.</p>",
860870
"EntitiesDetectionJobProperties$LanguageCode": "<p>The language code of the input documents.</p>",
861871
"EntityRecognizerProperties$LanguageCode": "<p> The language of the input documents. All documents must be in the same language. Only English (\"en\") is currently supported.</p>",
862872
"KeyPhrasesDetectionJobProperties$LanguageCode": "<p>The language code of the input documents.</p>",
863873
"SentimentDetectionJobProperties$LanguageCode": "<p>The language code of the input documents.</p>",
864874
"StartEntitiesDetectionJobRequest$LanguageCode": "<p>The language of the input documents. All documents must be in the same language. You can specify any of the languages supported by Amazon Comprehend: English (\"en\"), Spanish (\"es\"), French (\"fr\"), German (\"de\"), Italian (\"it\"), or Portuguese (\"pt\"). If custom entities recognition is used, this parameter is ignored and the language used for training the model is used instead.</p>",
865-
"StartKeyPhrasesDetectionJobRequest$LanguageCode": "<p>The language of the input documents. You can specify English (\"en\") or Spanish (\"es\"). All documents must be in the same language.</p>",
866-
"StartSentimentDetectionJobRequest$LanguageCode": "<p>The language of the input documents. You can specify English (\"en\") or Spanish (\"es\"). All documents must be in the same language.</p>"
875+
"StartKeyPhrasesDetectionJobRequest$LanguageCode": "<p>The language of the input documents. You can specify any of the primary languages supported by Amazon Comprehend: German (\"de\"), English (\"en\"), Spanish (\"es\"), French (\"fr\"), Italian (\"it\"), or Portuguese (\"pt\"). All documents must be in the same language.</p>",
876+
"StartSentimentDetectionJobRequest$LanguageCode": "<p>The language of the input documents. You can specify any of the primary languages supported by Amazon Comprehend: German (\"de\"), English (\"en\"), Spanish (\"es\"), French (\"fr\"), Italian (\"it\"), or Portuguese (\"pt\"). All documents must be in the same language.</p>"
867877
}
868878
},
869879
"ListDocumentClassificationJobsRequest": {
@@ -1342,8 +1352,8 @@
13421352
"SyntaxLanguageCode": {
13431353
"base": null,
13441354
"refs": {
1345-
"BatchDetectSyntaxRequest$LanguageCode": "<p>The language of the input documents. You can specify English (\"en\") or Spanish (\"es\"). All documents must be in the same language.</p>",
1346-
"DetectSyntaxRequest$LanguageCode": "<p>The language code of the input documents. You can specify English (\"en\") or Spanish (\"es\").</p>"
1355+
"BatchDetectSyntaxRequest$LanguageCode": "<p>The language of the input documents. You can specify any of the primary languages supported by Amazon Comprehend: German (\"de\"), English (\"en\"), Spanish (\"es\"), French (\"fr\"), Italian (\"it\"), or Portuguese (\"pt\"). All documents must be in the same language.</p>",
1356+
"DetectSyntaxRequest$LanguageCode": "<p>The language code of the input documents. You can specify any of the primary languages supported by Amazon Comprehend: German (\"de\"), English (\"en\"), Spanish (\"es\"), French (\"fr\"), Italian (\"it\"), or Portuguese (\"pt\").</p>"
13471357
}
13481358
},
13491359
"SyntaxToken": {
@@ -1477,7 +1487,7 @@
14771487
}
14781488
},
14791489
"UnsupportedLanguageException": {
1480-
"base": "<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 is accepted. For most other APIs, Amazon Comprehend accepts only English or Spanish text. </p>",
1490+
"base": "<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 is 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>",
14811491
"refs": {
14821492
}
14831493
},

aws-sdk-core/apis/ecs/2014-11-13/api-2.json

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,8 @@
823823
"pendingTasksCount":{"shape":"Integer"},
824824
"activeServicesCount":{"shape":"Integer"},
825825
"statistics":{"shape":"Statistics"},
826-
"tags":{"shape":"Tags"}
826+
"tags":{"shape":"Tags"},
827+
"settings":{"shape":"ClusterSettings"}
827828
}
828829
},
829830
"ClusterContainsContainerInstancesException":{
@@ -861,6 +862,21 @@
861862
},
862863
"exception":true
863864
},
865+
"ClusterSetting":{
866+
"type":"structure",
867+
"members":{
868+
"name":{"shape":"ClusterSettingName"},
869+
"value":{"shape":"String"}
870+
}
871+
},
872+
"ClusterSettingName":{
873+
"type":"string",
874+
"enum":["containerInsights"]
875+
},
876+
"ClusterSettings":{
877+
"type":"list",
878+
"member":{"shape":"ClusterSetting"}
879+
},
864880
"Clusters":{
865881
"type":"list",
866882
"member":{"shape":"Cluster"}
@@ -1052,7 +1068,8 @@
10521068
"type":"structure",
10531069
"members":{
10541070
"clusterName":{"shape":"String"},
1055-
"tags":{"shape":"Tags"}
1071+
"tags":{"shape":"Tags"},
1072+
"settings":{"shape":"ClusterSettings"}
10561073
}
10571074
},
10581075
"CreateClusterResponse":{
@@ -2218,7 +2235,8 @@
22182235
"serviceLongArnFormat",
22192236
"taskLongArnFormat",
22202237
"containerInstanceLongArnFormat",
2221-
"awsvpcTrunking"
2238+
"awsvpcTrunking",
2239+
"containerInsights"
22222240
]
22232241
},
22242242
"Settings":{

0 commit comments

Comments
 (0)