Source code for models_v2.target_type_3_enum

# -*- coding: utf-8 -*-

[docs]class TargetType3Enum(object): """Implementation of the 'TargetType3' enum. Specifies the type of target to which replication need to be performed. Attributes: REMOTECLUSTER: TODO: type description here. AWS: TODO: type description here. AZURE: TODO: type description here. """ REMOTECLUSTER = 'RemoteCluster' AWS = 'AWS' AZURE = 'Azure'