ImportTerminologyRequest
public struct ImportTerminologyRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The description of the custom terminology being imported.
Declaration
Swift
public let description: String?
-
The encryption key for the custom terminology being imported.
Declaration
Swift
public let encryptionKey: EncryptionKey?
-
The merge strategy of the custom terminology being imported. Currently, only the OVERWRITE merge strategy is supported. In this case, the imported terminology will overwrite an existing terminology of the same name.
Declaration
Swift
public let mergeStrategy: MergeStrategy
-
The name of the custom terminology being imported.
Declaration
Swift
public let name: String
-
The terminology data for the custom terminology being imported.
Declaration
Swift
public let terminologyData: TerminologyData
-
Undocumented
Declaration
Swift
public init(description: String? = nil, encryptionKey: EncryptionKey? = nil, mergeStrategy: MergeStrategy, name: String, terminologyData: TerminologyData)
-
Declaration
Swift
public func validate(name: String) throws