toResolverQueryLogConfigAssociationStatus method
Implementation
ResolverQueryLogConfigAssociationStatus
toResolverQueryLogConfigAssociationStatus() {
switch (this) {
case 'CREATING':
return ResolverQueryLogConfigAssociationStatus.creating;
case 'ACTIVE':
return ResolverQueryLogConfigAssociationStatus.active;
case 'ACTION_NEEDED':
return ResolverQueryLogConfigAssociationStatus.actionNeeded;
case 'DELETING':
return ResolverQueryLogConfigAssociationStatus.deleting;
case 'FAILED':
return ResolverQueryLogConfigAssociationStatus.failed;
}
throw Exception(
'$this is not known in enum ResolverQueryLogConfigAssociationStatus');
}