Source code for models.exclude_aws_types_enum

# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.

[docs]class ExcludeAwsTypesEnum(object): """Implementation of the 'ExcludeAwsTypes' enum. Specifies the Object types to be filtered out for AWS that match the passed in types such as 'kEC2Instance', 'kRDSInstance' & 'kAuroraCluster'. For example, set this parameter to 'kEC2Instance' to exclude ec2 instance from being returned. Attributes: KEC2INSTANCE: TODO: type description here. KRDSINSTANCE: TODO: type description here. KAURORACLUSTER: TODO: type description here. """ KEC2INSTANCE = 'kEC2Instance' KRDSINSTANCE = 'kRDSInstance' KAURORACLUSTER = 'kAuroraCluster'