Describe Flywheel
comprehend_describe_flywheel | R Documentation |
Provides configuration information about the flywheel¶
Description¶
Provides configuration information about the flywheel. For more information about flywheels, see Flywheel overview in the Amazon Comprehend Developer Guide.
Usage¶
Arguments¶
FlywheelArn
[required] The Amazon Resource Number (ARN) of the flywheel.
Value¶
A list with the following syntax:
list(
FlywheelProperties = list(
FlywheelArn = "string",
ActiveModelArn = "string",
DataAccessRoleArn = "string",
TaskConfig = list(
LanguageCode = "en"|"es"|"fr"|"de"|"it"|"pt"|"ar"|"hi"|"ja"|"ko"|"zh"|"zh-TW",
DocumentClassificationConfig = list(
Mode = "MULTI_CLASS"|"MULTI_LABEL",
Labels = list(
"string"
)
),
EntityRecognitionConfig = list(
EntityTypes = list(
list(
Type = "string"
)
)
)
),
DataLakeS3Uri = "string",
DataSecurityConfig = list(
ModelKmsKeyId = "string",
VolumeKmsKeyId = "string",
DataLakeKmsKeyId = "string",
VpcConfig = list(
SecurityGroupIds = list(
"string"
),
Subnets = list(
"string"
)
)
),
Status = "CREATING"|"ACTIVE"|"UPDATING"|"DELETING"|"FAILED",
ModelType = "DOCUMENT_CLASSIFIER"|"ENTITY_RECOGNIZER",
Message = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
LatestFlywheelIteration = "string"
)
)