Source code for models_v2.tier_type_enum

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

[docs]class TierTypeEnum(object): """Implementation of the 'TierType' enum. Specifies the AWS tier types. Attributes: KAMAZONS3STANDARD: TODO: type description here. KAMAZONS3STANDARDIA: TODO: type description here. KAMAZONS3ONEZONEIA: TODO: type description here. KAMAZONS3INTELLIGENTTIERING: TODO: type description here. KAMAZONS3GLACIER: TODO: type description here. KAMAZONS3GLACIERDEEPARCHIVE: TODO: type description here. """ KAMAZONS3STANDARD = 'kAmazonS3Standard' KAMAZONS3STANDARDIA = 'kAmazonS3StandardIA' KAMAZONS3ONEZONEIA = 'kAmazonS3OneZoneIA' KAMAZONS3INTELLIGENTTIERING = 'kAmazonS3IntelligentTiering' KAMAZONS3GLACIER = 'kAmazonS3Glacier' KAMAZONS3GLACIERDEEPARCHIVE = 'kAmazonS3GlacierDeepArchive'