Class: Aws::Comprehend::Types::DetectPiiEntitiesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::DetectPiiEntitiesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehend/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#language_code ⇒ String
The language of the input documents.
-
#text ⇒ String
A UTF-8 text string.
Instance Attribute Details
#language_code ⇒ String
The language of the input documents. Currently, English is the only valid language.
2522 2523 2524 2525 2526 2527 |
# File 'lib/aws-sdk-comprehend/types.rb', line 2522 class DetectPiiEntitiesRequest < Struct.new( :text, :language_code) SENSITIVE = [] include Aws::Structure end |
#text ⇒ String
A UTF-8 text string. The maximum string size is 100 KB.
2522 2523 2524 2525 2526 2527 |
# File 'lib/aws-sdk-comprehend/types.rb', line 2522 class DetectPiiEntitiesRequest < Struct.new( :text, :language_code) SENSITIVE = [] include Aws::Structure end |