# -*- coding: utf-8 -*-
[docs]class AwsSnapshotParams(object):
"""Implementation of the 'AwsSnapshotParams' model.
Specifies parameters of AWS type snapshots.
Attributes:
protection_type (ProtectionType1Enum): Specifies the protection type
of AWS snapshots.
"""
# Create a mapping from Model property names to API property names
_names = {
"protection_type":'protectionType'
}
def __init__(self,
protection_type=None):
"""Constructor for the AwsSnapshotParams class"""
# Initialize members of the class
self.protection_type = protection_type
[docs] @classmethod
def from_dictionary(cls,
dictionary):
"""Creates an instance of this model from a dictionary
Args:
dictionary (dictionary): A dictionary representation of the object as
obtained from the deserialization of the server's response. The keys
MUST match property names in the API description.
Returns:
object: An instance of this structure class.
"""
if dictionary is None:
return None
# Extract variables from the dictionary
protection_type = dictionary.get('protectionType')
# Return an object of this model
return cls(protection_type)