Source code for models_v2.enum_1_enum

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

[docs]class Enum1Enum(object): """Implementation of the 'Enum1' enum. Specifies S3 ACL permission type. Attributes: READ: TODO: type description here. WRITE: TODO: type description here. READACP: TODO: type description here. WRITEACP: TODO: type description here. FULLCONTROL: TODO: type description here. """ READ = 'Read' WRITE = 'Write' READACP = 'ReadACP' WRITEACP = 'WriteACP' FULLCONTROL = 'FullControl'