Class: Aws::Comprehend::Types::EntityRecognizerAnnotations
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::EntityRecognizerAnnotations
- Defined in:
- gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb
Overview
Note:
When making an API call, you may pass EntityRecognizerAnnotations data as a hash:
{
s3_uri: "S3Uri", # required
test_s3_uri: "S3Uri",
}
Describes the annotations associated with a entity recognizer.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_uri ⇒ String
Specifies the Amazon S3 location where the annotations for an entity recognizer are located.
-
#test_s3_uri ⇒ String
This specifies the Amazon S3 location where the test annotations for an entity recognizer are located.
Instance Attribute Details
#s3_uri ⇒ String
Specifies the Amazon S3 location where the annotations for an entity recognizer are located. The URI must be in the same region as the API endpoint that you are calling.
3167 3168 3169 3170 3171 3172 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 3167 class EntityRecognizerAnnotations < Struct.new( :s3_uri, :test_s3_uri) SENSITIVE = [] include Aws::Structure end |
#test_s3_uri ⇒ String
This specifies the Amazon S3 location where the test annotations for an entity recognizer are located. The URI must be in the same AWS Region as the API endpoint that you are calling.
3167 3168 3169 3170 3171 3172 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 3167 class EntityRecognizerAnnotations < Struct.new( :s3_uri, :test_s3_uri) SENSITIVE = [] include Aws::Structure end |